diff --git a/clients/client/dart/README.md b/clients/client/dart/README.md index e25e0131fd2..556b7a08e90 100644 --- a/clients/client/dart/README.md +++ b/clients/client/dart/README.md @@ -5,7 +5,7 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers. This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: v1.1.44 +- API version: v1.1.45 - Build package: org.openapitools.codegen.languages.DartDioClientCodegen ## Requirements @@ -19,7 +19,7 @@ This Dart package is automatically generated by the [OpenAPI Generator](https:// To use the package from [pub.dev](https://pub.dev), please include the following in pubspec.yaml ```yaml dependencies: - ory_client: 1.1.44 + ory_client: 1.1.45 ``` ### Github diff --git a/clients/client/dart/doc/NormalizedProjectRevision.md b/clients/client/dart/doc/NormalizedProjectRevision.md index edde273aac7..d0d64f66913 100644 --- a/clients/client/dart/doc/NormalizedProjectRevision.md +++ b/clients/client/dart/doc/NormalizedProjectRevision.md @@ -58,6 +58,7 @@ Name | Type | Description | Notes **kratosCourierSmtpFromAddress** | **String** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] **kratosCourierSmtpFromName** | **String** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] **kratosCourierSmtpHeaders** | [**JsonObject**](.md) | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] +**kratosCourierSmtpLocalName** | **String** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] **kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] **kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] **kratosCourierTemplatesRecoveryCodeInvalidEmailSubject** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] diff --git a/clients/client/dart/lib/src/model/normalized_project_revision.dart b/clients/client/dart/lib/src/model/normalized_project_revision.dart index b1b5ca8247a..057d91f7a4a 100644 --- a/clients/client/dart/lib/src/model/normalized_project_revision.dart +++ b/clients/client/dart/lib/src/model/normalized_project_revision.dart @@ -67,6 +67,7 @@ part 'normalized_project_revision.g.dart'; /// * [kratosCourierSmtpFromAddress] - Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. /// * [kratosCourierSmtpFromName] - Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. /// * [kratosCourierSmtpHeaders] - NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- +/// * [kratosCourierSmtpLocalName] - Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. /// * [kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml] - Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. /// * [kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext] - Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. /// * [kratosCourierTemplatesRecoveryCodeInvalidEmailSubject] - Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. @@ -366,6 +367,10 @@ abstract class NormalizedProjectRevision implements Built _$this._kratosCourierSmtpHeaders = kratosCourierSmtpHeaders; + String? _kratosCourierSmtpLocalName; + String? get kratosCourierSmtpLocalName => _$this._kratosCourierSmtpLocalName; + set kratosCourierSmtpLocalName(String? kratosCourierSmtpLocalName) => + _$this._kratosCourierSmtpLocalName = kratosCourierSmtpLocalName; + String? _kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml; String? get kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml => _$this._kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml; @@ -2806,6 +2817,7 @@ class NormalizedProjectRevisionBuilder _kratosCourierSmtpFromAddress = $v.kratosCourierSmtpFromAddress; _kratosCourierSmtpFromName = $v.kratosCourierSmtpFromName; _kratosCourierSmtpHeaders = $v.kratosCourierSmtpHeaders; + _kratosCourierSmtpLocalName = $v.kratosCourierSmtpLocalName; _kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml = $v.kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml; _kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext = @@ -3089,6 +3101,7 @@ class NormalizedProjectRevisionBuilder kratosCourierSmtpFromAddress: kratosCourierSmtpFromAddress, kratosCourierSmtpFromName: kratosCourierSmtpFromName, kratosCourierSmtpHeaders: kratosCourierSmtpHeaders, + kratosCourierSmtpLocalName: kratosCourierSmtpLocalName, kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml: kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml, kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext: diff --git a/clients/client/dart/pubspec.yaml b/clients/client/dart/pubspec.yaml index 88ce55f9bf5..9e55e9bf525 100644 --- a/clients/client/dart/pubspec.yaml +++ b/clients/client/dart/pubspec.yaml @@ -1,5 +1,5 @@ name: ory_client -version: 1.1.44 +version: 1.1.45 description: OpenAPI API client for Ory Network, Ory's web-scale API for identity and access control. homepage: https://www.ory.sh repository: https://github.com/ory/sdk/tree/master/clients/client/dart diff --git a/clients/client/dart/test/normalized_project_revision_test.dart b/clients/client/dart/test/normalized_project_revision_test.dart index 87c5f8b4217..528d1d27daf 100644 --- a/clients/client/dart/test/normalized_project_revision_test.dart +++ b/clients/client/dart/test/normalized_project_revision_test.dart @@ -297,6 +297,12 @@ void main() { // TODO }); + // Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + // String kratosCourierSmtpLocalName + test('to test the property `kratosCourierSmtpLocalName`', () async { + // TODO + }); + // Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. // String kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml test('to test the property `kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml`', () async { diff --git a/clients/client/dotnet/Ory.Client.sln b/clients/client/dotnet/Ory.Client.sln index 502e544dac8..2c2501bba22 100644 --- a/clients/client/dotnet/Ory.Client.sln +++ b/clients/client/dotnet/Ory.Client.sln @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 VisualStudioVersion = 12.0.0.0 MinimumVisualStudioVersion = 10.0.0.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{D872159A-6338-42B2-994F-CDFD3D8CEAAB}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{2532849B-8951-4A97-90B2-9A9D7D15B748}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client.Test", "src\Ory.Client.Test\Ory.Client.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}" EndProject @@ -12,10 +12,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D872159A-6338-42B2-994F-CDFD3D8CEAAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D872159A-6338-42B2-994F-CDFD3D8CEAAB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D872159A-6338-42B2-994F-CDFD3D8CEAAB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D872159A-6338-42B2-994F-CDFD3D8CEAAB}.Release|Any CPU.Build.0 = Release|Any CPU + {2532849B-8951-4A97-90B2-9A9D7D15B748}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2532849B-8951-4A97-90B2-9A9D7D15B748}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2532849B-8951-4A97-90B2-9A9D7D15B748}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2532849B-8951-4A97-90B2-9A9D7D15B748}.Release|Any CPU.Build.0 = Release|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/clients/client/dotnet/README.md b/clients/client/dotnet/README.md index a0cdfde5c24..52fa1490a9a 100644 --- a/clients/client/dotnet/README.md +++ b/clients/client/dotnet/README.md @@ -6,8 +6,8 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers. This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: v1.1.44 -- SDK version: 1.1.44 +- API version: v1.1.45 +- SDK version: 1.1.45 - Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen For more information, please visit [https://www.ory.sh](https://www.ory.sh) diff --git a/clients/client/dotnet/docs/ClientNormalizedProjectRevision.md b/clients/client/dotnet/docs/ClientNormalizedProjectRevision.md index 71bbbf01f36..9f10e9728e6 100644 --- a/clients/client/dotnet/docs/ClientNormalizedProjectRevision.md +++ b/clients/client/dotnet/docs/ClientNormalizedProjectRevision.md @@ -54,6 +54,7 @@ Name | Type | Description | Notes **KratosCourierSmtpFromAddress** | **string** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] **KratosCourierSmtpFromName** | **string** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] **KratosCourierSmtpHeaders** | **Object** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] +**KratosCourierSmtpLocalName** | **string** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] **KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml** | **string** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] **KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext** | **string** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] **KratosCourierTemplatesRecoveryCodeInvalidEmailSubject** | **string** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/CourierApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/CourierApiTests.cs index 9df2d9c0247..1af458cba16 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/CourierApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/CourierApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/FrontendApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/FrontendApiTests.cs index ce75f16c2c9..5c5572c2bf1 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/FrontendApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/FrontendApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/IdentityApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/IdentityApiTests.cs index 476ff776ec7..b70c83f125e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/IdentityApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/IdentityApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/JwkApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/JwkApiTests.cs index 182200dfbb8..86b03012730 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/JwkApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/JwkApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/MetadataApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/MetadataApiTests.cs index adaaa1bdabc..fde45955a40 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/MetadataApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/MetadataApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/OAuth2ApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/OAuth2ApiTests.cs index 731446a67e4..5da3d83d478 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/OAuth2ApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/OAuth2ApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/OidcApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/OidcApiTests.cs index f2ad8b36f93..947d380f8d6 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/OidcApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/OidcApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/PermissionApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/PermissionApiTests.cs index b8e4245517f..7335df37da8 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/PermissionApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/PermissionApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/ProjectApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/ProjectApiTests.cs index a2ceabfcaff..5ede04ec9fd 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/ProjectApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/ProjectApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/RelationshipApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/RelationshipApiTests.cs index d754c2a36c2..a746bf5648d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/RelationshipApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/RelationshipApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Api/WellknownApiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Api/WellknownApiTests.cs index 8d61912ab3f..9df22c60408 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Api/WellknownApiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Api/WellknownApiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestSessionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestSessionTests.cs index ee28d692c11..8f801d12bd4 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestSessionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestSessionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestTests.cs index 3470e2519af..2d053407621 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2ConsentRequestTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2LoginRequestTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2LoginRequestTests.cs index 3b9f13ce6d3..1ed7063aa91 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2LoginRequestTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAcceptOAuth2LoginRequestTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientActiveProjectInConsoleTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientActiveProjectInConsoleTests.cs index f4c69d73a1a..b691a02ce26 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientActiveProjectInConsoleTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientActiveProjectInConsoleTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAuthenticatorAssuranceLevelTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAuthenticatorAssuranceLevelTests.cs index 3382bca12b6..cc44f40428a 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAuthenticatorAssuranceLevelTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientAuthenticatorAssuranceLevelTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientBatchPatchIdentitiesResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientBatchPatchIdentitiesResponseTests.cs index 2135b1cf538..e0079fc58e6 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientBatchPatchIdentitiesResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientBatchPatchIdentitiesResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCORSTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCORSTests.cs index 2a2358176ae..b7329ccdfe6 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCORSTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCORSTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckOplSyntaxResultTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckOplSyntaxResultTests.cs index cb7c5c71951..d8ebef8d9e6 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckOplSyntaxResultTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckOplSyntaxResultTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckPermissionResultTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckPermissionResultTests.cs index 85d2521fcae..c6f9db170a9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckPermissionResultTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCheckPermissionResultTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCloudAccountTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCloudAccountTests.cs index c0bf1c90283..aadcbbc2088 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCloudAccountTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCloudAccountTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithSetOrySessionTokenTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithSetOrySessionTokenTests.cs index 34d7d0ab43a..453bb3b9702 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithSetOrySessionTokenTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithSetOrySessionTokenTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithTests.cs index 63d712e6eca..a042b3906d2 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiFlowTests.cs index db75fe53ba4..5f32ee9e9e9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiTests.cs index c9e51ef0647..b9bb8b9a931 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientContinueWithVerificationUiTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageStatusTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageStatusTests.cs index 2a310dc340a..951bcf0d08b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageStatusTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageStatusTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageTypeTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageTypeTests.cs index a69606429e9..b22f169e0cc 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageTypeTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCourierMessageTypeTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateCustomDomainBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateCustomDomainBodyTests.cs index 334077e086d..f7b2ffd7de0 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateCustomDomainBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateCustomDomainBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateIdentityBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateIdentityBodyTests.cs index 4e30a95fac1..7288ac5fc1f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateIdentityBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateIdentityBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateInviteResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateInviteResponseTests.cs index 383bf6cac0a..8e556ac271d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateInviteResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateInviteResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateJsonWebKeySetTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateJsonWebKeySetTests.cs index 434c748bf2d..1fca6746742 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateJsonWebKeySetTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateJsonWebKeySetTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBodyTests.cs index 8c897df2487..a300d89c7a7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBrandingTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBrandingTests.cs index 098510a514b..e1c153a10cf 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBrandingTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectBrandingTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectMemberInviteBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectMemberInviteBodyTests.cs index 294dead5e70..92be4326f91 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectMemberInviteBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectMemberInviteBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryCodeForIdentityBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryCodeForIdentityBodyTests.cs index 43c05aa3fec..34bfd4eedd0 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryCodeForIdentityBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryCodeForIdentityBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryLinkForIdentityBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryLinkForIdentityBodyTests.cs index b3e21547108..fc0130a6d75 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryLinkForIdentityBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRecoveryLinkForIdentityBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRelationshipBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRelationshipBodyTests.cs index 6fe2333b0e0..8cb00ae2c86 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRelationshipBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateRelationshipBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateSubscriptionBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateSubscriptionBodyTests.cs index ca3cdaa6771..13c8160cfc4 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateSubscriptionBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateSubscriptionBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateVerifiableCredentialRequestBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateVerifiableCredentialRequestBodyTests.cs index 0debdcefe38..9e2326396c9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateVerifiableCredentialRequestBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateVerifiableCredentialRequestBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCredentialSupportedDraft00Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCredentialSupportedDraft00Tests.cs index d8c83e44772..276b450ffe6 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCredentialSupportedDraft00Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCredentialSupportedDraft00Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCustomDomainTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCustomDomainTests.cs index d8b3b713f28..2732b0cd594 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCustomDomainTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCustomDomainTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientDeleteMySessionsCountTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientDeleteMySessionsCountTests.cs index 87b80cbe8a9..e4fdffabe04 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientDeleteMySessionsCountTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientDeleteMySessionsCountTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataBodyTests.cs index b6d73ec29c7..00b2c386c4c 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataTests.cs index d0aa6055f22..dc752df9ed3 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientEmailTemplateDataTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfiedTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfiedTests.cs index 520438fa658..6d585241cad 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfiedTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfiedTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorBrowserLocationChangeRequiredTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorBrowserLocationChangeRequiredTests.cs index 5fe269f7800..da4f4422e86 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorBrowserLocationChangeRequiredTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorBrowserLocationChangeRequiredTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorFlowReplacedTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorFlowReplacedTests.cs index 29c0765f842..8e817994fde 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorFlowReplacedTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorFlowReplacedTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorGenericTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorGenericTests.cs index b06403b0575..0e5d85bb8e5 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorGenericTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorGenericTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorOAuth2Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorOAuth2Tests.cs index eb3a7196486..ac63c52322d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorOAuth2Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientErrorOAuth2Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientExpandedPermissionTreeTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientExpandedPermissionTreeTests.cs index ec1710f74a4..5a3f8fc97c3 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientExpandedPermissionTreeTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientExpandedPermissionTreeTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientFlowErrorTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientFlowErrorTests.cs index e5f5f74eb3f..5c35f588030 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientFlowErrorTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientFlowErrorTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorContentTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorContentTests.cs index 7d19479fd2f..36a8e6d544b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorContentTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorContentTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorTests.cs index 3a455af005d..19d9f47296e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericErrorTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericUsageTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericUsageTests.cs index cc6a3fec039..5ad2fe0373d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericUsageTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGenericUsageTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetManagedIdentitySchemaLocationTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetManagedIdentitySchemaLocationTests.cs index 53659e794cf..4f9d40bc099 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetManagedIdentitySchemaLocationTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetManagedIdentitySchemaLocationTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetProjectMetricsResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetProjectMetricsResponseTests.cs index 9b622d739ef..8ec27f45fa4 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetProjectMetricsResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientGetProjectMetricsResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthNotReadyStatusTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthNotReadyStatusTests.cs index c552adcb6a3..4695fe87d6d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthNotReadyStatusTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthNotReadyStatusTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthStatusTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthStatusTests.cs index 5f6c4ac37d3..129df51bc34 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthStatusTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientHealthStatusTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcProviderTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcProviderTests.cs index 5e0b6848599..ad865b63d1f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcProviderTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcProviderTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcTests.cs index ec110f45147..31ae2d20f38 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsOidcTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsPasswordTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsPasswordTests.cs index 37eae3d70c9..c53612502f9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsPasswordTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsPasswordTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTests.cs index 0ed877fd5e3..95adcd343a2 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTypeTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTypeTests.cs index 150782d2692..f21c5877a31 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTypeTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityCredentialsTypeTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchResponseTests.cs index 12aa781b8eb..8f964d38d01 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchTests.cs index ac091c43157..6321e5bb2e3 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityPatchTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaContainerTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaContainerTests.cs index b6ab3adb2d0..10612053d7d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaContainerTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaContainerTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaPresetTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaPresetTests.cs index 29ba8e4f4f6..c71617c8eb7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaPresetTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentitySchemaPresetTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityStateTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityStateTests.cs index 9c43ac328b2..71d9102ded3 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityStateTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityStateTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityTests.cs index 008cf58b0ea..8a864f63f3e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigProviderTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigProviderTests.cs index b8c0cd77634..2b88608cf02 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigProviderTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigProviderTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigTests.cs index 0cc3e67bbab..9283e904b18 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcConfigTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcTests.cs index 270f22936cc..901ff2fd51f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsOidcTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordConfigTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordConfigTests.cs index 55d6862ad75..ab9dac76513 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordConfigTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordConfigTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordTests.cs index 8c70cc2b4db..7c723fc0727 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsPasswordTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsTests.cs index c7bf37631a3..0dd4f17b6a0 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIdentityWithCredentialsTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineObject3Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineObject3Tests.cs index b9cfe1d7558..06fe43ae533 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineObject3Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineObject3Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse2001Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse2001Tests.cs index 7e480bd9270..a3c14086b23 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse2001Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse2001Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse200Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse200Tests.cs index 5ddc1a4b3b0..1f6afa69075 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse200Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse200Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse503Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse503Tests.cs index a699392e255..e7ac90bff11 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse503Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInlineResponse503Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalGetProjectBrandingBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalGetProjectBrandingBodyTests.cs index fb67ffa3068..1f55efde8a1 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalGetProjectBrandingBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalGetProjectBrandingBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBodyTests.cs index 44fe9df0c77..d7dc1633673 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugBodyTests.cs index 145cb4fa8cd..64ec9b56c02 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugResponseTests.cs index 3f2a81fdfe7..7bc63202076 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalIsOwnerForProjectBySlugResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalProvisionMockSubscriptionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalProvisionMockSubscriptionTests.cs index 521c666b86f..dadd64c5b18 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalProvisionMockSubscriptionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientInternalProvisionMockSubscriptionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIntrospectedOAuth2TokenTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIntrospectedOAuth2TokenTests.cs index bf858468dfd..5ff9777e671 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIntrospectedOAuth2TokenTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIntrospectedOAuth2TokenTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIsOwnerForProjectBySlugTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIsOwnerForProjectBySlugTests.cs index 31ab4b88354..164f26274fb 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIsOwnerForProjectBySlugTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientIsOwnerForProjectBySlugTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonPatchTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonPatchTests.cs index 64c82b187f6..023ac8efe9e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonPatchTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonPatchTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeySetTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeySetTests.cs index fc046dc0558..5e94c9eb4e7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeySetTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeySetTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeyTests.cs index e3161522749..38d01b654a8 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientJsonWebKeyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientKetoNamespaceTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientKetoNamespaceTests.cs index 63655a48c0e..f55045b964a 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientKetoNamespaceTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientKetoNamespaceTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLoginFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLoginFlowTests.cs index e6228c26288..a70b8eb3635 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLoginFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLoginFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLogoutFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLogoutFlowTests.cs index 35e5e140094..7ec2d89c3e1 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLogoutFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientLogoutFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaTests.cs index b582132f6e3..940d4a857ee 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaValidationResultTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaValidationResultTests.cs index f9325074eb4..cb815aa304c 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaValidationResultTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientManagedIdentitySchemaValidationResultTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMemberInviteTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMemberInviteTests.cs index 1ed87228c96..5428e56f5dc 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMemberInviteTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMemberInviteTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageDispatchTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageDispatchTests.cs index e92c0d5afad..085c2080450 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageDispatchTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageDispatchTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageTests.cs index 7fb3f30f578..b3491a71f66 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMessageTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMetricsDatapointTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMetricsDatapointTests.cs index 2c82c97b3a1..946dc88e44e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMetricsDatapointTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientMetricsDatapointTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNamespaceTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNamespaceTests.cs index 5e1da566cc1..b04e0538482 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNamespaceTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNamespaceTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNeedsPrivilegedSessionErrorTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNeedsPrivilegedSessionErrorTests.cs index 91bc51653f3..3a62ab23ff1 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNeedsPrivilegedSessionErrorTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNeedsPrivilegedSessionErrorTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionHookTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionHookTests.cs index bc1eae93e8b..6938bdc4f34 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionHookTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionHookTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionIdentitySchemaTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionIdentitySchemaTests.cs index 3a83186bf2b..16b219a786b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionIdentitySchemaTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionIdentitySchemaTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionTests.cs index 6cb84fed292..a56268d5552 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -458,6 +458,14 @@ public void KratosCourierSmtpHeadersTest() // TODO unit test for the property 'KratosCourierSmtpHeaders' } /// + /// Test the property 'KratosCourierSmtpLocalName' + /// + [Fact] + public void KratosCourierSmtpLocalNameTest() + { + // TODO unit test for the property 'KratosCourierSmtpLocalName' + } + /// /// Test the property 'KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' /// [Fact] diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionThirdPartyProviderTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionThirdPartyProviderTests.cs index f2379245847..e36289a2e23 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionThirdPartyProviderTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectRevisionThirdPartyProviderTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectTests.cs index d6972412c53..f4fdb866a06 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientNormalizedProjectTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTests.cs index 521dbde2072..35d80168610 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTokenLifespansTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTokenLifespansTests.cs index 51b24409743..02316c89f69 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTokenLifespansTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ClientTokenLifespansTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestOpenIDConnectContextTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestOpenIDConnectContextTests.cs index 862ef3f5d48..7f66cd7c5be 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestOpenIDConnectContextTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestOpenIDConnectContextTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestTests.cs index 5650811c810..ee4e1274c1f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentRequestTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionExpiresAtTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionExpiresAtTests.cs index 4021ccb5aaa..d1f4743a585 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionExpiresAtTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionExpiresAtTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionTests.cs index fc0643ae8c5..d904fe3f5c5 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2ConsentSessionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LoginRequestTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LoginRequestTests.cs index 0fee46c4e0e..edc3f8d1ef4 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LoginRequestTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LoginRequestTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LogoutRequestTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LogoutRequestTests.cs index 28ec21be72e..1d6afa33b28 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LogoutRequestTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2LogoutRequestTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2RedirectToTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2RedirectToTests.cs index 9262977a8de..9b1e7200bea 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2RedirectToTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2RedirectToTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2TokenExchangeTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2TokenExchangeTests.cs index 94ca41e4b85..cce32d05547 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2TokenExchangeTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOAuth2TokenExchangeTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcConfigurationTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcConfigurationTests.cs index c5dfd106217..317899e7b1d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcConfigurationTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcConfigurationTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcUserInfoTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcUserInfoTests.cs index 8a6571c44cc..2491e7edccf 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcUserInfoTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientOidcUserInfoTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationHeadersTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationHeadersTests.cs index 81194ce7c8a..c100c59e3fb 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationHeadersTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationHeadersTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationTests.cs index b8f975a3019..837fe988d90 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPaginationTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientParseErrorTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientParseErrorTests.cs index 3e40c93b0b6..d68cc017601 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientParseErrorTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientParseErrorTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPatchIdentitiesBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPatchIdentitiesBodyTests.cs index 36da424f094..54db9e30e44 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPatchIdentitiesBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPatchIdentitiesBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPerformNativeLogoutBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPerformNativeLogoutBodyTests.cs index 63681ead7b4..6bd5cc128a7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPerformNativeLogoutBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPerformNativeLogoutBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanDetailsTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanDetailsTests.cs index 6812b0af14c..5b9963da9b9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanDetailsTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanDetailsTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanTests.cs index a117ff981ef..436ac397c6e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPlanTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionBodyTests.cs index 81fe32eb9a8..0832196a872 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionOrErrorBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionOrErrorBodyTests.cs index 14d10cfa4e1..dd4c04cb67d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionOrErrorBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientPostCheckPermissionOrErrorBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectApiKeyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectApiKeyTests.cs index 5fee6ae54d7..b5c21c94a76 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectApiKeyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectApiKeyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingColorsTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingColorsTests.cs index 016b74a8331..0134f248c64 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingColorsTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingColorsTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingTests.cs index 27d0ae8d564..b85c7f0da1d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingThemeTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingThemeTests.cs index f5c30d04f0b..bb4d7a8d69f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingThemeTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectBrandingThemeTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectHostTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectHostTests.cs index c9e1e69261a..13fbde5ede7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectHostTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectHostTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectMetadataTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectMetadataTests.cs index 0c5b12fdbc3..6e7987b5fcc 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectMetadataTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectMetadataTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceIdentityTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceIdentityTests.cs index 2618cc85bef..2a73d2f63d1 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceIdentityTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceIdentityTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceOAuth2Tests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceOAuth2Tests.cs index 959b53ec574..0987f6a6ed2 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceOAuth2Tests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServiceOAuth2Tests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicePermissionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicePermissionTests.cs index b64a77599bc..c50fd184343 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicePermissionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicePermissionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicesTests.cs index 8b076d503b6..5c47681acdd 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectServicesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectTests.cs index 3710b932664..d16ab5268d5 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientQuotaUsageTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientQuotaUsageTests.cs index 5dedb335e92..bb0f58ff006 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientQuotaUsageTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientQuotaUsageTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRFC6749ErrorJsonTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRFC6749ErrorJsonTests.cs index 779071a9bdf..a55c42d1474 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRFC6749ErrorJsonTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRFC6749ErrorJsonTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryCodeForIdentityTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryCodeForIdentityTests.cs index d78a1abf182..86cae37d503 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryCodeForIdentityTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryCodeForIdentityTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowStateTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowStateTests.cs index 134cb89c747..438b8d26f56 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowStateTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowStateTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowTests.cs index 3881072548a..7837c9b7279 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryIdentityAddressTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryIdentityAddressTests.cs index 14c44b09238..7e79343908c 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryIdentityAddressTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryIdentityAddressTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryLinkForIdentityTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryLinkForIdentityTests.cs index 9b83e4b8321..698900ee357 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryLinkForIdentityTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRecoveryLinkForIdentityTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRegistrationFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRegistrationFlowTests.cs index c954a9cb124..b06e28322bc 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRegistrationFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRegistrationFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRejectOAuth2RequestTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRejectOAuth2RequestTests.cs index 60ed86fb616..a8f463b8899 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRejectOAuth2RequestTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRejectOAuth2RequestTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationQueryTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationQueryTests.cs index f9752e144cd..4120e8744f9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationQueryTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationQueryTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipNamespacesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipNamespacesTests.cs index 63dce61e854..73cc2e0960b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipNamespacesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipNamespacesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipPatchTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipPatchTests.cs index 728625143ef..3d5582b1859 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipPatchTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipPatchTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipTests.cs index 86c7732a2f8..2b0cf24d7fb 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipsTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipsTests.cs index 6c84da83dbc..df5a3b641be 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipsTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientRelationshipsTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSchemaPatchTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSchemaPatchTests.cs index c90429450bc..fad27e8d888 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSchemaPatchTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSchemaPatchTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSelfServiceFlowExpiredErrorTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSelfServiceFlowExpiredErrorTests.cs index 716c2dcd6e5..796c8dc5e07 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSelfServiceFlowExpiredErrorTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSelfServiceFlowExpiredErrorTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionAuthenticationMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionAuthenticationMethodTests.cs index aa03bd99c20..15f7cf4ecd8 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionAuthenticationMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionAuthenticationMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionDeviceTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionDeviceTests.cs index 3af4b8c9a77..5443b6f4644 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionDeviceTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionDeviceTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionTests.cs index 4df8aea6d8b..a9a1411addb 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSessionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetActiveProjectInConsoleBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetActiveProjectInConsoleBodyTests.cs index 730b813519c..5084e43ed11 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetActiveProjectInConsoleBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetActiveProjectInConsoleBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetCustomDomainBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetCustomDomainBodyTests.cs index 2714815c73c..65f6c6fb378 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetCustomDomainBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetCustomDomainBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectBrandingThemeBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectBrandingThemeBodyTests.cs index 6cf15c3f508..ff53dbd60e2 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectBrandingThemeBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectBrandingThemeBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectTests.cs index d5e0511c2ea..7700e856de0 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSetProjectTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowStateTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowStateTests.cs index dfad7a70d7e..c1e2d2a2958 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowStateTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowStateTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowTests.cs index 8429848e382..92fa0cd6b3c 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSettingsFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSourcePositionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSourcePositionTests.cs index e8a10241d17..bdc8c9ae330 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSourcePositionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSourcePositionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientStripeCustomerTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientStripeCustomerTests.cs index af2a67b08f0..0dbc72094ef 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientStripeCustomerTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientStripeCustomerTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubjectSetTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubjectSetTests.cs index 3a77046fc11..c1b6676db34 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubjectSetTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubjectSetTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubscriptionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubscriptionTests.cs index ee7402070e0..8c8eae47911 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubscriptionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSubscriptionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulCodeExchangeResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulCodeExchangeResponseTests.cs index cb88854278d..cf22eb7deaf 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulCodeExchangeResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulCodeExchangeResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeLoginTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeLoginTests.cs index a12b5f08508..cc72038fd41 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeLoginTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeLoginTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeRegistrationTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeRegistrationTests.cs index 9c010ae8673..74e0a8b4c2e 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeRegistrationTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulNativeRegistrationTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulProjectUpdateTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulProjectUpdateTests.cs index 30076bea868..5bd8ed06d0f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulProjectUpdateTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientSuccessfulProjectUpdateTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationHeadersTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationHeadersTests.cs index 627d5275bb6..b3629791676 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationHeadersTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationHeadersTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationRequestParametersTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationRequestParametersTests.cs index 77e9baa5d38..5329ab90c76 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationRequestParametersTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationRequestParametersTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationResponseHeadersTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationResponseHeadersTests.cs index 02ce403fe40..eabbd40b766 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationResponseHeadersTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationResponseHeadersTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationTests.cs index 29056347060..67ac880954d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTokenPaginationTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustOAuth2JwtGrantIssuerTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustOAuth2JwtGrantIssuerTests.cs index 4b65e8f76e4..b6e764e32e0 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustOAuth2JwtGrantIssuerTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustOAuth2JwtGrantIssuerTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantIssuerTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantIssuerTests.cs index 6010c7b70f6..b9f62567a61 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantIssuerTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantIssuerTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantJsonWebKeyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantJsonWebKeyTests.cs index 336989ae408..43d394572fd 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantJsonWebKeyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientTrustedOAuth2JwtGrantJsonWebKeyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiContainerTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiContainerTests.cs index 0867d5e9ab8..ac6bd84f185 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiContainerTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiContainerTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAnchorAttributesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAnchorAttributesTests.cs index fdff663233a..cdeb6aeeeec 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAnchorAttributesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAnchorAttributesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAttributesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAttributesTests.cs index 060f71d07bd..96466739f1b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAttributesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeAttributesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeImageAttributesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeImageAttributesTests.cs index 4ad1a27f98a..b5cd74fc3aa 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeImageAttributesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeImageAttributesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeInputAttributesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeInputAttributesTests.cs index c239fb2591c..ec8951f769a 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeInputAttributesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeInputAttributesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeMetaTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeMetaTests.cs index 7f763dd0a34..0ecd2ad637b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeMetaTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeMetaTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeScriptAttributesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeScriptAttributesTests.cs index 6dc12144ca8..9def01ffe85 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeScriptAttributesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeScriptAttributesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTests.cs index 100b03b5c87..25904275776 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTextAttributesTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTextAttributesTests.cs index dc07a9f350b..d40d078ddcf 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTextAttributesTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiNodeTextAttributesTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiTextTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiTextTests.cs index 4d7d764fde3..483e6202bbb 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiTextTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUiTextTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateIdentityBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateIdentityBodyTests.cs index 043e7b3d6e5..700f1e1a4b9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateIdentityBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateIdentityBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowBodyTests.cs index 0eec813a2c4..2b7320d92d9 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithLookupSecretMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithLookupSecretMethodTests.cs index d4ab2009ec3..74e9fff60b7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithLookupSecretMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithLookupSecretMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithOidcMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithOidcMethodTests.cs index 0ba28b17d2d..7e5dba78344 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithOidcMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithOidcMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithPasswordMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithPasswordMethodTests.cs index ee73fd0bb6f..e97169c247b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithPasswordMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithPasswordMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithTotpMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithTotpMethodTests.cs index 07178ff0d17..1f673037f86 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithTotpMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithTotpMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithWebAuthnMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithWebAuthnMethodTests.cs index d87f9a6fb97..b3cdfe923e3 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithWebAuthnMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateLoginFlowWithWebAuthnMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowBodyTests.cs index 062db8f05ad..840a6314923 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithCodeMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithCodeMethodTests.cs index 1e736d9c38a..42c3d3597a7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithCodeMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithCodeMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithLinkMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithLinkMethodTests.cs index ca04618e86d..6739100f344 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithLinkMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRecoveryFlowWithLinkMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowBodyTests.cs index 2e5f4b7619e..73ec0940346 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithOidcMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithOidcMethodTests.cs index 583a4b9b87c..6f7b81edd1f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithOidcMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithOidcMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithPasswordMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithPasswordMethodTests.cs index 3dc79a2450d..d4441244e63 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithPasswordMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithPasswordMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithWebAuthnMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithWebAuthnMethodTests.cs index 731ac9c66b0..89635501072 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithWebAuthnMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateRegistrationFlowWithWebAuthnMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowBodyTests.cs index 87221c50db6..d2c403c5e8f 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithLookupMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithLookupMethodTests.cs index 460e804ae35..99b22e39fe6 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithLookupMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithLookupMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithOidcMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithOidcMethodTests.cs index afe5b18168e..977ef070102 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithOidcMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithOidcMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithPasswordMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithPasswordMethodTests.cs index 63e98f8f96c..2197feb9175 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithPasswordMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithPasswordMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithProfileMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithProfileMethodTests.cs index 89081380898..97cba742634 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithProfileMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithProfileMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithTotpMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithTotpMethodTests.cs index 4ad1facb526..969ffc20233 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithTotpMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithTotpMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithWebAuthnMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithWebAuthnMethodTests.cs index b585d8383d1..5fcfb076126 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithWebAuthnMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSettingsFlowWithWebAuthnMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSubscriptionBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSubscriptionBodyTests.cs index 06b1f473019..6ff05f06525 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSubscriptionBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateSubscriptionBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowBodyTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowBodyTests.cs index 0f802e8c01d..2b863ef32e7 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowBodyTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowBodyTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithCodeMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithCodeMethodTests.cs index f140e8d251a..b646652afd8 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithCodeMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithCodeMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithLinkMethodTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithLinkMethodTests.cs index 34288c52d3c..2b7955e83c0 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithLinkMethodTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUpdateVerificationFlowWithLinkMethodTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUsageTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUsageTests.cs index 61a45f178b3..caeb9a2f034 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUsageTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientUsageTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialPrimingResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialPrimingResponseTests.cs index ae328e48f69..47e46ebccff 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialPrimingResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialPrimingResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialProofTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialProofTests.cs index 35e2cd50a1a..e4aadc89ebe 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialProofTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialProofTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialResponseTests.cs index 8bb6f97d3d3..46f2bc9b93b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableCredentialResponseTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableIdentityAddressTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableIdentityAddressTests.cs index 2d9c7b92b31..ea1f03026d3 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableIdentityAddressTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerifiableIdentityAddressTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowStateTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowStateTests.cs index 56ebc664350..2b559404e9d 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowStateTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowStateTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowTests.cs index 353ecead5c9..20ac4d77197 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVerificationFlowTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVersionTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVersionTests.cs index 467c33a2902..a1b958b35cf 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVersionTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientVersionTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientWarningTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientWarningTests.cs index e5674b58573..773d97881cc 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientWarningTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientWarningTests.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/CourierApi.cs b/clients/client/dotnet/src/Ory.Client/Api/CourierApi.cs index a6884c542ee..52bdfbbeee2 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/CourierApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/CourierApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/FrontendApi.cs b/clients/client/dotnet/src/Ory.Client/Api/FrontendApi.cs index 4e80f59c0ac..0e5f240dd36 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/FrontendApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/FrontendApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/IdentityApi.cs b/clients/client/dotnet/src/Ory.Client/Api/IdentityApi.cs index caec81ce085..a3d1a1ccd62 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/IdentityApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/IdentityApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/JwkApi.cs b/clients/client/dotnet/src/Ory.Client/Api/JwkApi.cs index 914b644df0e..55e3b91ab24 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/JwkApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/JwkApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/MetadataApi.cs b/clients/client/dotnet/src/Ory.Client/Api/MetadataApi.cs index 730ad540e29..62609b58b93 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/MetadataApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/MetadataApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/OAuth2Api.cs b/clients/client/dotnet/src/Ory.Client/Api/OAuth2Api.cs index 116bded38e1..feb3fbfe7d4 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/OAuth2Api.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/OAuth2Api.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/OidcApi.cs b/clients/client/dotnet/src/Ory.Client/Api/OidcApi.cs index fe871c65e31..f9849fe18b9 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/OidcApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/OidcApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/PermissionApi.cs b/clients/client/dotnet/src/Ory.Client/Api/PermissionApi.cs index 82bb00279c6..0040be04b34 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/PermissionApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/PermissionApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/ProjectApi.cs b/clients/client/dotnet/src/Ory.Client/Api/ProjectApi.cs index 2b13ad3b709..ae8068f91e7 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/ProjectApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/ProjectApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/RelationshipApi.cs b/clients/client/dotnet/src/Ory.Client/Api/RelationshipApi.cs index b999606c287..2e749686896 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/RelationshipApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/RelationshipApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Api/WellknownApi.cs b/clients/client/dotnet/src/Ory.Client/Api/WellknownApi.cs index 2ea8ced8f8b..d67e291163e 100644 --- a/clients/client/dotnet/src/Ory.Client/Api/WellknownApi.cs +++ b/clients/client/dotnet/src/Ory.Client/Api/WellknownApi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/ApiClient.cs b/clients/client/dotnet/src/Ory.Client/Client/ApiClient.cs index 5484d078e3c..ea58a625522 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/ApiClient.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/ApiClient.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/ApiException.cs b/clients/client/dotnet/src/Ory.Client/Client/ApiException.cs index 6167b6dcdec..0ecfbb7bd4d 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/ApiException.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/ApiException.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/ApiResponse.cs b/clients/client/dotnet/src/Ory.Client/Client/ApiResponse.cs index 17d554974ff..fe79bb18745 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/ApiResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/ApiResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/ClientUtils.cs b/clients/client/dotnet/src/Ory.Client/Client/ClientUtils.cs index cd241c04f38..847d962caa7 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/ClientUtils.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/ClientUtils.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/Configuration.cs b/clients/client/dotnet/src/Ory.Client/Client/Configuration.cs index f59c350d68c..3fe597ccc49 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/Configuration.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/Configuration.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -32,7 +32,7 @@ public class Configuration : IReadableConfiguration /// Version of the package. /// /// Version of the package. - public const string Version = "1.1.44"; + public const string Version = "1.1.45"; /// /// Identifier for ISO 8601 DateTime Format @@ -107,7 +107,7 @@ public class Configuration : IReadableConfiguration public Configuration() { Proxy = null; - UserAgent = "OpenAPI-Generator/1.1.44/csharp"; + UserAgent = "OpenAPI-Generator/1.1.45/csharp"; BasePath = "https://playground.projects.oryapis.com"; DefaultHeaders = new ConcurrentDictionary(); ApiKey = new ConcurrentDictionary(); @@ -461,8 +461,8 @@ public static string ToDebugReport() string report = "C# SDK (Ory.Client) Debug Report:\n"; report += " OS: " + System.Environment.OSVersion + "\n"; report += " .NET Framework Version: " + System.Environment.Version + "\n"; - report += " Version of the API: v1.1.44\n"; - report += " SDK Package Version: 1.1.44\n"; + report += " Version of the API: v1.1.45\n"; + report += " SDK Package Version: 1.1.45\n"; return report; } diff --git a/clients/client/dotnet/src/Ory.Client/Client/ExceptionFactory.cs b/clients/client/dotnet/src/Ory.Client/Client/ExceptionFactory.cs index 7badd27b128..cca093db0b4 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/ExceptionFactory.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/ExceptionFactory.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/GlobalConfiguration.cs b/clients/client/dotnet/src/Ory.Client/Client/GlobalConfiguration.cs index d55d637367f..d45ef354f07 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/GlobalConfiguration.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/GlobalConfiguration.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/HttpMethod.cs b/clients/client/dotnet/src/Ory.Client/Client/HttpMethod.cs index 617c3f50176..2b3fc2a484a 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/HttpMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/HttpMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/IApiAccessor.cs b/clients/client/dotnet/src/Ory.Client/Client/IApiAccessor.cs index 6bbba546f5e..d307ce7fd25 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/IApiAccessor.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/IApiAccessor.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/IAsynchronousClient.cs b/clients/client/dotnet/src/Ory.Client/Client/IAsynchronousClient.cs index 77e1b6ff2c2..4044b4a9b67 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/IAsynchronousClient.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/IAsynchronousClient.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/IReadableConfiguration.cs b/clients/client/dotnet/src/Ory.Client/Client/IReadableConfiguration.cs index c36e48ddeec..4eec3adba16 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/IReadableConfiguration.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/IReadableConfiguration.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/ISynchronousClient.cs b/clients/client/dotnet/src/Ory.Client/Client/ISynchronousClient.cs index 6e4cd5fe5c2..50baa24f946 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/ISynchronousClient.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/ISynchronousClient.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/Multimap.cs b/clients/client/dotnet/src/Ory.Client/Client/Multimap.cs index 3ab17bbdef2..eb47532e6b6 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/Multimap.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/Multimap.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/OpenAPIDateConverter.cs b/clients/client/dotnet/src/Ory.Client/Client/OpenAPIDateConverter.cs index a889c52a525..0d8e40eb96a 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/OpenAPIDateConverter.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/OpenAPIDateConverter.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/RequestOptions.cs b/clients/client/dotnet/src/Ory.Client/Client/RequestOptions.cs index c769e7c5229..2f4ec2a5653 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/RequestOptions.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/RequestOptions.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Client/RetryConfiguration.cs b/clients/client/dotnet/src/Ory.Client/Client/RetryConfiguration.cs index 3031bbf3dff..9a65ea733b1 100644 --- a/clients/client/dotnet/src/Ory.Client/Client/RetryConfiguration.cs +++ b/clients/client/dotnet/src/Ory.Client/Client/RetryConfiguration.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/AbstractOpenAPISchema.cs b/clients/client/dotnet/src/Ory.Client/Model/AbstractOpenAPISchema.cs index 9934974c97b..d763bb5639f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/AbstractOpenAPISchema.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/AbstractOpenAPISchema.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequest.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequest.cs index 72aadf7bd1c..d6547712986 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequest.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequest.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequestSession.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequestSession.cs index 9b9898b8d91..67c8ecc4467 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequestSession.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2ConsentRequestSession.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2LoginRequest.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2LoginRequest.cs index 7a660c75370..b93849d89c8 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2LoginRequest.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientAcceptOAuth2LoginRequest.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientActiveProjectInConsole.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientActiveProjectInConsole.cs index 887d9d7b522..10c5a3adf05 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientActiveProjectInConsole.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientActiveProjectInConsole.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientAuthenticatorAssuranceLevel.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientAuthenticatorAssuranceLevel.cs index 2f96d33cba7..a997ded8797 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientAuthenticatorAssuranceLevel.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientAuthenticatorAssuranceLevel.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientBatchPatchIdentitiesResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientBatchPatchIdentitiesResponse.cs index 9020b816598..337397a8540 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientBatchPatchIdentitiesResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientBatchPatchIdentitiesResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCORS.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCORS.cs index d594b05f545..1e1e30f54ea 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCORS.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCORS.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCheckOplSyntaxResult.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCheckOplSyntaxResult.cs index 3e79187fd01..01debb2f2db 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCheckOplSyntaxResult.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCheckOplSyntaxResult.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCheckPermissionResult.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCheckPermissionResult.cs index fcdfe71ee6b..14e7e26648f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCheckPermissionResult.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCheckPermissionResult.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCloudAccount.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCloudAccount.cs index 14c021e68ed..c6ae8cf66b1 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCloudAccount.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCloudAccount.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWith.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWith.cs index a288d8e2a51..aa2e3c48ad4 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWith.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWith.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithSetOrySessionToken.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithSetOrySessionToken.cs index a0affd0e1ae..4398831f281 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithSetOrySessionToken.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithSetOrySessionToken.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUi.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUi.cs index dba8bdafc14..01c3d3d49c2 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUi.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUi.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUiFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUiFlow.cs index cbb24ede5d9..3263ea49498 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUiFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientContinueWithVerificationUiFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageStatus.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageStatus.cs index 4488128d643..da8593d0f96 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageStatus.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageStatus.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageType.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageType.cs index 780a9c733fa..e30379acf86 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageType.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCourierMessageType.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateCustomDomainBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateCustomDomainBody.cs index 3cfac233373..870a32951c1 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateCustomDomainBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateCustomDomainBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateIdentityBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateIdentityBody.cs index f521e952849..bd735e646d7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateIdentityBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateIdentityBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateInviteResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateInviteResponse.cs index 0f3ae4179d9..3386f282667 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateInviteResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateInviteResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateJsonWebKeySet.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateJsonWebKeySet.cs index 072fc74f004..960c82acde3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateJsonWebKeySet.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateJsonWebKeySet.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBody.cs index ca40964e6aa..8b4bdbaebd6 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBranding.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBranding.cs index 008336904b7..b367fd1333b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBranding.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectBranding.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectMemberInviteBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectMemberInviteBody.cs index fb7fadedff1..c5178776bef 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectMemberInviteBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectMemberInviteBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryCodeForIdentityBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryCodeForIdentityBody.cs index 98aa12255ab..96858bc6bce 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryCodeForIdentityBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryCodeForIdentityBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryLinkForIdentityBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryLinkForIdentityBody.cs index fe32e2ca51f..f4c59dd1dfa 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryLinkForIdentityBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRecoveryLinkForIdentityBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRelationshipBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRelationshipBody.cs index 7d72419b09b..1ea51816d7b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRelationshipBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateRelationshipBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateSubscriptionBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateSubscriptionBody.cs index b9d2347f772..37d26b79166 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateSubscriptionBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateSubscriptionBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateVerifiableCredentialRequestBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateVerifiableCredentialRequestBody.cs index 1b414eb8de1..53693812988 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateVerifiableCredentialRequestBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateVerifiableCredentialRequestBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCredentialSupportedDraft00.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCredentialSupportedDraft00.cs index 60fa3b6b644..5d1238d7aa6 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCredentialSupportedDraft00.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCredentialSupportedDraft00.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCustomDomain.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCustomDomain.cs index 180fc5e709a..791d1763fac 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCustomDomain.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCustomDomain.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientDeleteMySessionsCount.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientDeleteMySessionsCount.cs index b5ce4603e98..90de2a5fbe7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientDeleteMySessionsCount.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientDeleteMySessionsCount.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateData.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateData.cs index ae1f09ee285..feb13bf696f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateData.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateData.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateDataBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateDataBody.cs index a841823c887..329db676e68 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateDataBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientEmailTemplateDataBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfied.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfied.cs index 24d51460ab0..f3e2511677e 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfied.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorAuthenticatorAssuranceLevelNotSatisfied.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorBrowserLocationChangeRequired.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorBrowserLocationChangeRequired.cs index 84c40bd02ba..17c6a87dec0 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorBrowserLocationChangeRequired.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorBrowserLocationChangeRequired.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorFlowReplaced.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorFlowReplaced.cs index 15088cd57a5..79d278b863e 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorFlowReplaced.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorFlowReplaced.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorGeneric.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorGeneric.cs index 7a36b65b45c..ad58c5c9137 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorGeneric.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorGeneric.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorOAuth2.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorOAuth2.cs index d90e297c7c0..cdb9943c0eb 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientErrorOAuth2.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientErrorOAuth2.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientExpandedPermissionTree.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientExpandedPermissionTree.cs index 0400af22ae5..175ca07e39c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientExpandedPermissionTree.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientExpandedPermissionTree.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientFlowError.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientFlowError.cs index 6118f5563f4..8b0497b5f30 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientFlowError.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientFlowError.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientGenericError.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientGenericError.cs index c0793834ee2..80ae9797343 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientGenericError.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientGenericError.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientGenericErrorContent.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientGenericErrorContent.cs index 24da998b4b8..84c9663a719 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientGenericErrorContent.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientGenericErrorContent.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientGenericUsage.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientGenericUsage.cs index 4a9031a86a4..c69793fd459 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientGenericUsage.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientGenericUsage.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientGetManagedIdentitySchemaLocation.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientGetManagedIdentitySchemaLocation.cs index 59264bea7b2..991b6da7149 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientGetManagedIdentitySchemaLocation.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientGetManagedIdentitySchemaLocation.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientGetProjectMetricsResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientGetProjectMetricsResponse.cs index 09e879b4d57..79598103534 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientGetProjectMetricsResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientGetProjectMetricsResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientHealthNotReadyStatus.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientHealthNotReadyStatus.cs index d24f56d5ca9..e7b0aa45754 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientHealthNotReadyStatus.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientHealthNotReadyStatus.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientHealthStatus.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientHealthStatus.cs index 0cd9d615db0..1b27691da24 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientHealthStatus.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientHealthStatus.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentity.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentity.cs index d5a2e1a8a52..5487d13b860 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentity.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentity.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentials.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentials.cs index 8fafbfd3dce..3a472297ada 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentials.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentials.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidc.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidc.cs index cc63d18177a..7390d24d91b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidc.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidc.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidcProvider.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidcProvider.cs index c9f93439377..cad05b3f7a7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidcProvider.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsOidcProvider.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsPassword.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsPassword.cs index adaf97a1178..69c767d234c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsPassword.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsPassword.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsType.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsType.cs index 0bd525f5b39..7b03116759d 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsType.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityCredentialsType.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatch.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatch.cs index 40ff83b3790..dcaf806c7e0 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatch.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatch.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatchResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatchResponse.cs index 0dcf6b1efa2..eb2939dc730 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatchResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityPatchResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaContainer.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaContainer.cs index c64559b79f4..ac25c8c637d 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaContainer.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaContainer.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaPreset.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaPreset.cs index 089c2baa038..6e7e63c643c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaPreset.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentitySchemaPreset.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityState.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityState.cs index dbb13d84bee..4db38968dcc 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityState.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityState.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentials.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentials.cs index 4ba18ad5379..ad34baf9137 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentials.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentials.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidc.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidc.cs index 5ac21379ed1..802c2328d7a 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidc.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidc.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfig.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfig.cs index 4d485e109b6..c04775d2d64 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfig.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfig.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfigProvider.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfigProvider.cs index 15e5426435e..9be673cdf6d 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfigProvider.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsOidcConfigProvider.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPassword.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPassword.cs index 172bf8d9ded..7932947b7a7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPassword.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPassword.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPasswordConfig.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPasswordConfig.cs index 2cfc7ecd92a..61bc35a9641 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPasswordConfig.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIdentityWithCredentialsPasswordConfig.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineObject3.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineObject3.cs index 29a92230466..a0dbc490530 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineObject3.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineObject3.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse200.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse200.cs index 070bf6ee782..cd18662d4a5 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse200.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse200.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse2001.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse2001.cs index 3c6a742dc5b..1516c8950a3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse2001.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse2001.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse503.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse503.cs index 0cfe0e9ddb1..39f408ccaa1 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse503.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInlineResponse503.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalGetProjectBrandingBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalGetProjectBrandingBody.cs index 031a8c6d86b..dfc9091a181 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalGetProjectBrandingBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalGetProjectBrandingBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBody.cs index 30d4b5a9419..34e557fa2fd 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsAXWelcomeScreenEnabledForProjectBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugBody.cs index bc0aa5fc0a7..a51852a3359 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugResponse.cs index a1c92e56f3d..4fc3e1cf1c8 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalIsOwnerForProjectBySlugResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalProvisionMockSubscription.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalProvisionMockSubscription.cs index 5eacd4bc792..83482c14748 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientInternalProvisionMockSubscription.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientInternalProvisionMockSubscription.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIntrospectedOAuth2Token.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIntrospectedOAuth2Token.cs index 1e0e24d5df5..11b96687eb6 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIntrospectedOAuth2Token.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIntrospectedOAuth2Token.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientIsOwnerForProjectBySlug.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientIsOwnerForProjectBySlug.cs index 2cb541e0e4c..d712ee69ca3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientIsOwnerForProjectBySlug.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientIsOwnerForProjectBySlug.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientJsonPatch.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientJsonPatch.cs index 90553243826..f5586cdb973 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientJsonPatch.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientJsonPatch.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKey.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKey.cs index 66b68ef9a6c..343a959a830 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKey.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKey.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKeySet.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKeySet.cs index daec39c9729..d0de8adf0de 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKeySet.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientJsonWebKeySet.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientKetoNamespace.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientKetoNamespace.cs index 1cd4930110c..ac17b21841b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientKetoNamespace.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientKetoNamespace.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientLoginFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientLoginFlow.cs index e9c5c2b2b6b..029dceeedce 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientLoginFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientLoginFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientLogoutFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientLogoutFlow.cs index 06304201e95..04eadfe0d8b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientLogoutFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientLogoutFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchema.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchema.cs index 4069342df8a..3c03f8ecd10 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchema.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchema.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchemaValidationResult.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchemaValidationResult.cs index d67d8e244e0..2bc8a6546fd 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchemaValidationResult.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientManagedIdentitySchemaValidationResult.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientMemberInvite.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientMemberInvite.cs index e795ba16b23..fd78c4d1857 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientMemberInvite.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientMemberInvite.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientMessage.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientMessage.cs index ed5f6b823bd..c84e24fd515 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientMessage.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientMessage.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientMessageDispatch.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientMessageDispatch.cs index f737ec9fa69..1a4bbe39acf 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientMessageDispatch.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientMessageDispatch.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientMetricsDatapoint.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientMetricsDatapoint.cs index 7316436c59c..372ea2f27e2 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientMetricsDatapoint.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientMetricsDatapoint.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNamespace.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNamespace.cs index 1b6923be382..4c29ffeae1c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNamespace.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNamespace.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNeedsPrivilegedSessionError.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNeedsPrivilegedSessionError.cs index 662370cb922..f86d1f2c861 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNeedsPrivilegedSessionError.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNeedsPrivilegedSessionError.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProject.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProject.cs index 8021578428b..3d6dce498b5 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProject.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProject.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevision.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevision.cs index d3a39c89ecc..5fecab4fef6 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevision.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevision.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -203,6 +203,7 @@ protected ClientNormalizedProjectRevision() /// Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting.. /// Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting.. /// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. + /// Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting.. /// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. /// Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.. /// Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. @@ -307,7 +308,7 @@ protected ClientNormalizedProjectRevision() /// Enable CORS headers on all admin APIs This governs the \"serve.admin.cors.enabled\" setting.. /// servePublicCorsAllowedOrigins. /// Enable CORS headers on all public APIs This governs the \"serve.public.cors.enabled\" setting.. - public ClientNormalizedProjectRevision(bool disableAccountExperienceWelcomeScreen = default(bool), List hydraOauth2AllowedTopLevelClaims = default(List), bool hydraOauth2ClientCredentialsDefaultGrantAllowedScope = default(bool), bool hydraOauth2ExcludeNotBeforeClaim = default(bool), bool hydraOauth2GrantJwtIatOptional = default(bool), bool hydraOauth2GrantJwtJtiOptional = default(bool), string hydraOauth2GrantJwtMaxTtl = "720h", bool hydraOauth2PkceEnforced = default(bool), bool hydraOauth2PkceEnforcedForPublicClients = default(bool), string hydraOauth2RefreshTokenHook = default(string), string hydraOauth2TokenHook = default(string), List hydraOidcDynamicClientRegistrationDefaultScope = default(List), bool hydraOidcDynamicClientRegistrationEnabled = default(bool), string hydraOidcSubjectIdentifiersPairwiseSalt = default(string), List hydraOidcSubjectIdentifiersSupportedTypes = default(List), List hydraSecretsCookie = default(List), List hydraSecretsSystem = default(List), bool hydraServeCookiesSameSiteLegacyWorkaround = default(bool), string hydraServeCookiesSameSiteMode = default(string), HydraStrategiesAccessTokenEnum? hydraStrategiesAccessToken = HydraStrategiesAccessTokenEnum.Opaque, HydraStrategiesScopeEnum? hydraStrategiesScope = HydraStrategiesScopeEnum.Wildcard, string hydraTtlAccessToken = "30m", string hydraTtlAuthCode = "720h", string hydraTtlIdToken = "30m", string hydraTtlLoginConsentRequest = "30m", string hydraTtlRefreshToken = "720h", string hydraUrlsConsent = default(string), string hydraUrlsError = default(string), string hydraUrlsLogin = default(string), string hydraUrlsLogout = default(string), string hydraUrlsPostLogoutRedirect = default(string), string hydraUrlsSelfIssuer = default(string), List hydraWebfingerJwksBroadcastKeys = default(List), string hydraWebfingerOidcDiscoveryAuthUrl = default(string), string hydraWebfingerOidcDiscoveryClientRegistrationUrl = default(string), string hydraWebfingerOidcDiscoveryJwksUrl = default(string), List hydraWebfingerOidcDiscoverySupportedClaims = default(List), List hydraWebfingerOidcDiscoverySupportedScope = default(List), string hydraWebfingerOidcDiscoveryTokenUrl = default(string), string hydraWebfingerOidcDiscoveryUserinfoUrl = default(string), string ketoNamespaceConfiguration = default(string), List ketoNamespaces = default(List), int? ketoReadMaxDepth = default(int?), string kratosCookiesSameSite = default(string), string kratosCourierSmtpConnectionUri = default(string), string kratosCourierSmtpFromAddress = default(string), string kratosCourierSmtpFromName = default(string), Object kratosCourierSmtpHeaders = default(Object), string kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryCodeInvalidEmailSubject = default(string), string kratosCourierTemplatesRecoveryCodeValidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryCodeValidEmailSubject = default(string), string kratosCourierTemplatesRecoveryInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryInvalidEmailSubject = default(string), string kratosCourierTemplatesRecoveryValidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryValidEmailSubject = default(string), string kratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationCodeInvalidEmailSubject = default(string), string kratosCourierTemplatesVerificationCodeValidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationCodeValidEmailSubject = default(string), string kratosCourierTemplatesVerificationInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationInvalidEmailSubject = default(string), string kratosCourierTemplatesVerificationValidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationValidEmailSubject = default(string), bool kratosFeatureFlagsCacheableSessions = default(bool), List kratosIdentitySchemas = default(List), Object kratosOauth2ProviderHeaders = default(Object), bool kratosOauth2ProviderOverrideReturnTo = default(bool), string kratosOauth2ProviderUrl = default(string), List kratosSecretsCipher = default(List), List kratosSecretsCookie = default(List), List kratosSecretsDefault = default(List), List kratosSelfserviceAllowedReturnUrls = default(List), string kratosSelfserviceDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsErrorUiUrl = default(string), List kratosSelfserviceFlowsHooks = default(List), string kratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginLifespan = default(string), string kratosSelfserviceFlowsLoginUiUrl = default(string), string kratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl = default(string), bool kratosSelfserviceFlowsRecoveryEnabled = default(bool), string kratosSelfserviceFlowsRecoveryLifespan = default(string), bool kratosSelfserviceFlowsRecoveryNotifyUnknownRecipients = default(bool), string kratosSelfserviceFlowsRecoveryUiUrl = default(string), KratosSelfserviceFlowsRecoveryUseEnum? kratosSelfserviceFlowsRecoveryUse = default(KratosSelfserviceFlowsRecoveryUseEnum?), string kratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl = default(string), bool kratosSelfserviceFlowsRegistrationEnabled = default(bool), string kratosSelfserviceFlowsRegistrationLifespan = default(string), string kratosSelfserviceFlowsRegistrationUiUrl = default(string), string kratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsSettingsLifespan = default(string), string kratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge = default(string), string kratosSelfserviceFlowsSettingsRequiredAal = default(string), string kratosSelfserviceFlowsSettingsUiUrl = default(string), string kratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl = default(string), bool kratosSelfserviceFlowsVerificationEnabled = default(bool), string kratosSelfserviceFlowsVerificationLifespan = default(string), bool kratosSelfserviceFlowsVerificationNotifyUnknownRecipients = default(bool), string kratosSelfserviceFlowsVerificationUiUrl = default(string), KratosSelfserviceFlowsVerificationUseEnum? kratosSelfserviceFlowsVerificationUse = default(KratosSelfserviceFlowsVerificationUseEnum?), string kratosSelfserviceMethodsCodeConfigLifespan = default(string), bool kratosSelfserviceMethodsCodeEnabled = default(bool), string kratosSelfserviceMethodsLinkConfigBaseUrl = default(string), string kratosSelfserviceMethodsLinkConfigLifespan = default(string), bool kratosSelfserviceMethodsLinkEnabled = default(bool), bool kratosSelfserviceMethodsLookupSecretEnabled = default(bool), string kratosSelfserviceMethodsOidcConfigBaseRedirectUri = default(string), List kratosSelfserviceMethodsOidcConfigProviders = default(List), bool kratosSelfserviceMethodsOidcEnabled = default(bool), bool kratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled = default(bool), bool kratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled = default(bool), bool kratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors = default(bool), long kratosSelfserviceMethodsPasswordConfigMaxBreaches = default(long), long kratosSelfserviceMethodsPasswordConfigMinPasswordLength = default(long), bool kratosSelfserviceMethodsPasswordEnabled = default(bool), bool kratosSelfserviceMethodsProfileEnabled = default(bool), string kratosSelfserviceMethodsTotpConfigIssuer = default(string), bool kratosSelfserviceMethodsTotpEnabled = default(bool), bool kratosSelfserviceMethodsWebauthnConfigPasswordless = default(bool), string kratosSelfserviceMethodsWebauthnConfigRpDisplayName = default(string), string kratosSelfserviceMethodsWebauthnConfigRpIcon = default(string), string kratosSelfserviceMethodsWebauthnConfigRpId = default(string), List kratosSelfserviceMethodsWebauthnConfigRpOrigins = default(List), bool kratosSelfserviceMethodsWebauthnEnabled = default(bool), bool kratosSessionCookiePersistent = default(bool), string kratosSessionCookieSameSite = default(string), string kratosSessionLifespan = default(string), string kratosSessionWhoamiRequiredAal = default(string), string name = default(string), bool production = default(bool), string projectId = default(string), List serveAdminCorsAllowedOrigins = default(List), bool serveAdminCorsEnabled = default(bool), List servePublicCorsAllowedOrigins = default(List), bool servePublicCorsEnabled = default(bool)) + public ClientNormalizedProjectRevision(bool disableAccountExperienceWelcomeScreen = default(bool), List hydraOauth2AllowedTopLevelClaims = default(List), bool hydraOauth2ClientCredentialsDefaultGrantAllowedScope = default(bool), bool hydraOauth2ExcludeNotBeforeClaim = default(bool), bool hydraOauth2GrantJwtIatOptional = default(bool), bool hydraOauth2GrantJwtJtiOptional = default(bool), string hydraOauth2GrantJwtMaxTtl = "720h", bool hydraOauth2PkceEnforced = default(bool), bool hydraOauth2PkceEnforcedForPublicClients = default(bool), string hydraOauth2RefreshTokenHook = default(string), string hydraOauth2TokenHook = default(string), List hydraOidcDynamicClientRegistrationDefaultScope = default(List), bool hydraOidcDynamicClientRegistrationEnabled = default(bool), string hydraOidcSubjectIdentifiersPairwiseSalt = default(string), List hydraOidcSubjectIdentifiersSupportedTypes = default(List), List hydraSecretsCookie = default(List), List hydraSecretsSystem = default(List), bool hydraServeCookiesSameSiteLegacyWorkaround = default(bool), string hydraServeCookiesSameSiteMode = default(string), HydraStrategiesAccessTokenEnum? hydraStrategiesAccessToken = HydraStrategiesAccessTokenEnum.Opaque, HydraStrategiesScopeEnum? hydraStrategiesScope = HydraStrategiesScopeEnum.Wildcard, string hydraTtlAccessToken = "30m", string hydraTtlAuthCode = "720h", string hydraTtlIdToken = "30m", string hydraTtlLoginConsentRequest = "30m", string hydraTtlRefreshToken = "720h", string hydraUrlsConsent = default(string), string hydraUrlsError = default(string), string hydraUrlsLogin = default(string), string hydraUrlsLogout = default(string), string hydraUrlsPostLogoutRedirect = default(string), string hydraUrlsSelfIssuer = default(string), List hydraWebfingerJwksBroadcastKeys = default(List), string hydraWebfingerOidcDiscoveryAuthUrl = default(string), string hydraWebfingerOidcDiscoveryClientRegistrationUrl = default(string), string hydraWebfingerOidcDiscoveryJwksUrl = default(string), List hydraWebfingerOidcDiscoverySupportedClaims = default(List), List hydraWebfingerOidcDiscoverySupportedScope = default(List), string hydraWebfingerOidcDiscoveryTokenUrl = default(string), string hydraWebfingerOidcDiscoveryUserinfoUrl = default(string), string ketoNamespaceConfiguration = default(string), List ketoNamespaces = default(List), int? ketoReadMaxDepth = default(int?), string kratosCookiesSameSite = default(string), string kratosCourierSmtpConnectionUri = default(string), string kratosCourierSmtpFromAddress = default(string), string kratosCourierSmtpFromName = default(string), Object kratosCourierSmtpHeaders = default(Object), string kratosCourierSmtpLocalName = default(string), string kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryCodeInvalidEmailSubject = default(string), string kratosCourierTemplatesRecoveryCodeValidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryCodeValidEmailSubject = default(string), string kratosCourierTemplatesRecoveryInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryInvalidEmailSubject = default(string), string kratosCourierTemplatesRecoveryValidEmailBodyHtml = default(string), string kratosCourierTemplatesRecoveryValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesRecoveryValidEmailSubject = default(string), string kratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationCodeInvalidEmailSubject = default(string), string kratosCourierTemplatesVerificationCodeValidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationCodeValidEmailSubject = default(string), string kratosCourierTemplatesVerificationInvalidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationInvalidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationInvalidEmailSubject = default(string), string kratosCourierTemplatesVerificationValidEmailBodyHtml = default(string), string kratosCourierTemplatesVerificationValidEmailBodyPlaintext = default(string), string kratosCourierTemplatesVerificationValidEmailSubject = default(string), bool kratosFeatureFlagsCacheableSessions = default(bool), List kratosIdentitySchemas = default(List), Object kratosOauth2ProviderHeaders = default(Object), bool kratosOauth2ProviderOverrideReturnTo = default(bool), string kratosOauth2ProviderUrl = default(string), List kratosSecretsCipher = default(List), List kratosSecretsCookie = default(List), List kratosSecretsDefault = default(List), List kratosSelfserviceAllowedReturnUrls = default(List), string kratosSelfserviceDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsErrorUiUrl = default(string), List kratosSelfserviceFlowsHooks = default(List), string kratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsLoginLifespan = default(string), string kratosSelfserviceFlowsLoginUiUrl = default(string), string kratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl = default(string), bool kratosSelfserviceFlowsRecoveryEnabled = default(bool), string kratosSelfserviceFlowsRecoveryLifespan = default(string), bool kratosSelfserviceFlowsRecoveryNotifyUnknownRecipients = default(bool), string kratosSelfserviceFlowsRecoveryUiUrl = default(string), KratosSelfserviceFlowsRecoveryUseEnum? kratosSelfserviceFlowsRecoveryUse = default(KratosSelfserviceFlowsRecoveryUseEnum?), string kratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl = default(string), bool kratosSelfserviceFlowsRegistrationEnabled = default(bool), string kratosSelfserviceFlowsRegistrationLifespan = default(string), string kratosSelfserviceFlowsRegistrationUiUrl = default(string), string kratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl = default(string), string kratosSelfserviceFlowsSettingsLifespan = default(string), string kratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge = default(string), string kratosSelfserviceFlowsSettingsRequiredAal = default(string), string kratosSelfserviceFlowsSettingsUiUrl = default(string), string kratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl = default(string), bool kratosSelfserviceFlowsVerificationEnabled = default(bool), string kratosSelfserviceFlowsVerificationLifespan = default(string), bool kratosSelfserviceFlowsVerificationNotifyUnknownRecipients = default(bool), string kratosSelfserviceFlowsVerificationUiUrl = default(string), KratosSelfserviceFlowsVerificationUseEnum? kratosSelfserviceFlowsVerificationUse = default(KratosSelfserviceFlowsVerificationUseEnum?), string kratosSelfserviceMethodsCodeConfigLifespan = default(string), bool kratosSelfserviceMethodsCodeEnabled = default(bool), string kratosSelfserviceMethodsLinkConfigBaseUrl = default(string), string kratosSelfserviceMethodsLinkConfigLifespan = default(string), bool kratosSelfserviceMethodsLinkEnabled = default(bool), bool kratosSelfserviceMethodsLookupSecretEnabled = default(bool), string kratosSelfserviceMethodsOidcConfigBaseRedirectUri = default(string), List kratosSelfserviceMethodsOidcConfigProviders = default(List), bool kratosSelfserviceMethodsOidcEnabled = default(bool), bool kratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled = default(bool), bool kratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled = default(bool), bool kratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors = default(bool), long kratosSelfserviceMethodsPasswordConfigMaxBreaches = default(long), long kratosSelfserviceMethodsPasswordConfigMinPasswordLength = default(long), bool kratosSelfserviceMethodsPasswordEnabled = default(bool), bool kratosSelfserviceMethodsProfileEnabled = default(bool), string kratosSelfserviceMethodsTotpConfigIssuer = default(string), bool kratosSelfserviceMethodsTotpEnabled = default(bool), bool kratosSelfserviceMethodsWebauthnConfigPasswordless = default(bool), string kratosSelfserviceMethodsWebauthnConfigRpDisplayName = default(string), string kratosSelfserviceMethodsWebauthnConfigRpIcon = default(string), string kratosSelfserviceMethodsWebauthnConfigRpId = default(string), List kratosSelfserviceMethodsWebauthnConfigRpOrigins = default(List), bool kratosSelfserviceMethodsWebauthnEnabled = default(bool), bool kratosSessionCookiePersistent = default(bool), string kratosSessionCookieSameSite = default(string), string kratosSessionLifespan = default(string), string kratosSessionWhoamiRequiredAal = default(string), string name = default(string), bool production = default(bool), string projectId = default(string), List serveAdminCorsAllowedOrigins = default(List), bool serveAdminCorsEnabled = default(bool), List servePublicCorsAllowedOrigins = default(List), bool servePublicCorsEnabled = default(bool)) { // to ensure "name" is required (not null) if (name == null) { @@ -368,6 +369,7 @@ protected ClientNormalizedProjectRevision() this.KratosCourierSmtpFromAddress = kratosCourierSmtpFromAddress; this.KratosCourierSmtpFromName = kratosCourierSmtpFromName; this.KratosCourierSmtpHeaders = kratosCourierSmtpHeaders; + this.KratosCourierSmtpLocalName = kratosCourierSmtpLocalName; this.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml = kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml; this.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext = kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext; this.KratosCourierTemplatesRecoveryCodeInvalidEmailSubject = kratosCourierTemplatesRecoveryCodeInvalidEmailSubject; @@ -816,6 +818,13 @@ public bool ShouldSerializeId() [DataMember(Name = "kratos_courier_smtp_headers", EmitDefaultValue = true)] public Object KratosCourierSmtpHeaders { get; set; } + /// + /// Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + /// + /// Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + [DataMember(Name = "kratos_courier_smtp_local_name", EmitDefaultValue = false)] + public string KratosCourierSmtpLocalName { get; set; } + /// /// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. /// @@ -1599,6 +1608,7 @@ public override string ToString() sb.Append(" KratosCourierSmtpFromAddress: ").Append(KratosCourierSmtpFromAddress).Append("\n"); sb.Append(" KratosCourierSmtpFromName: ").Append(KratosCourierSmtpFromName).Append("\n"); sb.Append(" KratosCourierSmtpHeaders: ").Append(KratosCourierSmtpHeaders).Append("\n"); + sb.Append(" KratosCourierSmtpLocalName: ").Append(KratosCourierSmtpLocalName).Append("\n"); sb.Append(" KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml: ").Append(KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml).Append("\n"); sb.Append(" KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext: ").Append(KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext).Append("\n"); sb.Append(" KratosCourierTemplatesRecoveryCodeInvalidEmailSubject: ").Append(KratosCourierTemplatesRecoveryCodeInvalidEmailSubject).Append("\n"); @@ -1988,6 +1998,11 @@ public bool Equals(ClientNormalizedProjectRevision input) (this.KratosCourierSmtpHeaders != null && this.KratosCourierSmtpHeaders.Equals(input.KratosCourierSmtpHeaders)) ) && + ( + this.KratosCourierSmtpLocalName == input.KratosCourierSmtpLocalName || + (this.KratosCourierSmtpLocalName != null && + this.KratosCourierSmtpLocalName.Equals(input.KratosCourierSmtpLocalName)) + ) && ( this.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml == input.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml || (this.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml != null && @@ -2675,6 +2690,10 @@ public override int GetHashCode() { hashCode = (hashCode * 59) + this.KratosCourierSmtpHeaders.GetHashCode(); } + if (this.KratosCourierSmtpLocalName != null) + { + hashCode = (hashCode * 59) + this.KratosCourierSmtpLocalName.GetHashCode(); + } if (this.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml != null) { hashCode = (hashCode * 59) + this.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml.GetHashCode(); diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionHook.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionHook.cs index 81b08545082..9883e00ed73 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionHook.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionHook.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionIdentitySchema.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionIdentitySchema.cs index 44e02170444..8fd2fc5ef7e 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionIdentitySchema.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionIdentitySchema.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionThirdPartyProvider.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionThirdPartyProvider.cs index b6a4414d802..4bda04b9af6 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionThirdPartyProvider.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionThirdPartyProvider.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2Client.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2Client.cs index 44541d3bddf..c5d287baacd 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2Client.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2Client.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ClientTokenLifespans.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ClientTokenLifespans.cs index 4b596a1dc7b..02d428818ab 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ClientTokenLifespans.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ClientTokenLifespans.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequest.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequest.cs index 6c504877839..443f14afbdb 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequest.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequest.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequestOpenIDConnectContext.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequestOpenIDConnectContext.cs index fd5db403c68..641d98fe999 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequestOpenIDConnectContext.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentRequestOpenIDConnectContext.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSession.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSession.cs index 6ed837792ba..1c3e0f3429b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSession.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSession.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSessionExpiresAt.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSessionExpiresAt.cs index 3989efc8509..731fdbb4135 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSessionExpiresAt.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2ConsentSessionExpiresAt.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LoginRequest.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LoginRequest.cs index 94dc9ffd9f5..99362890051 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LoginRequest.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LoginRequest.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LogoutRequest.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LogoutRequest.cs index 4c9625d9ee7..7746bba74f8 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LogoutRequest.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2LogoutRequest.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2RedirectTo.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2RedirectTo.cs index 26bae524e37..f03bee0c202 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2RedirectTo.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2RedirectTo.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2TokenExchange.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2TokenExchange.cs index 1a3869cc274..b746e9945b1 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2TokenExchange.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOAuth2TokenExchange.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOidcConfiguration.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOidcConfiguration.cs index 76a6047f987..7f35f8b79a4 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOidcConfiguration.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOidcConfiguration.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientOidcUserInfo.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientOidcUserInfo.cs index 64a7081fd85..49a738dac68 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientOidcUserInfo.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientOidcUserInfo.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPagination.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPagination.cs index f557ed19f9d..cebefac00dc 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPagination.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPagination.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPaginationHeaders.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPaginationHeaders.cs index 028ebd17739..90aa6adcca9 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPaginationHeaders.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPaginationHeaders.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientParseError.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientParseError.cs index 1b72406fa10..69fa738ca76 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientParseError.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientParseError.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPatchIdentitiesBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPatchIdentitiesBody.cs index 747957b1940..de9fa619f39 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPatchIdentitiesBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPatchIdentitiesBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPerformNativeLogoutBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPerformNativeLogoutBody.cs index dde04998091..e10a0bb8c62 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPerformNativeLogoutBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPerformNativeLogoutBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPlan.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPlan.cs index 0be0414a48b..bd8294d6e83 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPlan.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPlan.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPlanDetails.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPlanDetails.cs index 3d87aa220b6..7fda7c8e8b8 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPlanDetails.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPlanDetails.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionBody.cs index 6d26e988bcd..7667752ade9 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionOrErrorBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionOrErrorBody.cs index c3bdd7f0a73..af153be7bae 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionOrErrorBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientPostCheckPermissionOrErrorBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProject.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProject.cs index 09e550b9a29..5844678c16f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProject.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProject.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectApiKey.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectApiKey.cs index 6ce8ea59639..569a1e2debd 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectApiKey.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectApiKey.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBranding.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBranding.cs index 2321a8d9ae0..e465daabf0d 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBranding.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBranding.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingColors.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingColors.cs index 1cc9cc52860..9aedf929bbb 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingColors.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingColors.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingTheme.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingTheme.cs index 6697f5e81f8..a48d3dfd75b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingTheme.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingTheme.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectHost.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectHost.cs index e13ae2a49de..8cd5fae9911 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectHost.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectHost.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectMetadata.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectMetadata.cs index 49acd7dd86d..f81d76e8feb 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectMetadata.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectMetadata.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceIdentity.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceIdentity.cs index a0a0a15eaa1..bb5decbb70a 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceIdentity.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceIdentity.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceOAuth2.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceOAuth2.cs index 41c95f05fea..53ca090b6fc 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceOAuth2.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceOAuth2.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServicePermission.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServicePermission.cs index 28cdc373612..f4068520939 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServicePermission.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServicePermission.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServices.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServices.cs index 851b72fddca..273f17219db 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServices.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServices.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientQuotaUsage.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientQuotaUsage.cs index 286e23541db..512818612c7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientQuotaUsage.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientQuotaUsage.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRFC6749ErrorJson.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRFC6749ErrorJson.cs index 31069683921..342204315fc 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRFC6749ErrorJson.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRFC6749ErrorJson.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryCodeForIdentity.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryCodeForIdentity.cs index 5415c549405..0822c172e9a 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryCodeForIdentity.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryCodeForIdentity.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlow.cs index e9586df722a..ca24345dbbc 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlowState.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlowState.cs index f3a4d4c95bf..f122216cee3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlowState.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryFlowState.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryIdentityAddress.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryIdentityAddress.cs index 9087d6708dd..038febe0107 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryIdentityAddress.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryIdentityAddress.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryLinkForIdentity.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryLinkForIdentity.cs index cc7b950851a..e243a4c2257 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryLinkForIdentity.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRecoveryLinkForIdentity.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRegistrationFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRegistrationFlow.cs index 12968642a88..e69c26b2b8c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRegistrationFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRegistrationFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRejectOAuth2Request.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRejectOAuth2Request.cs index 3f29182bb6a..d8c8f772eb2 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRejectOAuth2Request.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRejectOAuth2Request.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationQuery.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationQuery.cs index 3af99ff416a..693ae640ed3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationQuery.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationQuery.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationship.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationship.cs index c18cfb9ea3d..e273794f075 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationship.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationship.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipNamespaces.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipNamespaces.cs index 8558d2746e9..548cdbb4137 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipNamespaces.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipNamespaces.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipPatch.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipPatch.cs index 48d5e41fdba..d1100a79eea 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipPatch.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationshipPatch.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationships.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationships.cs index 11e0db89c87..3757b8a84da 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientRelationships.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientRelationships.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSchemaPatch.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSchemaPatch.cs index 7ecbb743d0c..d4646b41585 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSchemaPatch.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSchemaPatch.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSelfServiceFlowExpiredError.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSelfServiceFlowExpiredError.cs index 2079d3cdb0e..fc47f456015 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSelfServiceFlowExpiredError.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSelfServiceFlowExpiredError.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSession.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSession.cs index 9516cadcf96..2e2b6096af1 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSession.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSession.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSessionAuthenticationMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSessionAuthenticationMethod.cs index 94c40259568..1cd1f285510 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSessionAuthenticationMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSessionAuthenticationMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSessionDevice.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSessionDevice.cs index 0dfba0b7b38..b0c3cc136ce 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSessionDevice.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSessionDevice.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSetActiveProjectInConsoleBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSetActiveProjectInConsoleBody.cs index 1c286c0eac8..1dbe3da7e9d 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSetActiveProjectInConsoleBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSetActiveProjectInConsoleBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSetCustomDomainBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSetCustomDomainBody.cs index cd19542be62..24c0e3a0c82 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSetCustomDomainBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSetCustomDomainBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSetProject.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSetProject.cs index 3cb05822b31..5f9641921d3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSetProject.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSetProject.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSetProjectBrandingThemeBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSetProjectBrandingThemeBody.cs index 760cc508cb6..3b0c8509f18 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSetProjectBrandingThemeBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSetProjectBrandingThemeBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlow.cs index 1ded3191555..267e503dc64 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlowState.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlowState.cs index d1ea817adb0..a979389ff3c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlowState.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlowState.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSourcePosition.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSourcePosition.cs index 630c47addbc..2e8c07a392d 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSourcePosition.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSourcePosition.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientStripeCustomer.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientStripeCustomer.cs index ab410aeda0f..d658457135a 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientStripeCustomer.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientStripeCustomer.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSubjectSet.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSubjectSet.cs index 8c790ade158..be5d1961a74 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSubjectSet.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSubjectSet.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSubscription.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSubscription.cs index 0c17b25add1..54cdf916e56 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSubscription.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSubscription.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulCodeExchangeResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulCodeExchangeResponse.cs index 3fda7c1b412..3570e77e11e 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulCodeExchangeResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulCodeExchangeResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeLogin.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeLogin.cs index a5efb8e8c5b..aa980f12462 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeLogin.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeLogin.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeRegistration.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeRegistration.cs index 2bba08b8e5f..758249b0281 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeRegistration.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulNativeRegistration.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulProjectUpdate.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulProjectUpdate.cs index 7ebeb21e921..94e8d639e0c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulProjectUpdate.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientSuccessfulProjectUpdate.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPagination.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPagination.cs index e2015fa4167..c89108c5b63 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPagination.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPagination.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationHeaders.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationHeaders.cs index 185a20e9230..26ff9395bbe 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationHeaders.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationHeaders.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationRequestParameters.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationRequestParameters.cs index 90a79bb68bb..8bcd09a361f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationRequestParameters.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationRequestParameters.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationResponseHeaders.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationResponseHeaders.cs index 56e7b4b189e..27851122f09 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationResponseHeaders.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTokenPaginationResponseHeaders.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTrustOAuth2JwtGrantIssuer.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTrustOAuth2JwtGrantIssuer.cs index 01510c15a02..ce792f1ca17 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTrustOAuth2JwtGrantIssuer.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTrustOAuth2JwtGrantIssuer.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantIssuer.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantIssuer.cs index 33cd9befca6..2c1460afff5 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantIssuer.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantIssuer.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantJsonWebKey.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantJsonWebKey.cs index ebf32bf7d79..2820d2ef1d4 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantJsonWebKey.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientTrustedOAuth2JwtGrantJsonWebKey.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiContainer.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiContainer.cs index a15d02188e5..d09ac940678 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiContainer.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiContainer.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNode.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNode.cs index d4d7f3fe3b2..036670394e9 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNode.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNode.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAnchorAttributes.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAnchorAttributes.cs index 8aa332fc64f..4e3687de7a9 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAnchorAttributes.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAnchorAttributes.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAttributes.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAttributes.cs index 434c719ae17..c38ea4be24f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAttributes.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeAttributes.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeImageAttributes.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeImageAttributes.cs index 301c8ab7b25..f0dbe849ea6 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeImageAttributes.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeImageAttributes.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeInputAttributes.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeInputAttributes.cs index 3a072560f1b..3127b5808c5 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeInputAttributes.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeInputAttributes.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeMeta.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeMeta.cs index 6d6a90725cf..c55a3a33f24 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeMeta.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeMeta.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeScriptAttributes.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeScriptAttributes.cs index 896302642ad..ec9dea51b87 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeScriptAttributes.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeScriptAttributes.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeTextAttributes.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeTextAttributes.cs index 31734a7c4e3..d01edb6e0db 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeTextAttributes.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiNodeTextAttributes.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUiText.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUiText.cs index 1c0d0e3c9d7..f85537272ff 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUiText.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUiText.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateIdentityBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateIdentityBody.cs index 334e16612b3..789b44d4254 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateIdentityBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateIdentityBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowBody.cs index 85d4cb76080..bdad059d388 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithLookupSecretMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithLookupSecretMethod.cs index ef74906ad15..f0132f43bb9 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithLookupSecretMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithLookupSecretMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithOidcMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithOidcMethod.cs index a41898abb4c..596d6ad3db7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithOidcMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithOidcMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithPasswordMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithPasswordMethod.cs index 5b17f63e342..34acc35064a 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithPasswordMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithPasswordMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithTotpMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithTotpMethod.cs index 6808a3957b8..67b401dd8c5 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithTotpMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithTotpMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithWebAuthnMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithWebAuthnMethod.cs index e28f17def5e..7b29f9eac6f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithWebAuthnMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateLoginFlowWithWebAuthnMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowBody.cs index 7c1f1f4d002..c5150f91509 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithCodeMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithCodeMethod.cs index 418e461f996..abfb0062b01 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithCodeMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithCodeMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithLinkMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithLinkMethod.cs index 6663f1119b5..8eda720fd9b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithLinkMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRecoveryFlowWithLinkMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowBody.cs index fb35b1246ba..5ed683d5ad1 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithOidcMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithOidcMethod.cs index b5c4c7de49d..09a69e0203b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithOidcMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithOidcMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithPasswordMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithPasswordMethod.cs index 03174c94d68..17fe4f762f3 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithPasswordMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithPasswordMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithWebAuthnMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithWebAuthnMethod.cs index d5d433eac20..7ba99a4dbbd 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithWebAuthnMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateRegistrationFlowWithWebAuthnMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowBody.cs index bb2d9a3c034..bb95bdd0438 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithLookupMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithLookupMethod.cs index 2442face5f0..328d22ef10e 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithLookupMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithLookupMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithOidcMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithOidcMethod.cs index d62570002c6..ad380154462 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithOidcMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithOidcMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithPasswordMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithPasswordMethod.cs index e2251dc0239..f29de4f252b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithPasswordMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithPasswordMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithProfileMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithProfileMethod.cs index 0115ec191e2..b8f8c4fd81c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithProfileMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithProfileMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithTotpMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithTotpMethod.cs index bf19508d692..494d87c0573 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithTotpMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithTotpMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithWebAuthnMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithWebAuthnMethod.cs index 5a7425e5c32..3cb08f2b3b7 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithWebAuthnMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSettingsFlowWithWebAuthnMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSubscriptionBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSubscriptionBody.cs index 90ef3cabad5..9dda3a07711 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSubscriptionBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateSubscriptionBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowBody.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowBody.cs index 260f1d4f524..b93cc721343 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowBody.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowBody.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithCodeMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithCodeMethod.cs index 0fa3537bc6c..68f733850ee 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithCodeMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithCodeMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithLinkMethod.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithLinkMethod.cs index edfc3037f58..6e722568f6b 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithLinkMethod.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUpdateVerificationFlowWithLinkMethod.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientUsage.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientUsage.cs index 1eb60e667be..166d6f7fe97 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientUsage.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientUsage.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialPrimingResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialPrimingResponse.cs index 965dce17bd6..9f523fa295c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialPrimingResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialPrimingResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialProof.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialProof.cs index a9cf0070a3e..96d363c6c22 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialProof.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialProof.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialResponse.cs index 34c937eb064..6186e10b467 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableCredentialResponse.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableIdentityAddress.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableIdentityAddress.cs index 63448ad70db..22826e4f24e 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableIdentityAddress.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVerifiableIdentityAddress.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlow.cs index 8def0ee3cd9..80572f178bc 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlow.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlow.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlowState.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlowState.cs index d0bd2667fb0..49425f30401 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlowState.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVerificationFlowState.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientVersion.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientVersion.cs index a85a2278408..7ab2849969c 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientVersion.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientVersion.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientWarning.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientWarning.cs index 0d4b320c70c..f9723421bca 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientWarning.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientWarning.cs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Ory.Client.csproj b/clients/client/dotnet/src/Ory.Client/Ory.Client.csproj index 04df6a1d6fd..bb2db52467d 100644 --- a/clients/client/dotnet/src/Ory.Client/Ory.Client.csproj +++ b/clients/client/dotnet/src/Ory.Client/Ory.Client.csproj @@ -12,7 +12,7 @@ A library generated from a OpenAPI doc No Copyright Ory.Client - 1.1.44 + 1.1.45 bin\$(Configuration)\$(TargetFramework)\Ory.Client.xml Apache-2.0 https://github.com/ory/sdk.git diff --git a/clients/client/elixir/README.md b/clients/client/elixir/README.md index a20c7515689..a534930722e 100644 --- a/clients/client/elixir/README.md +++ b/clients/client/elixir/README.md @@ -18,7 +18,7 @@ your list of dependencies in `mix.exs`: ```elixir def deps do - [{:ory_client, "~> v1.1.44"}] + [{:ory_client, "~> v1.1.45"}] end ``` diff --git a/clients/client/elixir/lib/ory/connection.ex b/clients/client/elixir/lib/ory/connection.ex index 2ef1d4d382f..aae8d608b5d 100644 --- a/clients/client/elixir/lib/ory/connection.ex +++ b/clients/client/elixir/lib/ory/connection.ex @@ -164,7 +164,7 @@ defmodule Ory.Connection do Keyword.get( tesla_options, :user_agent, - "openapi-generator - Ory v1.1.44 - elixir" + "openapi-generator - Ory v1.1.45 - elixir" ) ) diff --git a/clients/client/elixir/lib/ory/model/normalized_project_revision.ex b/clients/client/elixir/lib/ory/model/normalized_project_revision.ex index d27aa8c1391..2530c36cd9f 100644 --- a/clients/client/elixir/lib/ory/model/normalized_project_revision.ex +++ b/clients/client/elixir/lib/ory/model/normalized_project_revision.ex @@ -58,6 +58,7 @@ defmodule Ory.Model.NormalizedProjectRevision do :kratos_courier_smtp_from_address, :kratos_courier_smtp_from_name, :kratos_courier_smtp_headers, + :kratos_courier_smtp_local_name, :kratos_courier_templates_recovery_code_invalid_email_body_html, :kratos_courier_templates_recovery_code_invalid_email_body_plaintext, :kratos_courier_templates_recovery_code_invalid_email_subject, @@ -216,6 +217,7 @@ defmodule Ory.Model.NormalizedProjectRevision do :kratos_courier_smtp_from_address => String.t | nil, :kratos_courier_smtp_from_name => String.t | nil, :kratos_courier_smtp_headers => map() | nil, + :kratos_courier_smtp_local_name => String.t | nil, :kratos_courier_templates_recovery_code_invalid_email_body_html => String.t | nil, :kratos_courier_templates_recovery_code_invalid_email_body_plaintext => String.t | nil, :kratos_courier_templates_recovery_code_invalid_email_subject => String.t | nil, diff --git a/clients/client/elixir/mix.exs b/clients/client/elixir/mix.exs index 995d7d50d52..ac3751e22d1 100644 --- a/clients/client/elixir/mix.exs +++ b/clients/client/elixir/mix.exs @@ -4,7 +4,7 @@ defmodule Ory.Mixfile do def project do [ app: :ory_client, - version: "1.1.44", + version: "1.1.45", elixir: "~> 1.10", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, diff --git a/clients/client/elixir/mix.lock b/clients/client/elixir/mix.lock index 835c44aaa04..5b2d115c9fe 100644 --- a/clients/client/elixir/mix.lock +++ b/clients/client/elixir/mix.lock @@ -1,6 +1,6 @@ %{ "earmark_parser": {:hex, :earmark_parser, "1.4.33", "3c3fd9673bb5dcc9edc28dd90f50c87ce506d1f71b70e3de69aa8154bc695d44", [:mix], [], "hexpm", "2d526833729b59b9fdb85785078697c72ac5e5066350663e5be6a1182da61b8f"}, - "ex_doc": {:hex, :ex_doc, "0.30.4", "e8395c8e3c007321abb30a334f9f7c0858d80949af298302daf77553468c0c39", [:mix], [{:earmark_parser, "~> 1.4.31", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "9a19f0c50ffaa02435668f5242f2b2a61d46b541ebf326884505dfd3dd7af5e4"}, + "ex_doc": {:hex, :ex_doc, "0.30.5", "aa6da96a5c23389d7dc7c381eba862710e108cee9cfdc629b7ec021313900e9e", [:mix], [{:earmark_parser, "~> 1.4.31", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "88a1e115dcb91cefeef7e22df4a6ebbe4634fbf98b38adcbc25c9607d6d9d8e6"}, "makeup": {:hex, :makeup, "1.1.0", "6b67c8bc2882a6b6a445859952a602afc1a41c2e08379ca057c0f525366fc3ca", [:mix], [{:nimble_parsec, "~> 1.2.2 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "0a45ed501f4a8897f580eabf99a2e5234ea3e75a4373c8a52824f6e873be57a6"}, "makeup_elixir": {:hex, :makeup_elixir, "0.16.1", "cc9e3ca312f1cfeccc572b37a09980287e243648108384b97ff2b76e505c3555", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "e127a341ad1b209bd80f7bd1620a15693a9908ed780c3b763bccf7d200c767c6"}, "makeup_erlang": {:hex, :makeup_erlang, "0.1.2", "ad87296a092a46e03b7e9b0be7631ddcf64c790fa68a9ef5323b6cbb36affc72", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "f3f5a1ca93ce6e092d92b6d9c049bcda58a3b617a8d888f8e7231c85630e8108"}, diff --git a/clients/client/go/README.md b/clients/client/go/README.md index c3f629675d7..cf2d99b31f3 100644 --- a/clients/client/go/README.md +++ b/clients/client/go/README.md @@ -7,7 +7,7 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: v1.1.44 +- API version: v1.1.45 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/clients/client/go/api/openapi.yaml b/clients/client/go/api/openapi.yaml index 7b36febf0e5..459e0398b28 100644 --- a/clients/client/go/api/openapi.yaml +++ b/clients/client/go/api/openapi.yaml @@ -11,7 +11,7 @@ info: url: https://www.apache.org/licenses/LICENSE-2.0.html termsOfService: /ptos title: Ory APIs - version: v1.1.44 + version: v1.1.45 servers: - url: "https://{project}.projects.oryapis.com/" variables: @@ -9433,6 +9433,12 @@ components: \ well with JSON, SQL, and Swagger and is NULLable-" nullable: true type: object + kratos_courier_smtp_local_name: + description: |- + Configures the local_name to use in SMTP connections + + This governs the "courier.smtp.local_name" setting. + type: string kratos_courier_templates_recovery_code_invalid_email_body_html: description: |- Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template diff --git a/clients/client/go/api_courier.go b/clients/client/go/api_courier.go index 30c80a2fc68..45ed351e61b 100644 --- a/clients/client/go/api_courier.go +++ b/clients/client/go/api_courier.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_frontend.go b/clients/client/go/api_frontend.go index a83987c5abb..72ce5deb559 100644 --- a/clients/client/go/api_frontend.go +++ b/clients/client/go/api_frontend.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_identity.go b/clients/client/go/api_identity.go index 32639d2fd72..9446c7b701a 100644 --- a/clients/client/go/api_identity.go +++ b/clients/client/go/api_identity.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_jwk.go b/clients/client/go/api_jwk.go index 27b77c90294..3022a3d04b2 100644 --- a/clients/client/go/api_jwk.go +++ b/clients/client/go/api_jwk.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_metadata.go b/clients/client/go/api_metadata.go index e2ac3ad487b..29dded5c9a8 100644 --- a/clients/client/go/api_metadata.go +++ b/clients/client/go/api_metadata.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_o_auth2.go b/clients/client/go/api_o_auth2.go index 23912f22653..d80d1c47bc4 100644 --- a/clients/client/go/api_o_auth2.go +++ b/clients/client/go/api_o_auth2.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_oidc.go b/clients/client/go/api_oidc.go index 6ac85b98d71..0e922c65388 100644 --- a/clients/client/go/api_oidc.go +++ b/clients/client/go/api_oidc.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_permission.go b/clients/client/go/api_permission.go index 6516769b1ac..944cd645965 100644 --- a/clients/client/go/api_permission.go +++ b/clients/client/go/api_permission.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_project.go b/clients/client/go/api_project.go index 60840353007..db99c27c481 100644 --- a/clients/client/go/api_project.go +++ b/clients/client/go/api_project.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_relationship.go b/clients/client/go/api_relationship.go index 10348af6952..8823cf668ef 100644 --- a/clients/client/go/api_relationship.go +++ b/clients/client/go/api_relationship.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/api_wellknown.go b/clients/client/go/api_wellknown.go index a79ea326c49..eebbea6e020 100644 --- a/clients/client/go/api_wellknown.go +++ b/clients/client/go/api_wellknown.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/client.go b/clients/client/go/client.go index 9e35da854be..a25c5222a3a 100644 --- a/clients/client/go/client.go +++ b/clients/client/go/client.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ @@ -42,7 +42,7 @@ var ( xmlCheck = regexp.MustCompile(`(?i:(?:application|text)/xml)`) ) -// APIClient manages communication with the Ory APIs API vv1.1.44 +// APIClient manages communication with the Ory APIs API vv1.1.45 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/clients/client/go/configuration.go b/clients/client/go/configuration.go index c9bb3879009..7167952a358 100644 --- a/clients/client/go/configuration.go +++ b/clients/client/go/configuration.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/docs/NormalizedProjectRevision.md b/clients/client/go/docs/NormalizedProjectRevision.md index 81e6466b1a1..60c8883e500 100644 --- a/clients/client/go/docs/NormalizedProjectRevision.md +++ b/clients/client/go/docs/NormalizedProjectRevision.md @@ -54,6 +54,7 @@ Name | Type | Description | Notes **KratosCourierSmtpFromAddress** | Pointer to **string** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] **KratosCourierSmtpFromName** | Pointer to **string** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] **KratosCourierSmtpHeaders** | Pointer to **map[string]interface{}** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] +**KratosCourierSmtpLocalName** | Pointer to **string** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] **KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml** | Pointer to **string** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] **KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext** | Pointer to **string** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] **KratosCourierTemplatesRecoveryCodeInvalidEmailSubject** | Pointer to **string** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] @@ -1449,6 +1450,31 @@ HasKratosCourierSmtpHeaders returns a boolean if a field has been set. `func (o *NormalizedProjectRevision) UnsetKratosCourierSmtpHeaders()` UnsetKratosCourierSmtpHeaders ensures that no value is present for KratosCourierSmtpHeaders, not even an explicit nil +### GetKratosCourierSmtpLocalName + +`func (o *NormalizedProjectRevision) GetKratosCourierSmtpLocalName() string` + +GetKratosCourierSmtpLocalName returns the KratosCourierSmtpLocalName field if non-nil, zero value otherwise. + +### GetKratosCourierSmtpLocalNameOk + +`func (o *NormalizedProjectRevision) GetKratosCourierSmtpLocalNameOk() (*string, bool)` + +GetKratosCourierSmtpLocalNameOk returns a tuple with the KratosCourierSmtpLocalName field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetKratosCourierSmtpLocalName + +`func (o *NormalizedProjectRevision) SetKratosCourierSmtpLocalName(v string)` + +SetKratosCourierSmtpLocalName sets KratosCourierSmtpLocalName field to given value. + +### HasKratosCourierSmtpLocalName + +`func (o *NormalizedProjectRevision) HasKratosCourierSmtpLocalName() bool` + +HasKratosCourierSmtpLocalName returns a boolean if a field has been set. + ### GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml `func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml() string` diff --git a/clients/client/go/model_accept_o_auth2_consent_request.go b/clients/client/go/model_accept_o_auth2_consent_request.go index 58bff34c71f..2d23f0bc9fb 100644 --- a/clients/client/go/model_accept_o_auth2_consent_request.go +++ b/clients/client/go/model_accept_o_auth2_consent_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_accept_o_auth2_consent_request_session.go b/clients/client/go/model_accept_o_auth2_consent_request_session.go index a700d227016..231151bb652 100644 --- a/clients/client/go/model_accept_o_auth2_consent_request_session.go +++ b/clients/client/go/model_accept_o_auth2_consent_request_session.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_accept_o_auth2_login_request.go b/clients/client/go/model_accept_o_auth2_login_request.go index aa693a9a07d..3dc81bc066b 100644 --- a/clients/client/go/model_accept_o_auth2_login_request.go +++ b/clients/client/go/model_accept_o_auth2_login_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_active_project_in_console.go b/clients/client/go/model_active_project_in_console.go index 5a1a3100f78..c6614748073 100644 --- a/clients/client/go/model_active_project_in_console.go +++ b/clients/client/go/model_active_project_in_console.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_authenticator_assurance_level.go b/clients/client/go/model_authenticator_assurance_level.go index 8111ababc58..d7f790b8f61 100644 --- a/clients/client/go/model_authenticator_assurance_level.go +++ b/clients/client/go/model_authenticator_assurance_level.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_batch_patch_identities_response.go b/clients/client/go/model_batch_patch_identities_response.go index 8facb62ea51..bb04680bf32 100644 --- a/clients/client/go/model_batch_patch_identities_response.go +++ b/clients/client/go/model_batch_patch_identities_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_check_opl_syntax_result.go b/clients/client/go/model_check_opl_syntax_result.go index 6be5a036b64..0471a7212da 100644 --- a/clients/client/go/model_check_opl_syntax_result.go +++ b/clients/client/go/model_check_opl_syntax_result.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_check_permission_result.go b/clients/client/go/model_check_permission_result.go index 31aeed049fb..2b45136b242 100644 --- a/clients/client/go/model_check_permission_result.go +++ b/clients/client/go/model_check_permission_result.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_cloud_account.go b/clients/client/go/model_cloud_account.go index 3541bd07b49..1d67a8efbf3 100644 --- a/clients/client/go/model_cloud_account.go +++ b/clients/client/go/model_cloud_account.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_continue_with.go b/clients/client/go/model_continue_with.go index a2317d5373b..31fcca4bb21 100644 --- a/clients/client/go/model_continue_with.go +++ b/clients/client/go/model_continue_with.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_continue_with_set_ory_session_token.go b/clients/client/go/model_continue_with_set_ory_session_token.go index 4e722c98b6d..592596e82bb 100644 --- a/clients/client/go/model_continue_with_set_ory_session_token.go +++ b/clients/client/go/model_continue_with_set_ory_session_token.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_continue_with_verification_ui.go b/clients/client/go/model_continue_with_verification_ui.go index 4508e881a0e..db978984883 100644 --- a/clients/client/go/model_continue_with_verification_ui.go +++ b/clients/client/go/model_continue_with_verification_ui.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_continue_with_verification_ui_flow.go b/clients/client/go/model_continue_with_verification_ui_flow.go index 0f0d8506902..2e498938ba4 100644 --- a/clients/client/go/model_continue_with_verification_ui_flow.go +++ b/clients/client/go/model_continue_with_verification_ui_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_cors.go b/clients/client/go/model_cors.go index 917b4b3136a..88588c4ca9d 100644 --- a/clients/client/go/model_cors.go +++ b/clients/client/go/model_cors.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_courier_message_status.go b/clients/client/go/model_courier_message_status.go index 26dcfac31cb..c36d1fc638f 100644 --- a/clients/client/go/model_courier_message_status.go +++ b/clients/client/go/model_courier_message_status.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_courier_message_type.go b/clients/client/go/model_courier_message_type.go index 8bfedc19e03..8113b349511 100644 --- a/clients/client/go/model_courier_message_type.go +++ b/clients/client/go/model_courier_message_type.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_custom_domain_body.go b/clients/client/go/model_create_custom_domain_body.go index 3184d80fd30..d9197351267 100644 --- a/clients/client/go/model_create_custom_domain_body.go +++ b/clients/client/go/model_create_custom_domain_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_identity_body.go b/clients/client/go/model_create_identity_body.go index 1dfaf0c48b6..93067d0f8e1 100644 --- a/clients/client/go/model_create_identity_body.go +++ b/clients/client/go/model_create_identity_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_invite_response.go b/clients/client/go/model_create_invite_response.go index 661f2138871..72a7b89557d 100644 --- a/clients/client/go/model_create_invite_response.go +++ b/clients/client/go/model_create_invite_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_json_web_key_set.go b/clients/client/go/model_create_json_web_key_set.go index d6c63b43345..942e28c6fa3 100644 --- a/clients/client/go/model_create_json_web_key_set.go +++ b/clients/client/go/model_create_json_web_key_set.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_project_api_key_request.go b/clients/client/go/model_create_project_api_key_request.go index 0568e10ac0b..88a13603ffa 100644 --- a/clients/client/go/model_create_project_api_key_request.go +++ b/clients/client/go/model_create_project_api_key_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_project_body.go b/clients/client/go/model_create_project_body.go index d9c72deb4bd..b75b967ec5e 100644 --- a/clients/client/go/model_create_project_body.go +++ b/clients/client/go/model_create_project_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_project_branding.go b/clients/client/go/model_create_project_branding.go index 8257ff40b4b..2b9f43c73bc 100644 --- a/clients/client/go/model_create_project_branding.go +++ b/clients/client/go/model_create_project_branding.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_project_member_invite_body.go b/clients/client/go/model_create_project_member_invite_body.go index 32f548d910e..f60b5f0066d 100644 --- a/clients/client/go/model_create_project_member_invite_body.go +++ b/clients/client/go/model_create_project_member_invite_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_recovery_code_for_identity_body.go b/clients/client/go/model_create_recovery_code_for_identity_body.go index 8f12bc2d33c..3d8b4ea4414 100644 --- a/clients/client/go/model_create_recovery_code_for_identity_body.go +++ b/clients/client/go/model_create_recovery_code_for_identity_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_recovery_link_for_identity_body.go b/clients/client/go/model_create_recovery_link_for_identity_body.go index bb7c77bb03e..1f893290c06 100644 --- a/clients/client/go/model_create_recovery_link_for_identity_body.go +++ b/clients/client/go/model_create_recovery_link_for_identity_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_relationship_body.go b/clients/client/go/model_create_relationship_body.go index cd9ee132e57..249545d679b 100644 --- a/clients/client/go/model_create_relationship_body.go +++ b/clients/client/go/model_create_relationship_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_subscription_body.go b/clients/client/go/model_create_subscription_body.go index 4243d0057c3..3ef3e8ca148 100644 --- a/clients/client/go/model_create_subscription_body.go +++ b/clients/client/go/model_create_subscription_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_verifiable_credential_request_body.go b/clients/client/go/model_create_verifiable_credential_request_body.go index dd12a68a368..df0bc006c15 100644 --- a/clients/client/go/model_create_verifiable_credential_request_body.go +++ b/clients/client/go/model_create_verifiable_credential_request_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_credential_supported_draft00.go b/clients/client/go/model_credential_supported_draft00.go index 559207169c9..d9e7472259b 100644 --- a/clients/client/go/model_credential_supported_draft00.go +++ b/clients/client/go/model_credential_supported_draft00.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_custom_domain.go b/clients/client/go/model_custom_domain.go index 6e1b9ef6a8c..82cab1defce 100644 --- a/clients/client/go/model_custom_domain.go +++ b/clients/client/go/model_custom_domain.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_delete_my_sessions_count.go b/clients/client/go/model_delete_my_sessions_count.go index 6f727e62857..bb0c28ba24e 100644 --- a/clients/client/go/model_delete_my_sessions_count.go +++ b/clients/client/go/model_delete_my_sessions_count.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_email_template_data.go b/clients/client/go/model_email_template_data.go index 98ef520e425..b78b8837a1c 100644 --- a/clients/client/go/model_email_template_data.go +++ b/clients/client/go/model_email_template_data.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_email_template_data_body.go b/clients/client/go/model_email_template_data_body.go index 17a7bf85a7a..c1309c96b87 100644 --- a/clients/client/go/model_email_template_data_body.go +++ b/clients/client/go/model_email_template_data_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_error_authenticator_assurance_level_not_satisfied.go b/clients/client/go/model_error_authenticator_assurance_level_not_satisfied.go index 014139a6c9e..cfba721fb70 100644 --- a/clients/client/go/model_error_authenticator_assurance_level_not_satisfied.go +++ b/clients/client/go/model_error_authenticator_assurance_level_not_satisfied.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_error_browser_location_change_required.go b/clients/client/go/model_error_browser_location_change_required.go index 6bcac8f4905..9072ea131ec 100644 --- a/clients/client/go/model_error_browser_location_change_required.go +++ b/clients/client/go/model_error_browser_location_change_required.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_error_flow_replaced.go b/clients/client/go/model_error_flow_replaced.go index 9e786b2e773..a40847ae531 100644 --- a/clients/client/go/model_error_flow_replaced.go +++ b/clients/client/go/model_error_flow_replaced.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_error_generic.go b/clients/client/go/model_error_generic.go index a3e89e8f8a6..d7a5645da91 100644 --- a/clients/client/go/model_error_generic.go +++ b/clients/client/go/model_error_generic.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_error_o_auth2.go b/clients/client/go/model_error_o_auth2.go index 9fd5ed0b7aa..0f1ef3845da 100644 --- a/clients/client/go/model_error_o_auth2.go +++ b/clients/client/go/model_error_o_auth2.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_expanded_permission_tree.go b/clients/client/go/model_expanded_permission_tree.go index 9133a2c9459..d01ea7f31d1 100644 --- a/clients/client/go/model_expanded_permission_tree.go +++ b/clients/client/go/model_expanded_permission_tree.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_flow_error.go b/clients/client/go/model_flow_error.go index 9e86a586450..3a037b2e990 100644 --- a/clients/client/go/model_flow_error.go +++ b/clients/client/go/model_flow_error.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_generic_error.go b/clients/client/go/model_generic_error.go index d1e5bbda5f1..625b43ed9bd 100644 --- a/clients/client/go/model_generic_error.go +++ b/clients/client/go/model_generic_error.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_generic_error_content.go b/clients/client/go/model_generic_error_content.go index b51529248c1..a3fc69dc86d 100644 --- a/clients/client/go/model_generic_error_content.go +++ b/clients/client/go/model_generic_error_content.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_generic_usage.go b/clients/client/go/model_generic_usage.go index 7723f469d39..cc3d75f4a01 100644 --- a/clients/client/go/model_generic_usage.go +++ b/clients/client/go/model_generic_usage.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_get_managed_identity_schema_location.go b/clients/client/go/model_get_managed_identity_schema_location.go index 238cd747f57..72ffd7af36e 100644 --- a/clients/client/go/model_get_managed_identity_schema_location.go +++ b/clients/client/go/model_get_managed_identity_schema_location.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_get_project_metrics_response.go b/clients/client/go/model_get_project_metrics_response.go index f1464c4ced0..1e1bdcd1ebb 100644 --- a/clients/client/go/model_get_project_metrics_response.go +++ b/clients/client/go/model_get_project_metrics_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_get_version_200_response.go b/clients/client/go/model_get_version_200_response.go index 082fb86c76b..95d70c32b80 100644 --- a/clients/client/go/model_get_version_200_response.go +++ b/clients/client/go/model_get_version_200_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_health_not_ready_status.go b/clients/client/go/model_health_not_ready_status.go index 61233d5bef2..2e724658f87 100644 --- a/clients/client/go/model_health_not_ready_status.go +++ b/clients/client/go/model_health_not_ready_status.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_health_status.go b/clients/client/go/model_health_status.go index fa70aab2bff..c1a22b32ef7 100644 --- a/clients/client/go/model_health_status.go +++ b/clients/client/go/model_health_status.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity.go b/clients/client/go/model_identity.go index 7b96b53e08d..96a8851dfce 100644 --- a/clients/client/go/model_identity.go +++ b/clients/client/go/model_identity.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_credentials.go b/clients/client/go/model_identity_credentials.go index fdb4e712be4..87c1b7e7929 100644 --- a/clients/client/go/model_identity_credentials.go +++ b/clients/client/go/model_identity_credentials.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_credentials_oidc.go b/clients/client/go/model_identity_credentials_oidc.go index 2a8881b0e5f..c19e73bc8f8 100644 --- a/clients/client/go/model_identity_credentials_oidc.go +++ b/clients/client/go/model_identity_credentials_oidc.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_credentials_oidc_provider.go b/clients/client/go/model_identity_credentials_oidc_provider.go index 5d08aacc25c..74139b37f1e 100644 --- a/clients/client/go/model_identity_credentials_oidc_provider.go +++ b/clients/client/go/model_identity_credentials_oidc_provider.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_credentials_password.go b/clients/client/go/model_identity_credentials_password.go index 34e83a5a908..b1abe476245 100644 --- a/clients/client/go/model_identity_credentials_password.go +++ b/clients/client/go/model_identity_credentials_password.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_credentials_type.go b/clients/client/go/model_identity_credentials_type.go index 230ec4cd8a5..eb5544d153d 100644 --- a/clients/client/go/model_identity_credentials_type.go +++ b/clients/client/go/model_identity_credentials_type.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_patch.go b/clients/client/go/model_identity_patch.go index b5d38069cac..2c6128ab0e9 100644 --- a/clients/client/go/model_identity_patch.go +++ b/clients/client/go/model_identity_patch.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_patch_response.go b/clients/client/go/model_identity_patch_response.go index 4b7173a91f2..dcd3ae96b47 100644 --- a/clients/client/go/model_identity_patch_response.go +++ b/clients/client/go/model_identity_patch_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_schema_container.go b/clients/client/go/model_identity_schema_container.go index 2191ed59fe2..e094a0fba50 100644 --- a/clients/client/go/model_identity_schema_container.go +++ b/clients/client/go/model_identity_schema_container.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_schema_preset.go b/clients/client/go/model_identity_schema_preset.go index b30c722673f..af99df80220 100644 --- a/clients/client/go/model_identity_schema_preset.go +++ b/clients/client/go/model_identity_schema_preset.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_state.go b/clients/client/go/model_identity_state.go index b27017ac270..553e9a9b4d0 100644 --- a/clients/client/go/model_identity_state.go +++ b/clients/client/go/model_identity_state.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_with_credentials.go b/clients/client/go/model_identity_with_credentials.go index a697bd68a87..ca643b72987 100644 --- a/clients/client/go/model_identity_with_credentials.go +++ b/clients/client/go/model_identity_with_credentials.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_with_credentials_oidc.go b/clients/client/go/model_identity_with_credentials_oidc.go index e5cfbac9c26..d1670472f82 100644 --- a/clients/client/go/model_identity_with_credentials_oidc.go +++ b/clients/client/go/model_identity_with_credentials_oidc.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_with_credentials_oidc_config.go b/clients/client/go/model_identity_with_credentials_oidc_config.go index 6170a7ed1fe..c1efc8bed8b 100644 --- a/clients/client/go/model_identity_with_credentials_oidc_config.go +++ b/clients/client/go/model_identity_with_credentials_oidc_config.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_with_credentials_oidc_config_provider.go b/clients/client/go/model_identity_with_credentials_oidc_config_provider.go index d4b9e6d786e..31c5b180fba 100644 --- a/clients/client/go/model_identity_with_credentials_oidc_config_provider.go +++ b/clients/client/go/model_identity_with_credentials_oidc_config_provider.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_with_credentials_password.go b/clients/client/go/model_identity_with_credentials_password.go index d9953ac1196..73e7c02d962 100644 --- a/clients/client/go/model_identity_with_credentials_password.go +++ b/clients/client/go/model_identity_with_credentials_password.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_with_credentials_password_config.go b/clients/client/go/model_identity_with_credentials_password_config.go index d603ef70c41..af37978c524 100644 --- a/clients/client/go/model_identity_with_credentials_password_config.go +++ b/clients/client/go/model_identity_with_credentials_password_config.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_internal_get_project_branding_body.go b/clients/client/go/model_internal_get_project_branding_body.go index 7f77de65f23..9c7742152bd 100644 --- a/clients/client/go/model_internal_get_project_branding_body.go +++ b/clients/client/go/model_internal_get_project_branding_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_internal_is_ax_welcome_screen_enabled_for_project_body.go b/clients/client/go/model_internal_is_ax_welcome_screen_enabled_for_project_body.go index e795799b8a0..130967ab7ca 100644 --- a/clients/client/go/model_internal_is_ax_welcome_screen_enabled_for_project_body.go +++ b/clients/client/go/model_internal_is_ax_welcome_screen_enabled_for_project_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_internal_is_owner_for_project_by_slug_body.go b/clients/client/go/model_internal_is_owner_for_project_by_slug_body.go index 3dcbadbcb3e..258c78657ae 100644 --- a/clients/client/go/model_internal_is_owner_for_project_by_slug_body.go +++ b/clients/client/go/model_internal_is_owner_for_project_by_slug_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_internal_is_owner_for_project_by_slug_response.go b/clients/client/go/model_internal_is_owner_for_project_by_slug_response.go index 23f883752cf..9dd55857681 100644 --- a/clients/client/go/model_internal_is_owner_for_project_by_slug_response.go +++ b/clients/client/go/model_internal_is_owner_for_project_by_slug_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_internal_provision_mock_subscription.go b/clients/client/go/model_internal_provision_mock_subscription.go index bbfc771c512..351b9bbc385 100644 --- a/clients/client/go/model_internal_provision_mock_subscription.go +++ b/clients/client/go/model_internal_provision_mock_subscription.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_introspected_o_auth2_token.go b/clients/client/go/model_introspected_o_auth2_token.go index 9049865a994..9894c850399 100644 --- a/clients/client/go/model_introspected_o_auth2_token.go +++ b/clients/client/go/model_introspected_o_auth2_token.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_is_owner_for_project_by_slug.go b/clients/client/go/model_is_owner_for_project_by_slug.go index 4a7c144103e..8274950ddb5 100644 --- a/clients/client/go/model_is_owner_for_project_by_slug.go +++ b/clients/client/go/model_is_owner_for_project_by_slug.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_is_ready_200_response.go b/clients/client/go/model_is_ready_200_response.go index 1da75c381d5..9476c5298b8 100644 --- a/clients/client/go/model_is_ready_200_response.go +++ b/clients/client/go/model_is_ready_200_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_is_ready_503_response.go b/clients/client/go/model_is_ready_503_response.go index 96778cd7349..edf30b22ed7 100644 --- a/clients/client/go/model_is_ready_503_response.go +++ b/clients/client/go/model_is_ready_503_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_json_patch.go b/clients/client/go/model_json_patch.go index 2f36704a14e..45d0958bd8a 100644 --- a/clients/client/go/model_json_patch.go +++ b/clients/client/go/model_json_patch.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_json_web_key.go b/clients/client/go/model_json_web_key.go index 51512f6e25f..8030165b2f0 100644 --- a/clients/client/go/model_json_web_key.go +++ b/clients/client/go/model_json_web_key.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_json_web_key_set.go b/clients/client/go/model_json_web_key_set.go index dd397adcc72..6674ce6cc0f 100644 --- a/clients/client/go/model_json_web_key_set.go +++ b/clients/client/go/model_json_web_key_set.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_keto_namespace.go b/clients/client/go/model_keto_namespace.go index c641fa33d37..99ced1fa4f5 100644 --- a/clients/client/go/model_keto_namespace.go +++ b/clients/client/go/model_keto_namespace.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_login_flow.go b/clients/client/go/model_login_flow.go index b380a7a7889..afd1e141d48 100644 --- a/clients/client/go/model_login_flow.go +++ b/clients/client/go/model_login_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_logout_flow.go b/clients/client/go/model_logout_flow.go index fd7ab255e5e..674ec4e26a8 100644 --- a/clients/client/go/model_logout_flow.go +++ b/clients/client/go/model_logout_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_managed_identity_schema.go b/clients/client/go/model_managed_identity_schema.go index f8d9ec85a50..4af5d8768c1 100644 --- a/clients/client/go/model_managed_identity_schema.go +++ b/clients/client/go/model_managed_identity_schema.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_managed_identity_schema_validation_result.go b/clients/client/go/model_managed_identity_schema_validation_result.go index 46987a8a7fa..5374b5083c7 100644 --- a/clients/client/go/model_managed_identity_schema_validation_result.go +++ b/clients/client/go/model_managed_identity_schema_validation_result.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_member_invite.go b/clients/client/go/model_member_invite.go index bd66ec51d02..24a373475e7 100644 --- a/clients/client/go/model_member_invite.go +++ b/clients/client/go/model_member_invite.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_message.go b/clients/client/go/model_message.go index f6871439645..63f65cd4a0f 100644 --- a/clients/client/go/model_message.go +++ b/clients/client/go/model_message.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_message_dispatch.go b/clients/client/go/model_message_dispatch.go index f896573821b..d02ddc6b85b 100644 --- a/clients/client/go/model_message_dispatch.go +++ b/clients/client/go/model_message_dispatch.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_metrics_datapoint.go b/clients/client/go/model_metrics_datapoint.go index 6c8a98d9e2a..446b00f77a5 100644 --- a/clients/client/go/model_metrics_datapoint.go +++ b/clients/client/go/model_metrics_datapoint.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_namespace.go b/clients/client/go/model_namespace.go index 940958b6b60..ed339191593 100644 --- a/clients/client/go/model_namespace.go +++ b/clients/client/go/model_namespace.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_needs_privileged_session_error.go b/clients/client/go/model_needs_privileged_session_error.go index 61589574eb8..8102cb4326d 100644 --- a/clients/client/go/model_needs_privileged_session_error.go +++ b/clients/client/go/model_needs_privileged_session_error.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_normalized_project.go b/clients/client/go/model_normalized_project.go index d6db63f9cc9..a7753b25fbe 100644 --- a/clients/client/go/model_normalized_project.go +++ b/clients/client/go/model_normalized_project.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_normalized_project_revision.go b/clients/client/go/model_normalized_project_revision.go index 4072ed060d9..abebf067dad 100644 --- a/clients/client/go/model_normalized_project_revision.go +++ b/clients/client/go/model_normalized_project_revision.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ @@ -108,6 +108,8 @@ type NormalizedProjectRevision struct { KratosCourierSmtpFromName *string `json:"kratos_courier_smtp_from_name,omitempty"` // NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- KratosCourierSmtpHeaders map[string]interface{} `json:"kratos_courier_smtp_headers,omitempty"` + // Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + KratosCourierSmtpLocalName *string `json:"kratos_courier_smtp_local_name,omitempty"` // Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_code_invalid_email_body_html,omitempty"` // Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. @@ -1974,6 +1976,38 @@ func (o *NormalizedProjectRevision) SetKratosCourierSmtpHeaders(v map[string]int o.KratosCourierSmtpHeaders = v } +// GetKratosCourierSmtpLocalName returns the KratosCourierSmtpLocalName field value if set, zero value otherwise. +func (o *NormalizedProjectRevision) GetKratosCourierSmtpLocalName() string { + if o == nil || o.KratosCourierSmtpLocalName == nil { + var ret string + return ret + } + return *o.KratosCourierSmtpLocalName +} + +// GetKratosCourierSmtpLocalNameOk returns a tuple with the KratosCourierSmtpLocalName field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *NormalizedProjectRevision) GetKratosCourierSmtpLocalNameOk() (*string, bool) { + if o == nil || o.KratosCourierSmtpLocalName == nil { + return nil, false + } + return o.KratosCourierSmtpLocalName, true +} + +// HasKratosCourierSmtpLocalName returns a boolean if a field has been set. +func (o *NormalizedProjectRevision) HasKratosCourierSmtpLocalName() bool { + if o != nil && o.KratosCourierSmtpLocalName != nil { + return true + } + + return false +} + +// SetKratosCourierSmtpLocalName gets a reference to the given string and assigns it to the KratosCourierSmtpLocalName field. +func (o *NormalizedProjectRevision) SetKratosCourierSmtpLocalName(v string) { + o.KratosCourierSmtpLocalName = &v +} + // GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml returns the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field value if set, zero value otherwise. func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml() string { if o == nil || o.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml == nil { @@ -5479,6 +5513,9 @@ func (o NormalizedProjectRevision) MarshalJSON() ([]byte, error) { if o.KratosCourierSmtpHeaders != nil { toSerialize["kratos_courier_smtp_headers"] = o.KratosCourierSmtpHeaders } + if o.KratosCourierSmtpLocalName != nil { + toSerialize["kratos_courier_smtp_local_name"] = o.KratosCourierSmtpLocalName + } if o.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml != nil { toSerialize["kratos_courier_templates_recovery_code_invalid_email_body_html"] = o.KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml } @@ -5862,6 +5899,7 @@ func (o *NormalizedProjectRevision) UnmarshalJSON(bytes []byte) (err error) { delete(additionalProperties, "kratos_courier_smtp_from_address") delete(additionalProperties, "kratos_courier_smtp_from_name") delete(additionalProperties, "kratos_courier_smtp_headers") + delete(additionalProperties, "kratos_courier_smtp_local_name") delete(additionalProperties, "kratos_courier_templates_recovery_code_invalid_email_body_html") delete(additionalProperties, "kratos_courier_templates_recovery_code_invalid_email_body_plaintext") delete(additionalProperties, "kratos_courier_templates_recovery_code_invalid_email_subject") diff --git a/clients/client/go/model_normalized_project_revision_hook.go b/clients/client/go/model_normalized_project_revision_hook.go index a83b3a2d90f..b007f13a065 100644 --- a/clients/client/go/model_normalized_project_revision_hook.go +++ b/clients/client/go/model_normalized_project_revision_hook.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_normalized_project_revision_identity_schema.go b/clients/client/go/model_normalized_project_revision_identity_schema.go index 88f63d9a149..b14e6d54fa8 100644 --- a/clients/client/go/model_normalized_project_revision_identity_schema.go +++ b/clients/client/go/model_normalized_project_revision_identity_schema.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_normalized_project_revision_third_party_provider.go b/clients/client/go/model_normalized_project_revision_third_party_provider.go index e8bb8f3ecc9..2169244f8eb 100644 --- a/clients/client/go/model_normalized_project_revision_third_party_provider.go +++ b/clients/client/go/model_normalized_project_revision_third_party_provider.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_client.go b/clients/client/go/model_o_auth2_client.go index b91a7db1107..be3ff2cbfce 100644 --- a/clients/client/go/model_o_auth2_client.go +++ b/clients/client/go/model_o_auth2_client.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_client_token_lifespans.go b/clients/client/go/model_o_auth2_client_token_lifespans.go index 4e098105f2a..8f2df5f3039 100644 --- a/clients/client/go/model_o_auth2_client_token_lifespans.go +++ b/clients/client/go/model_o_auth2_client_token_lifespans.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_consent_request.go b/clients/client/go/model_o_auth2_consent_request.go index 3f72ce1ee92..0374ae8d64d 100644 --- a/clients/client/go/model_o_auth2_consent_request.go +++ b/clients/client/go/model_o_auth2_consent_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_consent_request_open_id_connect_context.go b/clients/client/go/model_o_auth2_consent_request_open_id_connect_context.go index ce741dda933..4e8291c6519 100644 --- a/clients/client/go/model_o_auth2_consent_request_open_id_connect_context.go +++ b/clients/client/go/model_o_auth2_consent_request_open_id_connect_context.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_consent_session.go b/clients/client/go/model_o_auth2_consent_session.go index 8427a2952bb..f4fe614fc7f 100644 --- a/clients/client/go/model_o_auth2_consent_session.go +++ b/clients/client/go/model_o_auth2_consent_session.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_consent_session_expires_at.go b/clients/client/go/model_o_auth2_consent_session_expires_at.go index 7f7453d0220..b5a0f1df6c8 100644 --- a/clients/client/go/model_o_auth2_consent_session_expires_at.go +++ b/clients/client/go/model_o_auth2_consent_session_expires_at.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_login_request.go b/clients/client/go/model_o_auth2_login_request.go index 1e58cca6cf3..a6d39f93115 100644 --- a/clients/client/go/model_o_auth2_login_request.go +++ b/clients/client/go/model_o_auth2_login_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_logout_request.go b/clients/client/go/model_o_auth2_logout_request.go index 67b1ddb5285..a936bc6b8b8 100644 --- a/clients/client/go/model_o_auth2_logout_request.go +++ b/clients/client/go/model_o_auth2_logout_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_redirect_to.go b/clients/client/go/model_o_auth2_redirect_to.go index 2cc78f81cde..c060f004323 100644 --- a/clients/client/go/model_o_auth2_redirect_to.go +++ b/clients/client/go/model_o_auth2_redirect_to.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_o_auth2_token_exchange.go b/clients/client/go/model_o_auth2_token_exchange.go index 5d738f1e035..1f8c49d5ac7 100644 --- a/clients/client/go/model_o_auth2_token_exchange.go +++ b/clients/client/go/model_o_auth2_token_exchange.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_oidc_configuration.go b/clients/client/go/model_oidc_configuration.go index 8557fd5742c..20980957de4 100644 --- a/clients/client/go/model_oidc_configuration.go +++ b/clients/client/go/model_oidc_configuration.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_oidc_user_info.go b/clients/client/go/model_oidc_user_info.go index 076fc088b25..1ae117a41eb 100644 --- a/clients/client/go/model_oidc_user_info.go +++ b/clients/client/go/model_oidc_user_info.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_pagination.go b/clients/client/go/model_pagination.go index 92f91c5bf0d..3096f77d049 100644 --- a/clients/client/go/model_pagination.go +++ b/clients/client/go/model_pagination.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_pagination_headers.go b/clients/client/go/model_pagination_headers.go index ab9a2433597..06c33843019 100644 --- a/clients/client/go/model_pagination_headers.go +++ b/clients/client/go/model_pagination_headers.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_parse_error.go b/clients/client/go/model_parse_error.go index 04480188ec1..28af3810ab9 100644 --- a/clients/client/go/model_parse_error.go +++ b/clients/client/go/model_parse_error.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_patch_identities_body.go b/clients/client/go/model_patch_identities_body.go index b1f0793a2c4..4aeeae225ff 100644 --- a/clients/client/go/model_patch_identities_body.go +++ b/clients/client/go/model_patch_identities_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_perform_native_logout_body.go b/clients/client/go/model_perform_native_logout_body.go index 9df86f7e580..a555def50f5 100644 --- a/clients/client/go/model_perform_native_logout_body.go +++ b/clients/client/go/model_perform_native_logout_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_plan.go b/clients/client/go/model_plan.go index fd1f6a0ec52..f115f69f560 100644 --- a/clients/client/go/model_plan.go +++ b/clients/client/go/model_plan.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_plan_details.go b/clients/client/go/model_plan_details.go index b9cb9f7a52c..0a67d32a2e6 100644 --- a/clients/client/go/model_plan_details.go +++ b/clients/client/go/model_plan_details.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_post_check_permission_body.go b/clients/client/go/model_post_check_permission_body.go index d76268b9834..852c7c06b08 100644 --- a/clients/client/go/model_post_check_permission_body.go +++ b/clients/client/go/model_post_check_permission_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_post_check_permission_or_error_body.go b/clients/client/go/model_post_check_permission_or_error_body.go index efb8a89e202..d074eb22635 100644 --- a/clients/client/go/model_post_check_permission_or_error_body.go +++ b/clients/client/go/model_post_check_permission_or_error_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project.go b/clients/client/go/model_project.go index 951b492dafa..2e3c728228c 100644 --- a/clients/client/go/model_project.go +++ b/clients/client/go/model_project.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_api_key.go b/clients/client/go/model_project_api_key.go index eb667c41881..f95e07777fd 100644 --- a/clients/client/go/model_project_api_key.go +++ b/clients/client/go/model_project_api_key.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_branding.go b/clients/client/go/model_project_branding.go index 519819504c2..d36172bdbbf 100644 --- a/clients/client/go/model_project_branding.go +++ b/clients/client/go/model_project_branding.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_branding_colors.go b/clients/client/go/model_project_branding_colors.go index b972b4df457..ba4e94e3bac 100644 --- a/clients/client/go/model_project_branding_colors.go +++ b/clients/client/go/model_project_branding_colors.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_branding_theme.go b/clients/client/go/model_project_branding_theme.go index 60a2a9bb224..c35d07f2234 100644 --- a/clients/client/go/model_project_branding_theme.go +++ b/clients/client/go/model_project_branding_theme.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_host.go b/clients/client/go/model_project_host.go index bb96ada7c7d..ab63b2d9f0c 100644 --- a/clients/client/go/model_project_host.go +++ b/clients/client/go/model_project_host.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_metadata.go b/clients/client/go/model_project_metadata.go index 92913dce680..5ea58ed5845 100644 --- a/clients/client/go/model_project_metadata.go +++ b/clients/client/go/model_project_metadata.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_service_identity.go b/clients/client/go/model_project_service_identity.go index 9feeb20526b..16a5c57e1a4 100644 --- a/clients/client/go/model_project_service_identity.go +++ b/clients/client/go/model_project_service_identity.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_service_o_auth2.go b/clients/client/go/model_project_service_o_auth2.go index 9c5c1c1bef3..940857cbb8a 100644 --- a/clients/client/go/model_project_service_o_auth2.go +++ b/clients/client/go/model_project_service_o_auth2.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_service_permission.go b/clients/client/go/model_project_service_permission.go index e04b1228542..416c6b8d4d5 100644 --- a/clients/client/go/model_project_service_permission.go +++ b/clients/client/go/model_project_service_permission.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_services.go b/clients/client/go/model_project_services.go index 48beed12d49..3e00fcae922 100644 --- a/clients/client/go/model_project_services.go +++ b/clients/client/go/model_project_services.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_quota_usage.go b/clients/client/go/model_quota_usage.go index 5512c423b47..2b233c32fad 100644 --- a/clients/client/go/model_quota_usage.go +++ b/clients/client/go/model_quota_usage.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_recovery_code_for_identity.go b/clients/client/go/model_recovery_code_for_identity.go index 7b750a282cc..ac3dcc0858c 100644 --- a/clients/client/go/model_recovery_code_for_identity.go +++ b/clients/client/go/model_recovery_code_for_identity.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_recovery_flow.go b/clients/client/go/model_recovery_flow.go index 6503140e760..d1b15a22def 100644 --- a/clients/client/go/model_recovery_flow.go +++ b/clients/client/go/model_recovery_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_recovery_flow_state.go b/clients/client/go/model_recovery_flow_state.go index f145a376ae2..1de6f6f3b14 100644 --- a/clients/client/go/model_recovery_flow_state.go +++ b/clients/client/go/model_recovery_flow_state.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_recovery_identity_address.go b/clients/client/go/model_recovery_identity_address.go index 4b3881bee34..83014b9cb30 100644 --- a/clients/client/go/model_recovery_identity_address.go +++ b/clients/client/go/model_recovery_identity_address.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_recovery_link_for_identity.go b/clients/client/go/model_recovery_link_for_identity.go index af132b6a034..12cafdbd877 100644 --- a/clients/client/go/model_recovery_link_for_identity.go +++ b/clients/client/go/model_recovery_link_for_identity.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_registration_flow.go b/clients/client/go/model_registration_flow.go index bb0ed424fc0..9d3a2be5aea 100644 --- a/clients/client/go/model_registration_flow.go +++ b/clients/client/go/model_registration_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_reject_o_auth2_request.go b/clients/client/go/model_reject_o_auth2_request.go index 53f05bc4238..4f8bc7bd00c 100644 --- a/clients/client/go/model_reject_o_auth2_request.go +++ b/clients/client/go/model_reject_o_auth2_request.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relation_query.go b/clients/client/go/model_relation_query.go index c0d7f201f8a..9989cafccef 100644 --- a/clients/client/go/model_relation_query.go +++ b/clients/client/go/model_relation_query.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationship.go b/clients/client/go/model_relationship.go index 3fe4076107c..0679ef2dd31 100644 --- a/clients/client/go/model_relationship.go +++ b/clients/client/go/model_relationship.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationship_namespaces.go b/clients/client/go/model_relationship_namespaces.go index 20d3612ebff..861154299f7 100644 --- a/clients/client/go/model_relationship_namespaces.go +++ b/clients/client/go/model_relationship_namespaces.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationship_patch.go b/clients/client/go/model_relationship_patch.go index 2205d2b53d7..a357f681ece 100644 --- a/clients/client/go/model_relationship_patch.go +++ b/clients/client/go/model_relationship_patch.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationships.go b/clients/client/go/model_relationships.go index a8eab26f0e7..53c7ad21a6d 100644 --- a/clients/client/go/model_relationships.go +++ b/clients/client/go/model_relationships.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_rfc6749_error_json.go b/clients/client/go/model_rfc6749_error_json.go index b645375aa27..2b50bb04aaa 100644 --- a/clients/client/go/model_rfc6749_error_json.go +++ b/clients/client/go/model_rfc6749_error_json.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_schema_patch.go b/clients/client/go/model_schema_patch.go index 0d38b33b011..ad887a5cc7b 100644 --- a/clients/client/go/model_schema_patch.go +++ b/clients/client/go/model_schema_patch.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_self_service_flow_expired_error.go b/clients/client/go/model_self_service_flow_expired_error.go index 73e5da00e97..a88e66fa089 100644 --- a/clients/client/go/model_self_service_flow_expired_error.go +++ b/clients/client/go/model_self_service_flow_expired_error.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_session.go b/clients/client/go/model_session.go index c167037acb2..2ea239f03f4 100644 --- a/clients/client/go/model_session.go +++ b/clients/client/go/model_session.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_session_authentication_method.go b/clients/client/go/model_session_authentication_method.go index 23419e632c6..cfc32c1dfd2 100644 --- a/clients/client/go/model_session_authentication_method.go +++ b/clients/client/go/model_session_authentication_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_session_device.go b/clients/client/go/model_session_device.go index fb572b04bec..7acfc0698bf 100644 --- a/clients/client/go/model_session_device.go +++ b/clients/client/go/model_session_device.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_set_active_project_in_console_body.go b/clients/client/go/model_set_active_project_in_console_body.go index dbb75874a64..6da5fc14d29 100644 --- a/clients/client/go/model_set_active_project_in_console_body.go +++ b/clients/client/go/model_set_active_project_in_console_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_set_custom_domain_body.go b/clients/client/go/model_set_custom_domain_body.go index c4630d14910..9ef917b5777 100644 --- a/clients/client/go/model_set_custom_domain_body.go +++ b/clients/client/go/model_set_custom_domain_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_set_project.go b/clients/client/go/model_set_project.go index 43d11ee9d42..b3ad2b01228 100644 --- a/clients/client/go/model_set_project.go +++ b/clients/client/go/model_set_project.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_set_project_branding_theme_body.go b/clients/client/go/model_set_project_branding_theme_body.go index 7a8400f9ab6..dcb2f50b986 100644 --- a/clients/client/go/model_set_project_branding_theme_body.go +++ b/clients/client/go/model_set_project_branding_theme_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_settings_flow.go b/clients/client/go/model_settings_flow.go index 67c8186b058..5877bb104eb 100644 --- a/clients/client/go/model_settings_flow.go +++ b/clients/client/go/model_settings_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_settings_flow_state.go b/clients/client/go/model_settings_flow_state.go index 92964f180d0..f1937227bb4 100644 --- a/clients/client/go/model_settings_flow_state.go +++ b/clients/client/go/model_settings_flow_state.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_source_position.go b/clients/client/go/model_source_position.go index a6ec97b94da..51be73d9c95 100644 --- a/clients/client/go/model_source_position.go +++ b/clients/client/go/model_source_position.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_stripe_customer.go b/clients/client/go/model_stripe_customer.go index a316ec6cb09..726d399d4c7 100644 --- a/clients/client/go/model_stripe_customer.go +++ b/clients/client/go/model_stripe_customer.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_subject_set.go b/clients/client/go/model_subject_set.go index d30a1ff4fb3..8e00999f30f 100644 --- a/clients/client/go/model_subject_set.go +++ b/clients/client/go/model_subject_set.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_subscription.go b/clients/client/go/model_subscription.go index 133a361a642..db20964b3ef 100644 --- a/clients/client/go/model_subscription.go +++ b/clients/client/go/model_subscription.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_successful_code_exchange_response.go b/clients/client/go/model_successful_code_exchange_response.go index ab040184a9b..de6c7a068ce 100644 --- a/clients/client/go/model_successful_code_exchange_response.go +++ b/clients/client/go/model_successful_code_exchange_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_successful_native_login.go b/clients/client/go/model_successful_native_login.go index 0eb6b829413..20325c0e1ce 100644 --- a/clients/client/go/model_successful_native_login.go +++ b/clients/client/go/model_successful_native_login.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_successful_native_registration.go b/clients/client/go/model_successful_native_registration.go index b5f4a1b41e2..7a7b84804be 100644 --- a/clients/client/go/model_successful_native_registration.go +++ b/clients/client/go/model_successful_native_registration.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_successful_project_update.go b/clients/client/go/model_successful_project_update.go index 04ed26ccbe9..a2e3df7f6c3 100644 --- a/clients/client/go/model_successful_project_update.go +++ b/clients/client/go/model_successful_project_update.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_token_pagination.go b/clients/client/go/model_token_pagination.go index d4877f427a2..7f0ce57b957 100644 --- a/clients/client/go/model_token_pagination.go +++ b/clients/client/go/model_token_pagination.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_token_pagination_headers.go b/clients/client/go/model_token_pagination_headers.go index fa0b2c9f4bd..8f9b04139ed 100644 --- a/clients/client/go/model_token_pagination_headers.go +++ b/clients/client/go/model_token_pagination_headers.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_token_pagination_request_parameters.go b/clients/client/go/model_token_pagination_request_parameters.go index d3d70eb4341..e36ffd03c57 100644 --- a/clients/client/go/model_token_pagination_request_parameters.go +++ b/clients/client/go/model_token_pagination_request_parameters.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_token_pagination_response_headers.go b/clients/client/go/model_token_pagination_response_headers.go index bfc7b6fdee3..c30a58842f5 100644 --- a/clients/client/go/model_token_pagination_response_headers.go +++ b/clients/client/go/model_token_pagination_response_headers.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_trust_o_auth2_jwt_grant_issuer.go b/clients/client/go/model_trust_o_auth2_jwt_grant_issuer.go index df515b82184..5eb20e57a92 100644 --- a/clients/client/go/model_trust_o_auth2_jwt_grant_issuer.go +++ b/clients/client/go/model_trust_o_auth2_jwt_grant_issuer.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_trusted_o_auth2_jwt_grant_issuer.go b/clients/client/go/model_trusted_o_auth2_jwt_grant_issuer.go index dd6bd00e79f..949b1380a6b 100644 --- a/clients/client/go/model_trusted_o_auth2_jwt_grant_issuer.go +++ b/clients/client/go/model_trusted_o_auth2_jwt_grant_issuer.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_trusted_o_auth2_jwt_grant_json_web_key.go b/clients/client/go/model_trusted_o_auth2_jwt_grant_json_web_key.go index eab0dc87e63..9eaeef31867 100644 --- a/clients/client/go/model_trusted_o_auth2_jwt_grant_json_web_key.go +++ b/clients/client/go/model_trusted_o_auth2_jwt_grant_json_web_key.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_container.go b/clients/client/go/model_ui_container.go index 5ed0fab21ff..33fc8a73c06 100644 --- a/clients/client/go/model_ui_container.go +++ b/clients/client/go/model_ui_container.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node.go b/clients/client/go/model_ui_node.go index 3a93fa13e76..7b0cff1368c 100644 --- a/clients/client/go/model_ui_node.go +++ b/clients/client/go/model_ui_node.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_anchor_attributes.go b/clients/client/go/model_ui_node_anchor_attributes.go index ec60b3ad171..a519ed66be9 100644 --- a/clients/client/go/model_ui_node_anchor_attributes.go +++ b/clients/client/go/model_ui_node_anchor_attributes.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_attributes.go b/clients/client/go/model_ui_node_attributes.go index 0cdf4e9b377..4826963642d 100644 --- a/clients/client/go/model_ui_node_attributes.go +++ b/clients/client/go/model_ui_node_attributes.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_image_attributes.go b/clients/client/go/model_ui_node_image_attributes.go index 1bc817e5030..6e320da035b 100644 --- a/clients/client/go/model_ui_node_image_attributes.go +++ b/clients/client/go/model_ui_node_image_attributes.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_input_attributes.go b/clients/client/go/model_ui_node_input_attributes.go index 7a7d2146931..0162616c07a 100644 --- a/clients/client/go/model_ui_node_input_attributes.go +++ b/clients/client/go/model_ui_node_input_attributes.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_meta.go b/clients/client/go/model_ui_node_meta.go index 1da291e445c..7f47c955d03 100644 --- a/clients/client/go/model_ui_node_meta.go +++ b/clients/client/go/model_ui_node_meta.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_script_attributes.go b/clients/client/go/model_ui_node_script_attributes.go index fd4f8ae65fe..b89dfe13a32 100644 --- a/clients/client/go/model_ui_node_script_attributes.go +++ b/clients/client/go/model_ui_node_script_attributes.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node_text_attributes.go b/clients/client/go/model_ui_node_text_attributes.go index 4073a2911ce..e64f90201cd 100644 --- a/clients/client/go/model_ui_node_text_attributes.go +++ b/clients/client/go/model_ui_node_text_attributes.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_text.go b/clients/client/go/model_ui_text.go index 94310cfe9cc..c1fb5795632 100644 --- a/clients/client/go/model_ui_text.go +++ b/clients/client/go/model_ui_text.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_identity_body.go b/clients/client/go/model_update_identity_body.go index 818c9306a5a..7a22375ae78 100644 --- a/clients/client/go/model_update_identity_body.go +++ b/clients/client/go/model_update_identity_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_login_flow_body.go b/clients/client/go/model_update_login_flow_body.go index 98fc8297e21..5a8f384f15c 100644 --- a/clients/client/go/model_update_login_flow_body.go +++ b/clients/client/go/model_update_login_flow_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_login_flow_with_lookup_secret_method.go b/clients/client/go/model_update_login_flow_with_lookup_secret_method.go index a5c3324b05c..1024ae09c38 100644 --- a/clients/client/go/model_update_login_flow_with_lookup_secret_method.go +++ b/clients/client/go/model_update_login_flow_with_lookup_secret_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_login_flow_with_oidc_method.go b/clients/client/go/model_update_login_flow_with_oidc_method.go index 5001fcffd1f..f90940d23b9 100644 --- a/clients/client/go/model_update_login_flow_with_oidc_method.go +++ b/clients/client/go/model_update_login_flow_with_oidc_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_login_flow_with_password_method.go b/clients/client/go/model_update_login_flow_with_password_method.go index beb33e50d84..cc8064490f0 100644 --- a/clients/client/go/model_update_login_flow_with_password_method.go +++ b/clients/client/go/model_update_login_flow_with_password_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_login_flow_with_totp_method.go b/clients/client/go/model_update_login_flow_with_totp_method.go index 718a03e6c3e..7d929461897 100644 --- a/clients/client/go/model_update_login_flow_with_totp_method.go +++ b/clients/client/go/model_update_login_flow_with_totp_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_login_flow_with_web_authn_method.go b/clients/client/go/model_update_login_flow_with_web_authn_method.go index 4d8b4c92deb..4810eb31e7a 100644 --- a/clients/client/go/model_update_login_flow_with_web_authn_method.go +++ b/clients/client/go/model_update_login_flow_with_web_authn_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_recovery_flow_body.go b/clients/client/go/model_update_recovery_flow_body.go index b8c7af0834e..92d1b14a0d9 100644 --- a/clients/client/go/model_update_recovery_flow_body.go +++ b/clients/client/go/model_update_recovery_flow_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_recovery_flow_with_code_method.go b/clients/client/go/model_update_recovery_flow_with_code_method.go index 36910982ece..e5eebd116f1 100644 --- a/clients/client/go/model_update_recovery_flow_with_code_method.go +++ b/clients/client/go/model_update_recovery_flow_with_code_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_recovery_flow_with_link_method.go b/clients/client/go/model_update_recovery_flow_with_link_method.go index 9eb50d481d4..43948ede4dc 100644 --- a/clients/client/go/model_update_recovery_flow_with_link_method.go +++ b/clients/client/go/model_update_recovery_flow_with_link_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_registration_flow_body.go b/clients/client/go/model_update_registration_flow_body.go index 939b25cbc3b..6eae96c4262 100644 --- a/clients/client/go/model_update_registration_flow_body.go +++ b/clients/client/go/model_update_registration_flow_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_registration_flow_with_oidc_method.go b/clients/client/go/model_update_registration_flow_with_oidc_method.go index 07e05d2f677..03a4d32a8bc 100644 --- a/clients/client/go/model_update_registration_flow_with_oidc_method.go +++ b/clients/client/go/model_update_registration_flow_with_oidc_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_registration_flow_with_password_method.go b/clients/client/go/model_update_registration_flow_with_password_method.go index 3ba48fa8ac1..0ba5eb00d20 100644 --- a/clients/client/go/model_update_registration_flow_with_password_method.go +++ b/clients/client/go/model_update_registration_flow_with_password_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_registration_flow_with_web_authn_method.go b/clients/client/go/model_update_registration_flow_with_web_authn_method.go index 7d1bea305d1..249004a85b1 100644 --- a/clients/client/go/model_update_registration_flow_with_web_authn_method.go +++ b/clients/client/go/model_update_registration_flow_with_web_authn_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_body.go b/clients/client/go/model_update_settings_flow_body.go index d4dee28e3be..02ec9ae8696 100644 --- a/clients/client/go/model_update_settings_flow_body.go +++ b/clients/client/go/model_update_settings_flow_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_with_lookup_method.go b/clients/client/go/model_update_settings_flow_with_lookup_method.go index 365ae1601e8..46cf825acf9 100644 --- a/clients/client/go/model_update_settings_flow_with_lookup_method.go +++ b/clients/client/go/model_update_settings_flow_with_lookup_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_with_oidc_method.go b/clients/client/go/model_update_settings_flow_with_oidc_method.go index 24858eceea1..7f168d66380 100644 --- a/clients/client/go/model_update_settings_flow_with_oidc_method.go +++ b/clients/client/go/model_update_settings_flow_with_oidc_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_with_password_method.go b/clients/client/go/model_update_settings_flow_with_password_method.go index e3eca40b983..a42bf05a1c3 100644 --- a/clients/client/go/model_update_settings_flow_with_password_method.go +++ b/clients/client/go/model_update_settings_flow_with_password_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_with_profile_method.go b/clients/client/go/model_update_settings_flow_with_profile_method.go index dcdc9e19312..556dfff0d30 100644 --- a/clients/client/go/model_update_settings_flow_with_profile_method.go +++ b/clients/client/go/model_update_settings_flow_with_profile_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_with_totp_method.go b/clients/client/go/model_update_settings_flow_with_totp_method.go index fb853d261a6..009127a62fc 100644 --- a/clients/client/go/model_update_settings_flow_with_totp_method.go +++ b/clients/client/go/model_update_settings_flow_with_totp_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_settings_flow_with_web_authn_method.go b/clients/client/go/model_update_settings_flow_with_web_authn_method.go index a9937a30fb1..d660eb945c7 100644 --- a/clients/client/go/model_update_settings_flow_with_web_authn_method.go +++ b/clients/client/go/model_update_settings_flow_with_web_authn_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_subscription_body.go b/clients/client/go/model_update_subscription_body.go index 3d7215d1f5e..71fd85a38d5 100644 --- a/clients/client/go/model_update_subscription_body.go +++ b/clients/client/go/model_update_subscription_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_verification_flow_body.go b/clients/client/go/model_update_verification_flow_body.go index 17d241b5122..bfceec4e823 100644 --- a/clients/client/go/model_update_verification_flow_body.go +++ b/clients/client/go/model_update_verification_flow_body.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_verification_flow_with_code_method.go b/clients/client/go/model_update_verification_flow_with_code_method.go index 1eae91bcfdf..35ff35d16f9 100644 --- a/clients/client/go/model_update_verification_flow_with_code_method.go +++ b/clients/client/go/model_update_verification_flow_with_code_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_update_verification_flow_with_link_method.go b/clients/client/go/model_update_verification_flow_with_link_method.go index 1a2f1b95ef1..0fb4fa1fabb 100644 --- a/clients/client/go/model_update_verification_flow_with_link_method.go +++ b/clients/client/go/model_update_verification_flow_with_link_method.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_usage.go b/clients/client/go/model_usage.go index 11b7adb8712..cd17c8e4ee6 100644 --- a/clients/client/go/model_usage.go +++ b/clients/client/go/model_usage.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verifiable_credential_priming_response.go b/clients/client/go/model_verifiable_credential_priming_response.go index 1cf9e434c77..f159155fa8f 100644 --- a/clients/client/go/model_verifiable_credential_priming_response.go +++ b/clients/client/go/model_verifiable_credential_priming_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verifiable_credential_proof.go b/clients/client/go/model_verifiable_credential_proof.go index 9228313423c..f5853d2a382 100644 --- a/clients/client/go/model_verifiable_credential_proof.go +++ b/clients/client/go/model_verifiable_credential_proof.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verifiable_credential_response.go b/clients/client/go/model_verifiable_credential_response.go index 8dd59fd89d9..30d1cc08d68 100644 --- a/clients/client/go/model_verifiable_credential_response.go +++ b/clients/client/go/model_verifiable_credential_response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verifiable_identity_address.go b/clients/client/go/model_verifiable_identity_address.go index 9ef3c4e29ca..29aade96baf 100644 --- a/clients/client/go/model_verifiable_identity_address.go +++ b/clients/client/go/model_verifiable_identity_address.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verification_flow.go b/clients/client/go/model_verification_flow.go index 4a524e689cb..8efe234f199 100644 --- a/clients/client/go/model_verification_flow.go +++ b/clients/client/go/model_verification_flow.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verification_flow_state.go b/clients/client/go/model_verification_flow_state.go index 7e1678915c6..a551e83456f 100644 --- a/clients/client/go/model_verification_flow_state.go +++ b/clients/client/go/model_verification_flow_state.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_version.go b/clients/client/go/model_version.go index 889534a82e5..054cfece710 100644 --- a/clients/client/go/model_version.go +++ b/clients/client/go/model_version.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/model_warning.go b/clients/client/go/model_warning.go index 37742b6ff47..6179b900929 100644 --- a/clients/client/go/model_warning.go +++ b/clients/client/go/model_warning.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/response.go b/clients/client/go/response.go index 56be795b954..95c85b5a27c 100644 --- a/clients/client/go/response.go +++ b/clients/client/go/response.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/go/utils.go b/clients/client/go/utils.go index 201662e09f7..c7b7ea1cb80 100644 --- a/clients/client/go/utils.go +++ b/clients/client/go/utils.go @@ -3,7 +3,7 @@ Ory APIs 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. -API version: v1.1.44 +API version: v1.1.45 Contact: support@ory.sh */ diff --git a/clients/client/java/README.md b/clients/client/java/README.md index 258868161ca..f5513c5a622 100644 --- a/clients/client/java/README.md +++ b/clients/client/java/README.md @@ -1,8 +1,8 @@ # client Ory APIs -- API version: v1.1.44 - - Build date: 2023-08-11T08:46:31.889443934Z[Etc/UTC] +- API version: v1.1.45 + - Build date: 2023-08-13T21:50:28.344339006Z[Etc/UTC] 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. @@ -42,7 +42,7 @@ Add this dependency to your project's POM: sh.ory client - v1.1.44 + v1.1.45 compile ``` @@ -58,7 +58,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "sh.ory:client:v1.1.44" + implementation "sh.ory:client:v1.1.45" } ``` @@ -72,7 +72,7 @@ mvn clean package Then manually install the following JARs: -* `target/client-v1.1.44.jar` +* `target/client-v1.1.45.jar` * `target/lib/*.jar` ## Getting Started diff --git a/clients/client/java/api/openapi.yaml b/clients/client/java/api/openapi.yaml index 2d24bab75a4..dcc9ade3018 100644 --- a/clients/client/java/api/openapi.yaml +++ b/clients/client/java/api/openapi.yaml @@ -11,7 +11,7 @@ info: url: https://www.apache.org/licenses/LICENSE-2.0.html termsOfService: /ptos title: Ory APIs - version: v1.1.44 + version: v1.1.45 servers: - url: "https://{project}.projects.oryapis.com/" variables: @@ -9867,6 +9867,12 @@ components: \ well with JSON, SQL, and Swagger and is NULLable-" nullable: true type: object + kratos_courier_smtp_local_name: + description: |- + Configures the local_name to use in SMTP connections + + This governs the "courier.smtp.local_name" setting. + type: string kratos_courier_templates_recovery_code_invalid_email_body_html: description: |- Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template diff --git a/clients/client/java/build.gradle b/clients/client/java/build.gradle index 31b23e10308..fccf192e499 100644 --- a/clients/client/java/build.gradle +++ b/clients/client/java/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'sh.ory' -version = 'v1.1.44' +version = 'v1.1.45' buildscript { repositories { diff --git a/clients/client/java/build.sbt b/clients/client/java/build.sbt index e108a5cfb63..4ac1132840c 100644 --- a/clients/client/java/build.sbt +++ b/clients/client/java/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "sh.ory", name := "client", - version := "v1.1.44", + version := "v1.1.45", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/clients/client/java/docs/NormalizedProjectRevision.md b/clients/client/java/docs/NormalizedProjectRevision.md index b46fda10009..209a57bc334 100644 --- a/clients/client/java/docs/NormalizedProjectRevision.md +++ b/clients/client/java/docs/NormalizedProjectRevision.md @@ -57,6 +57,7 @@ |**kratosCourierSmtpFromAddress** | **String** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] | |**kratosCourierSmtpFromName** | **String** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] | |**kratosCourierSmtpHeaders** | **Object** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] | +|**kratosCourierSmtpLocalName** | **String** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] | |**kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] | |**kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] | |**kratosCourierTemplatesRecoveryCodeInvalidEmailSubject** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] | diff --git a/clients/client/java/src/main/java/sh/ory/ApiCallback.java b/clients/client/java/src/main/java/sh/ory/ApiCallback.java index 760756977bd..168ed73c99e 100644 --- a/clients/client/java/src/main/java/sh/ory/ApiCallback.java +++ b/clients/client/java/src/main/java/sh/ory/ApiCallback.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/ApiClient.java b/clients/client/java/src/main/java/sh/ory/ApiClient.java index cda89830c80..a2ad0763663 100644 --- a/clients/client/java/src/main/java/sh/ory/ApiClient.java +++ b/clients/client/java/src/main/java/sh/ory/ApiClient.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -211,7 +211,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/v1.1.44/java"); + setUserAgent("OpenAPI-Generator/v1.1.45/java"); authentications = new HashMap(); } diff --git a/clients/client/java/src/main/java/sh/ory/ApiException.java b/clients/client/java/src/main/java/sh/ory/ApiException.java index 34ad1f27752..33277495db0 100644 --- a/clients/client/java/src/main/java/sh/ory/ApiException.java +++ b/clients/client/java/src/main/java/sh/ory/ApiException.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -22,7 +22,7 @@ *

ApiException class.

*/ @SuppressWarnings("serial") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ApiException extends Exception { private int code = 0; private Map> responseHeaders = null; diff --git a/clients/client/java/src/main/java/sh/ory/ApiResponse.java b/clients/client/java/src/main/java/sh/ory/ApiResponse.java index d2a97c05b67..6c3ece72439 100644 --- a/clients/client/java/src/main/java/sh/ory/ApiResponse.java +++ b/clients/client/java/src/main/java/sh/ory/ApiResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/Configuration.java b/clients/client/java/src/main/java/sh/ory/Configuration.java index 05e0b1612ab..45962c2a8d2 100644 --- a/clients/client/java/src/main/java/sh/ory/Configuration.java +++ b/clients/client/java/src/main/java/sh/ory/Configuration.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,7 +13,7 @@ package sh.ory; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Configuration { private static ApiClient defaultApiClient = new ApiClient(); diff --git a/clients/client/java/src/main/java/sh/ory/GzipRequestInterceptor.java b/clients/client/java/src/main/java/sh/ory/GzipRequestInterceptor.java index b8567a48622..47fd1f0ffea 100644 --- a/clients/client/java/src/main/java/sh/ory/GzipRequestInterceptor.java +++ b/clients/client/java/src/main/java/sh/ory/GzipRequestInterceptor.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/JSON.java b/clients/client/java/src/main/java/sh/ory/JSON.java index cf1b9d36a36..61ca3851907 100644 --- a/clients/client/java/src/main/java/sh/ory/JSON.java +++ b/clients/client/java/src/main/java/sh/ory/JSON.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/Pair.java b/clients/client/java/src/main/java/sh/ory/Pair.java index ed6bac13f94..5c8894dd8ab 100644 --- a/clients/client/java/src/main/java/sh/ory/Pair.java +++ b/clients/client/java/src/main/java/sh/ory/Pair.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,7 +13,7 @@ package sh.ory; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Pair { private String name = ""; private String value = ""; diff --git a/clients/client/java/src/main/java/sh/ory/ProgressRequestBody.java b/clients/client/java/src/main/java/sh/ory/ProgressRequestBody.java index 3280f299516..a182270950f 100644 --- a/clients/client/java/src/main/java/sh/ory/ProgressRequestBody.java +++ b/clients/client/java/src/main/java/sh/ory/ProgressRequestBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/ProgressResponseBody.java b/clients/client/java/src/main/java/sh/ory/ProgressResponseBody.java index 74845f6a330..7513697a629 100644 --- a/clients/client/java/src/main/java/sh/ory/ProgressResponseBody.java +++ b/clients/client/java/src/main/java/sh/ory/ProgressResponseBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/StringUtil.java b/clients/client/java/src/main/java/sh/ory/StringUtil.java index dd7d53ceb76..e8243c230cd 100644 --- a/clients/client/java/src/main/java/sh/ory/StringUtil.java +++ b/clients/client/java/src/main/java/sh/ory/StringUtil.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -16,7 +16,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/clients/client/java/src/main/java/sh/ory/api/CourierApi.java b/clients/client/java/src/main/java/sh/ory/api/CourierApi.java index b7d9fa5f746..a93cc6ab9a3 100644 --- a/clients/client/java/src/main/java/sh/ory/api/CourierApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/CourierApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/FrontendApi.java b/clients/client/java/src/main/java/sh/ory/api/FrontendApi.java index 581a286d1e7..156812ef644 100644 --- a/clients/client/java/src/main/java/sh/ory/api/FrontendApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/FrontendApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/IdentityApi.java b/clients/client/java/src/main/java/sh/ory/api/IdentityApi.java index 403079a70ec..9081833a11f 100644 --- a/clients/client/java/src/main/java/sh/ory/api/IdentityApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/IdentityApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/JwkApi.java b/clients/client/java/src/main/java/sh/ory/api/JwkApi.java index 94e429e679f..b03db2f6399 100644 --- a/clients/client/java/src/main/java/sh/ory/api/JwkApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/JwkApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/MetadataApi.java b/clients/client/java/src/main/java/sh/ory/api/MetadataApi.java index 2aada81e919..8261d20c00e 100644 --- a/clients/client/java/src/main/java/sh/ory/api/MetadataApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/MetadataApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/OAuth2Api.java b/clients/client/java/src/main/java/sh/ory/api/OAuth2Api.java index 8e80026ab5a..b9a40726708 100644 --- a/clients/client/java/src/main/java/sh/ory/api/OAuth2Api.java +++ b/clients/client/java/src/main/java/sh/ory/api/OAuth2Api.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/OidcApi.java b/clients/client/java/src/main/java/sh/ory/api/OidcApi.java index 4100b4ab925..843dd9981b3 100644 --- a/clients/client/java/src/main/java/sh/ory/api/OidcApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/OidcApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/PermissionApi.java b/clients/client/java/src/main/java/sh/ory/api/PermissionApi.java index 14fb06d1e77..cfb9e72792b 100644 --- a/clients/client/java/src/main/java/sh/ory/api/PermissionApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/PermissionApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/ProjectApi.java b/clients/client/java/src/main/java/sh/ory/api/ProjectApi.java index cb0e967d18d..34930d63bab 100644 --- a/clients/client/java/src/main/java/sh/ory/api/ProjectApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/ProjectApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/RelationshipApi.java b/clients/client/java/src/main/java/sh/ory/api/RelationshipApi.java index 2f92f09c5ec..aa165e4347c 100644 --- a/clients/client/java/src/main/java/sh/ory/api/RelationshipApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/RelationshipApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/api/WellknownApi.java b/clients/client/java/src/main/java/sh/ory/api/WellknownApi.java index 9f1fc671bf8..dca086e38e4 100644 --- a/clients/client/java/src/main/java/sh/ory/api/WellknownApi.java +++ b/clients/client/java/src/main/java/sh/ory/api/WellknownApi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/auth/ApiKeyAuth.java b/clients/client/java/src/main/java/sh/ory/auth/ApiKeyAuth.java index 5b2ffbe98f2..dd187f09457 100644 --- a/clients/client/java/src/main/java/sh/ory/auth/ApiKeyAuth.java +++ b/clients/client/java/src/main/java/sh/ory/auth/ApiKeyAuth.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/clients/client/java/src/main/java/sh/ory/auth/Authentication.java b/clients/client/java/src/main/java/sh/ory/auth/Authentication.java index 045bcbea005..d6547ba22cc 100644 --- a/clients/client/java/src/main/java/sh/ory/auth/Authentication.java +++ b/clients/client/java/src/main/java/sh/ory/auth/Authentication.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/auth/HttpBasicAuth.java b/clients/client/java/src/main/java/sh/ory/auth/HttpBasicAuth.java index aed34e88a7b..136f1d75adb 100644 --- a/clients/client/java/src/main/java/sh/ory/auth/HttpBasicAuth.java +++ b/clients/client/java/src/main/java/sh/ory/auth/HttpBasicAuth.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/auth/HttpBearerAuth.java b/clients/client/java/src/main/java/sh/ory/auth/HttpBearerAuth.java index 687b65e49bc..1501789fa7b 100644 --- a/clients/client/java/src/main/java/sh/ory/auth/HttpBearerAuth.java +++ b/clients/client/java/src/main/java/sh/ory/auth/HttpBearerAuth.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class HttpBearerAuth implements Authentication { private final String scheme; private String bearerToken; diff --git a/clients/client/java/src/main/java/sh/ory/auth/OAuth.java b/clients/client/java/src/main/java/sh/ory/auth/OAuth.java index 60b327f0c6e..6d69c0c5532 100644 --- a/clients/client/java/src/main/java/sh/ory/auth/OAuth.java +++ b/clients/client/java/src/main/java/sh/ory/auth/OAuth.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth implements Authentication { private String accessToken; diff --git a/clients/client/java/src/main/java/sh/ory/auth/OAuthFlow.java b/clients/client/java/src/main/java/sh/ory/auth/OAuthFlow.java index c2ac2af3f9d..70e47ed28f8 100644 --- a/clients/client/java/src/main/java/sh/ory/auth/OAuthFlow.java +++ b/clients/client/java/src/main/java/sh/ory/auth/OAuthFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -16,7 +16,7 @@ /** * OAuth flows that are supported by this client */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public enum OAuthFlow { ACCESS_CODE, //called authorizationCode in OpenAPI 3.0 IMPLICIT, diff --git a/clients/client/java/src/main/java/sh/ory/model/AbstractOpenApiSchema.java b/clients/client/java/src/main/java/sh/ory/model/AbstractOpenApiSchema.java index b0dc3a1f74e..0a7aa7eec29 100644 --- a/clients/client/java/src/main/java/sh/ory/model/AbstractOpenApiSchema.java +++ b/clients/client/java/src/main/java/sh/ory/model/AbstractOpenApiSchema.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -24,7 +24,7 @@ /** * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public abstract class AbstractOpenApiSchema { // store the actual instance of the schema/object diff --git a/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequest.java b/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequest.java index 27e8e6f55ab..6e54714c785 100644 --- a/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequest.java +++ b/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * AcceptOAuth2ConsentRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class AcceptOAuth2ConsentRequest { public static final String SERIALIZED_NAME_GRANT_ACCESS_TOKEN_AUDIENCE = "grant_access_token_audience"; @SerializedName(SERIALIZED_NAME_GRANT_ACCESS_TOKEN_AUDIENCE) diff --git a/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequestSession.java b/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequestSession.java index 2c457cfd5f9..b5808923bea 100644 --- a/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequestSession.java +++ b/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2ConsentRequestSession.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * AcceptOAuth2ConsentRequestSession */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class AcceptOAuth2ConsentRequestSession { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2LoginRequest.java b/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2LoginRequest.java index 7a9fbe25454..3e189d57a42 100644 --- a/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2LoginRequest.java +++ b/clients/client/java/src/main/java/sh/ory/model/AcceptOAuth2LoginRequest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * AcceptOAuth2LoginRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class AcceptOAuth2LoginRequest { public static final String SERIALIZED_NAME_ACR = "acr"; @SerializedName(SERIALIZED_NAME_ACR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ActiveProjectInConsole.java b/clients/client/java/src/main/java/sh/ory/model/ActiveProjectInConsole.java index 5f687aefd68..0906410fa08 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ActiveProjectInConsole.java +++ b/clients/client/java/src/main/java/sh/ory/model/ActiveProjectInConsole.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * The Active Project ID */ @ApiModel(description = "The Active Project ID") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ActiveProjectInConsole { public static final String SERIALIZED_NAME_PROJECT_ID = "project_id"; @SerializedName(SERIALIZED_NAME_PROJECT_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/AuthenticatorAssuranceLevel.java b/clients/client/java/src/main/java/sh/ory/model/AuthenticatorAssuranceLevel.java index d5636a45b16..f987d1875b6 100644 --- a/clients/client/java/src/main/java/sh/ory/model/AuthenticatorAssuranceLevel.java +++ b/clients/client/java/src/main/java/sh/ory/model/AuthenticatorAssuranceLevel.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/BatchPatchIdentitiesResponse.java b/clients/client/java/src/main/java/sh/ory/model/BatchPatchIdentitiesResponse.java index 63f9fac8bac..bb19afb5d4a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/BatchPatchIdentitiesResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/BatchPatchIdentitiesResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Patch identities response */ @ApiModel(description = "Patch identities response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class BatchPatchIdentitiesResponse { public static final String SERIALIZED_NAME_IDENTITIES = "identities"; @SerializedName(SERIALIZED_NAME_IDENTITIES) diff --git a/clients/client/java/src/main/java/sh/ory/model/CORS.java b/clients/client/java/src/main/java/sh/ory/model/CORS.java index 1226108abff..3e88ca4bdf5 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CORS.java +++ b/clients/client/java/src/main/java/sh/ory/model/CORS.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * CORS */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CORS { public static final String SERIALIZED_NAME_ENABLED = "enabled"; @SerializedName(SERIALIZED_NAME_ENABLED) diff --git a/clients/client/java/src/main/java/sh/ory/model/CheckOplSyntaxResult.java b/clients/client/java/src/main/java/sh/ory/model/CheckOplSyntaxResult.java index 69db1434af3..f237c838ef3 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CheckOplSyntaxResult.java +++ b/clients/client/java/src/main/java/sh/ory/model/CheckOplSyntaxResult.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * CheckOplSyntaxResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CheckOplSyntaxResult { public static final String SERIALIZED_NAME_ERRORS = "errors"; @SerializedName(SERIALIZED_NAME_ERRORS) diff --git a/clients/client/java/src/main/java/sh/ory/model/CheckPermissionResult.java b/clients/client/java/src/main/java/sh/ory/model/CheckPermissionResult.java index 50a41651b89..31014f92c3f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CheckPermissionResult.java +++ b/clients/client/java/src/main/java/sh/ory/model/CheckPermissionResult.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * The content of the allowed field is mirrored in the HTTP status code. */ @ApiModel(description = "The content of the allowed field is mirrored in the HTTP status code.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CheckPermissionResult { public static final String SERIALIZED_NAME_ALLOWED = "allowed"; @SerializedName(SERIALIZED_NAME_ALLOWED) diff --git a/clients/client/java/src/main/java/sh/ory/model/CloudAccount.java b/clients/client/java/src/main/java/sh/ory/model/CloudAccount.java index c02ebc964b9..ece2c9fde09 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CloudAccount.java +++ b/clients/client/java/src/main/java/sh/ory/model/CloudAccount.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * CloudAccount */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CloudAccount { public static final String SERIALIZED_NAME_EMAIL = "email"; @SerializedName(SERIALIZED_NAME_EMAIL) diff --git a/clients/client/java/src/main/java/sh/ory/model/ContinueWith.java b/clients/client/java/src/main/java/sh/ory/model/ContinueWith.java index 0272b4f3c65..9c9cda99d9c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ContinueWith.java +++ b/clients/client/java/src/main/java/sh/ory/model/ContinueWith.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -60,7 +60,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ContinueWith extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(ContinueWith.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/ContinueWithSetOrySessionToken.java b/clients/client/java/src/main/java/sh/ory/model/ContinueWithSetOrySessionToken.java index 1de4209eb05..f9a0dc64a68 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ContinueWithSetOrySessionToken.java +++ b/clients/client/java/src/main/java/sh/ory/model/ContinueWithSetOrySessionToken.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Indicates that a session was issued, and the application should use this token for authenticated requests */ @ApiModel(description = "Indicates that a session was issued, and the application should use this token for authenticated requests") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ContinueWithSetOrySessionToken { /** * Action will always be `set_ory_session_token` set_ory_session_token ContinueWithActionSetOrySessionToken show_verification_ui ContinueWithActionShowVerificationUI diff --git a/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUi.java b/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUi.java index ce5076b23ad..f92facbc941 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUi.java +++ b/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUi.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Indicates, that the UI flow could be continued by showing a verification ui */ @ApiModel(description = "Indicates, that the UI flow could be continued by showing a verification ui") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ContinueWithVerificationUi { /** * Action will always be `show_verification_ui` set_ory_session_token ContinueWithActionSetOrySessionToken show_verification_ui ContinueWithActionShowVerificationUI diff --git a/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUiFlow.java b/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUiFlow.java index 882536aa4e8..e0785d87360 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUiFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/ContinueWithVerificationUiFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * ContinueWithVerificationUiFlow */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ContinueWithVerificationUiFlow { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/CourierMessageStatus.java b/clients/client/java/src/main/java/sh/ory/model/CourierMessageStatus.java index f4fd448d735..605b83eaf82 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CourierMessageStatus.java +++ b/clients/client/java/src/main/java/sh/ory/model/CourierMessageStatus.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/CourierMessageType.java b/clients/client/java/src/main/java/sh/ory/model/CourierMessageType.java index c2d0178bd20..e27fd65bed3 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CourierMessageType.java +++ b/clients/client/java/src/main/java/sh/ory/model/CourierMessageType.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateCustomDomainBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateCustomDomainBody.java index c1cb54bc1af..a92d749f328 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateCustomDomainBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateCustomDomainBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Create Custom Hostname Request Body */ @ApiModel(description = "Create Custom Hostname Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateCustomDomainBody { public static final String SERIALIZED_NAME_COOKIE_DOMAIN = "cookie_domain"; @SerializedName(SERIALIZED_NAME_COOKIE_DOMAIN) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateIdentityBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateIdentityBody.java index 7fd886575d0..9f482056d2a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateIdentityBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateIdentityBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -56,7 +56,7 @@ * Create Identity Body */ @ApiModel(description = "Create Identity Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateIdentityBody { public static final String SERIALIZED_NAME_CREDENTIALS = "credentials"; @SerializedName(SERIALIZED_NAME_CREDENTIALS) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateInviteResponse.java b/clients/client/java/src/main/java/sh/ory/model/CreateInviteResponse.java index 554791bf93c..2d2593899ad 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateInviteResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateInviteResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * CreateInviteResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateInviteResponse { public static final String SERIALIZED_NAME_ALL_INVITES = "all_invites"; @SerializedName(SERIALIZED_NAME_ALL_INVITES) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateJsonWebKeySet.java b/clients/client/java/src/main/java/sh/ory/model/CreateJsonWebKeySet.java index 0f6ea3cc818..306031222fc 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateJsonWebKeySet.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateJsonWebKeySet.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create JSON Web Key Set Request Body */ @ApiModel(description = "Create JSON Web Key Set Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateJsonWebKeySet { public static final String SERIALIZED_NAME_ALG = "alg"; @SerializedName(SERIALIZED_NAME_ALG) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateProjectApiKeyRequest.java b/clients/client/java/src/main/java/sh/ory/model/CreateProjectApiKeyRequest.java index 1ade08b5f51..bd1002a0277 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateProjectApiKeyRequest.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateProjectApiKeyRequest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * CreateProjectApiKeyRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateProjectApiKeyRequest { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateProjectBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateProjectBody.java index 9edd091be58..75a599af157 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateProjectBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateProjectBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Project Request Body */ @ApiModel(description = "Create Project Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateProjectBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateProjectBranding.java b/clients/client/java/src/main/java/sh/ory/model/CreateProjectBranding.java index e99cce6258c..c6a708b8cf0 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateProjectBranding.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateProjectBranding.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Create a Project Branding */ @ApiModel(description = "Create a Project Branding") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateProjectBranding { public static final String SERIALIZED_NAME_LOGO_TYPE = "logo_type"; @SerializedName(SERIALIZED_NAME_LOGO_TYPE) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateProjectMemberInviteBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateProjectMemberInviteBody.java index 2d2f82a9d55..fa92438c360 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateProjectMemberInviteBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateProjectMemberInviteBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Project MemberInvite Request Body */ @ApiModel(description = "Create Project MemberInvite Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateProjectMemberInviteBody { public static final String SERIALIZED_NAME_INVITEE_EMAIL = "invitee_email"; @SerializedName(SERIALIZED_NAME_INVITEE_EMAIL) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryCodeForIdentityBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryCodeForIdentityBody.java index f103fea9aff..1844fabafe0 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryCodeForIdentityBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryCodeForIdentityBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Recovery Code for Identity Request Body */ @ApiModel(description = "Create Recovery Code for Identity Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateRecoveryCodeForIdentityBody { public static final String SERIALIZED_NAME_EXPIRES_IN = "expires_in"; @SerializedName(SERIALIZED_NAME_EXPIRES_IN) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryLinkForIdentityBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryLinkForIdentityBody.java index 6923f3824e6..3a0abbf68a7 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryLinkForIdentityBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryLinkForIdentityBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Recovery Link for Identity Request Body */ @ApiModel(description = "Create Recovery Link for Identity Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateRecoveryLinkForIdentityBody { public static final String SERIALIZED_NAME_EXPIRES_IN = "expires_in"; @SerializedName(SERIALIZED_NAME_EXPIRES_IN) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateRelationshipBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateRelationshipBody.java index e478889ec5c..98b7fcabc68 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateRelationshipBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateRelationshipBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Create Relationship Request Body */ @ApiModel(description = "Create Relationship Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateRelationshipBody { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; @SerializedName(SERIALIZED_NAME_NAMESPACE) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateSubscriptionBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateSubscriptionBody.java index 91e0dd24581..c1c2a72755a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateSubscriptionBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateSubscriptionBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Subscription Request Body */ @ApiModel(description = "Create Subscription Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateSubscriptionBody { /** * usd USD eur Euro diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateVerifiableCredentialRequestBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateVerifiableCredentialRequestBody.java index 81bbcd6bdc5..94367466bce 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateVerifiableCredentialRequestBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateVerifiableCredentialRequestBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * CreateVerifiableCredentialRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CreateVerifiableCredentialRequestBody { public static final String SERIALIZED_NAME_FORMAT = "format"; @SerializedName(SERIALIZED_NAME_FORMAT) diff --git a/clients/client/java/src/main/java/sh/ory/model/CredentialSupportedDraft00.java b/clients/client/java/src/main/java/sh/ory/model/CredentialSupportedDraft00.java index c2dac0d36bc..0ad102ef3e7 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CredentialSupportedDraft00.java +++ b/clients/client/java/src/main/java/sh/ory/model/CredentialSupportedDraft00.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Includes information about the supported verifiable credentials. */ @ApiModel(description = "Includes information about the supported verifiable credentials.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CredentialSupportedDraft00 { public static final String SERIALIZED_NAME_CRYPTOGRAPHIC_BINDING_METHODS_SUPPORTED = "cryptographic_binding_methods_supported"; @SerializedName(SERIALIZED_NAME_CRYPTOGRAPHIC_BINDING_METHODS_SUPPORTED) diff --git a/clients/client/java/src/main/java/sh/ory/model/CustomDomain.java b/clients/client/java/src/main/java/sh/ory/model/CustomDomain.java index 9db1992ae32..45c313fbbc1 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CustomDomain.java +++ b/clients/client/java/src/main/java/sh/ory/model/CustomDomain.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Custom Hostname */ @ApiModel(description = "Custom Hostname") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class CustomDomain { public static final String SERIALIZED_NAME_COOKIE_DOMAIN = "cookie_domain"; @SerializedName(SERIALIZED_NAME_COOKIE_DOMAIN) diff --git a/clients/client/java/src/main/java/sh/ory/model/DeleteMySessionsCount.java b/clients/client/java/src/main/java/sh/ory/model/DeleteMySessionsCount.java index 09aec495997..d0b6b944003 100644 --- a/clients/client/java/src/main/java/sh/ory/model/DeleteMySessionsCount.java +++ b/clients/client/java/src/main/java/sh/ory/model/DeleteMySessionsCount.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Deleted Session Count */ @ApiModel(description = "Deleted Session Count") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class DeleteMySessionsCount { public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) diff --git a/clients/client/java/src/main/java/sh/ory/model/EmailTemplateData.java b/clients/client/java/src/main/java/sh/ory/model/EmailTemplateData.java index d18eb7b9c0e..ea3210142f2 100644 --- a/clients/client/java/src/main/java/sh/ory/model/EmailTemplateData.java +++ b/clients/client/java/src/main/java/sh/ory/model/EmailTemplateData.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Contains the data of the email template, including the subject and body in HTML and plaintext variants */ @ApiModel(description = "Contains the data of the email template, including the subject and body in HTML and plaintext variants") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class EmailTemplateData { public static final String SERIALIZED_NAME_BODY = "body"; @SerializedName(SERIALIZED_NAME_BODY) diff --git a/clients/client/java/src/main/java/sh/ory/model/EmailTemplateDataBody.java b/clients/client/java/src/main/java/sh/ory/model/EmailTemplateDataBody.java index b16170fe1f5..d673869be29 100644 --- a/clients/client/java/src/main/java/sh/ory/model/EmailTemplateDataBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/EmailTemplateDataBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * EmailTemplateDataBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class EmailTemplateDataBody { public static final String SERIALIZED_NAME_HTML = "html"; @SerializedName(SERIALIZED_NAME_HTML) diff --git a/clients/client/java/src/main/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfied.java b/clients/client/java/src/main/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfied.java index 74c9b804d7c..92e38e56bda 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfied.java +++ b/clients/client/java/src/main/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfied.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * ErrorAuthenticatorAssuranceLevelNotSatisfied */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ErrorAuthenticatorAssuranceLevelNotSatisfied { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ErrorBrowserLocationChangeRequired.java b/clients/client/java/src/main/java/sh/ory/model/ErrorBrowserLocationChangeRequired.java index 7257e90bfe8..b3bb44854ea 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ErrorBrowserLocationChangeRequired.java +++ b/clients/client/java/src/main/java/sh/ory/model/ErrorBrowserLocationChangeRequired.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * ErrorBrowserLocationChangeRequired */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ErrorBrowserLocationChangeRequired { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ErrorFlowReplaced.java b/clients/client/java/src/main/java/sh/ory/model/ErrorFlowReplaced.java index 8d2889d6491..18c6c6728ba 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ErrorFlowReplaced.java +++ b/clients/client/java/src/main/java/sh/ory/model/ErrorFlowReplaced.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Is sent when a flow is replaced by a different flow of the same class */ @ApiModel(description = "Is sent when a flow is replaced by a different flow of the same class") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ErrorFlowReplaced { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ErrorGeneric.java b/clients/client/java/src/main/java/sh/ory/model/ErrorGeneric.java index 92ca8159640..f1c2394a9ae 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ErrorGeneric.java +++ b/clients/client/java/src/main/java/sh/ory/model/ErrorGeneric.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * The standard Ory JSON API error format. */ @ApiModel(description = "The standard Ory JSON API error format.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ErrorGeneric { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ErrorOAuth2.java b/clients/client/java/src/main/java/sh/ory/model/ErrorOAuth2.java index 86f7264e597..64d2f57defb 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ErrorOAuth2.java +++ b/clients/client/java/src/main/java/sh/ory/model/ErrorOAuth2.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Error */ @ApiModel(description = "Error") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ErrorOAuth2 { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ExpandedPermissionTree.java b/clients/client/java/src/main/java/sh/ory/model/ExpandedPermissionTree.java index 6082008873c..de90a0cd35b 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ExpandedPermissionTree.java +++ b/clients/client/java/src/main/java/sh/ory/model/ExpandedPermissionTree.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * ExpandedPermissionTree */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ExpandedPermissionTree { public static final String SERIALIZED_NAME_CHILDREN = "children"; @SerializedName(SERIALIZED_NAME_CHILDREN) diff --git a/clients/client/java/src/main/java/sh/ory/model/FlowError.java b/clients/client/java/src/main/java/sh/ory/model/FlowError.java index d71ab5c0dee..6ea5b5b86d0 100644 --- a/clients/client/java/src/main/java/sh/ory/model/FlowError.java +++ b/clients/client/java/src/main/java/sh/ory/model/FlowError.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * FlowError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class FlowError { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/GenericError.java b/clients/client/java/src/main/java/sh/ory/model/GenericError.java index bcac3a518c1..83956d51ea6 100644 --- a/clients/client/java/src/main/java/sh/ory/model/GenericError.java +++ b/clients/client/java/src/main/java/sh/ory/model/GenericError.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred. */ @ApiModel(description = "Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class GenericError { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/clients/client/java/src/main/java/sh/ory/model/GenericErrorContent.java b/clients/client/java/src/main/java/sh/ory/model/GenericErrorContent.java index d7232a1e335..f33d7090142 100644 --- a/clients/client/java/src/main/java/sh/ory/model/GenericErrorContent.java +++ b/clients/client/java/src/main/java/sh/ory/model/GenericErrorContent.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Error response */ @ApiModel(description = "Error response") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class GenericErrorContent { public static final String SERIALIZED_NAME_DEBUG = "debug"; @SerializedName(SERIALIZED_NAME_DEBUG) diff --git a/clients/client/java/src/main/java/sh/ory/model/GenericUsage.java b/clients/client/java/src/main/java/sh/ory/model/GenericUsage.java index 40994886b3f..392ddbd2db1 100644 --- a/clients/client/java/src/main/java/sh/ory/model/GenericUsage.java +++ b/clients/client/java/src/main/java/sh/ory/model/GenericUsage.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * GenericUsage */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class GenericUsage { public static final String SERIALIZED_NAME_ADDITIONAL_PRICE = "additional_price"; @SerializedName(SERIALIZED_NAME_ADDITIONAL_PRICE) diff --git a/clients/client/java/src/main/java/sh/ory/model/GetManagedIdentitySchemaLocation.java b/clients/client/java/src/main/java/sh/ory/model/GetManagedIdentitySchemaLocation.java index 8e702695323..8668cff52fb 100644 --- a/clients/client/java/src/main/java/sh/ory/model/GetManagedIdentitySchemaLocation.java +++ b/clients/client/java/src/main/java/sh/ory/model/GetManagedIdentitySchemaLocation.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Ory Identity Schema Location */ @ApiModel(description = "Ory Identity Schema Location") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class GetManagedIdentitySchemaLocation { public static final String SERIALIZED_NAME_LOCATION = "location"; @SerializedName(SERIALIZED_NAME_LOCATION) diff --git a/clients/client/java/src/main/java/sh/ory/model/GetProjectMetricsResponse.java b/clients/client/java/src/main/java/sh/ory/model/GetProjectMetricsResponse.java index 791bbe61ac3..e84cb2b7961 100644 --- a/clients/client/java/src/main/java/sh/ory/model/GetProjectMetricsResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/GetProjectMetricsResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Response of the getMetrics endpoint */ @ApiModel(description = "Response of the getMetrics endpoint") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class GetProjectMetricsResponse { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/clients/client/java/src/main/java/sh/ory/model/GetVersion200Response.java b/clients/client/java/src/main/java/sh/ory/model/GetVersion200Response.java index 385c4c88777..aade13003b4 100644 --- a/clients/client/java/src/main/java/sh/ory/model/GetVersion200Response.java +++ b/clients/client/java/src/main/java/sh/ory/model/GetVersion200Response.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * GetVersion200Response */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class GetVersion200Response { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/clients/client/java/src/main/java/sh/ory/model/HealthNotReadyStatus.java b/clients/client/java/src/main/java/sh/ory/model/HealthNotReadyStatus.java index f0a980d41d0..f873076df4a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/HealthNotReadyStatus.java +++ b/clients/client/java/src/main/java/sh/ory/model/HealthNotReadyStatus.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * HealthNotReadyStatus */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class HealthNotReadyStatus { public static final String SERIALIZED_NAME_ERRORS = "errors"; @SerializedName(SERIALIZED_NAME_ERRORS) diff --git a/clients/client/java/src/main/java/sh/ory/model/HealthStatus.java b/clients/client/java/src/main/java/sh/ory/model/HealthStatus.java index 99fca404a10..4af72e72791 100644 --- a/clients/client/java/src/main/java/sh/ory/model/HealthStatus.java +++ b/clients/client/java/src/main/java/sh/ory/model/HealthStatus.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * HealthStatus */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class HealthStatus { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/clients/client/java/src/main/java/sh/ory/model/Identity.java b/clients/client/java/src/main/java/sh/ory/model/Identity.java index 3bb2156f523..ff09e60d162 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Identity.java +++ b/clients/client/java/src/main/java/sh/ory/model/Identity.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -59,7 +59,7 @@ * An [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) represents a (human) user in Ory. */ @ApiModel(description = "An [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) represents a (human) user in Ory.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Identity { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentials.java b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentials.java index a2235cb4cc6..7b10773a423 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentials.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentials.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ * Credentials represents a specific credential type */ @ApiModel(description = "Credentials represents a specific credential type") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityCredentials { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidc.java b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidc.java index 2b0075d9e08..1667d07c706 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidc.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidc.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * IdentityCredentialsOidc */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityCredentialsOidc { public static final String SERIALIZED_NAME_PROVIDERS = "providers"; @SerializedName(SERIALIZED_NAME_PROVIDERS) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidcProvider.java b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidcProvider.java index 8e0bf053861..77d6f076c22 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidcProvider.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsOidcProvider.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * IdentityCredentialsOidcProvider */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityCredentialsOidcProvider { public static final String SERIALIZED_NAME_INITIAL_ACCESS_TOKEN = "initial_access_token"; @SerializedName(SERIALIZED_NAME_INITIAL_ACCESS_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsPassword.java b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsPassword.java index ac32a9758e7..60250068e42 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsPassword.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsPassword.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * IdentityCredentialsPassword */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityCredentialsPassword { public static final String SERIALIZED_NAME_HASHED_PASSWORD = "hashed_password"; @SerializedName(SERIALIZED_NAME_HASHED_PASSWORD) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsType.java b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsType.java index 0fc938a9efe..ff7d8856519 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsType.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityCredentialsType.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityPatch.java b/clients/client/java/src/main/java/sh/ory/model/IdentityPatch.java index 8b2915e0f08..0abd6fc617b 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityPatch.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityPatch.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Payload for patching an identity */ @ApiModel(description = "Payload for patching an identity") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityPatch { public static final String SERIALIZED_NAME_CREATE = "create"; @SerializedName(SERIALIZED_NAME_CREATE) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityPatchResponse.java b/clients/client/java/src/main/java/sh/ory/model/IdentityPatchResponse.java index 8d9f2397b3a..96251e1b5be 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityPatchResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityPatchResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Response for a single identity patch */ @ApiModel(description = "Response for a single identity patch") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityPatchResponse { /** * The action for this specific patch create ActionCreate Create this identity. diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaContainer.java b/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaContainer.java index 46bd73bcdda..b567cf93013 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaContainer.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaContainer.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * An Identity JSON Schema Container */ @ApiModel(description = "An Identity JSON Schema Container") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentitySchemaContainer { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaPreset.java b/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaPreset.java index 20da2b17eb9..f430ed6b725 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaPreset.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentitySchemaPreset.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * IdentitySchemaPreset */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentitySchemaPreset { public static final String SERIALIZED_NAME_SCHEMA = "schema"; @SerializedName(SERIALIZED_NAME_SCHEMA) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityState.java b/clients/client/java/src/main/java/sh/ory/model/IdentityState.java index 72cda412bd0..5e4ca9aea00 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityState.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityState.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentials.java b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentials.java index 7416db09447..f282290c968 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentials.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentials.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Create Identity and Import Credentials */ @ApiModel(description = "Create Identity and Import Credentials") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityWithCredentials { public static final String SERIALIZED_NAME_OIDC = "oidc"; @SerializedName(SERIALIZED_NAME_OIDC) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidc.java b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidc.java index 3aafcb04cf8..36673610199 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidc.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidc.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Create Identity and Import Social Sign In Credentials */ @ApiModel(description = "Create Identity and Import Social Sign In Credentials") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityWithCredentialsOidc { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfig.java b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfig.java index 0ce9fd9a660..d3099903ea6 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfig.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfig.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * IdentityWithCredentialsOidcConfig */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityWithCredentialsOidcConfig { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfigProvider.java b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfigProvider.java index e2b91609738..e81124957b0 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfigProvider.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsOidcConfigProvider.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Identity and Import Social Sign In Credentials Configuration */ @ApiModel(description = "Create Identity and Import Social Sign In Credentials Configuration") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityWithCredentialsOidcConfigProvider { public static final String SERIALIZED_NAME_PROVIDER = "provider"; @SerializedName(SERIALIZED_NAME_PROVIDER) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPassword.java b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPassword.java index bf57522c6bc..7d8ac78ce49 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPassword.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPassword.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Create Identity and Import Password Credentials */ @ApiModel(description = "Create Identity and Import Password Credentials") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityWithCredentialsPassword { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPasswordConfig.java b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPasswordConfig.java index cdd32c04288..b14ec80fc7a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPasswordConfig.java +++ b/clients/client/java/src/main/java/sh/ory/model/IdentityWithCredentialsPasswordConfig.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Create Identity and Import Password Credentials Configuration */ @ApiModel(description = "Create Identity and Import Password Credentials Configuration") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IdentityWithCredentialsPasswordConfig { public static final String SERIALIZED_NAME_HASHED_PASSWORD = "hashed_password"; @SerializedName(SERIALIZED_NAME_HASHED_PASSWORD) diff --git a/clients/client/java/src/main/java/sh/ory/model/InternalGetProjectBrandingBody.java b/clients/client/java/src/main/java/sh/ory/model/InternalGetProjectBrandingBody.java index d698c93cf7b..73864810a6d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/InternalGetProjectBrandingBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/InternalGetProjectBrandingBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Get Project Branding Request Body */ @ApiModel(description = "Get Project Branding Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class InternalGetProjectBrandingBody { public static final String SERIALIZED_NAME_HOSTNAME = "hostname"; @SerializedName(SERIALIZED_NAME_HOSTNAME) diff --git a/clients/client/java/src/main/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBody.java b/clients/client/java/src/main/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBody.java index e5b62ee81a0..e5e0ee3471f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Is Account Experience Enabled For Project Request Body */ @ApiModel(description = "Is Account Experience Enabled For Project Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class InternalIsAXWelcomeScreenEnabledForProjectBody { public static final String SERIALIZED_NAME_PATH = "path"; @SerializedName(SERIALIZED_NAME_PATH) diff --git a/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugBody.java b/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugBody.java index 79af65db3f7..e6ec7d03fff 100644 --- a/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Is Owner For Project By Slug Request Body */ @ApiModel(description = "Is Owner For Project By Slug Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class InternalIsOwnerForProjectBySlugBody { /** * Namespace is the namespace of the subject. diff --git a/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponse.java b/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponse.java index 16475a9d3c7..17bbf88ad65 100644 --- a/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * InternalIsOwnerForProjectBySlugResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class InternalIsOwnerForProjectBySlugResponse { public static final String SERIALIZED_NAME_PROJECT_ID = "project_id"; @SerializedName(SERIALIZED_NAME_PROJECT_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/InternalProvisionMockSubscription.java b/clients/client/java/src/main/java/sh/ory/model/InternalProvisionMockSubscription.java index c6cc5288ed3..c9a67708b80 100644 --- a/clients/client/java/src/main/java/sh/ory/model/InternalProvisionMockSubscription.java +++ b/clients/client/java/src/main/java/sh/ory/model/InternalProvisionMockSubscription.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Internal Provision Mock Subscription Request Body */ @ApiModel(description = "Internal Provision Mock Subscription Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class InternalProvisionMockSubscription { /** * Currency usd USD eur Euro diff --git a/clients/client/java/src/main/java/sh/ory/model/IntrospectedOAuth2Token.java b/clients/client/java/src/main/java/sh/ory/model/IntrospectedOAuth2Token.java index 926904bc098..013ad6f326f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IntrospectedOAuth2Token.java +++ b/clients/client/java/src/main/java/sh/ory/model/IntrospectedOAuth2Token.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ * Introspection contains an access token's session data as specified by [IETF RFC 7662](https://tools.ietf.org/html/rfc7662) */ @ApiModel(description = "Introspection contains an access token's session data as specified by [IETF RFC 7662](https://tools.ietf.org/html/rfc7662)") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IntrospectedOAuth2Token { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/IsOwnerForProjectBySlug.java b/clients/client/java/src/main/java/sh/ory/model/IsOwnerForProjectBySlug.java index f9c906dd922..e46db552273 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IsOwnerForProjectBySlug.java +++ b/clients/client/java/src/main/java/sh/ory/model/IsOwnerForProjectBySlug.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * IsOwnerForProjectBySlug */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IsOwnerForProjectBySlug { public static final String SERIALIZED_NAME_PROJECT_SLUG = "ProjectSlug"; @SerializedName(SERIALIZED_NAME_PROJECT_SLUG) diff --git a/clients/client/java/src/main/java/sh/ory/model/IsReady200Response.java b/clients/client/java/src/main/java/sh/ory/model/IsReady200Response.java index e4a4f157d38..9f52f35240d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IsReady200Response.java +++ b/clients/client/java/src/main/java/sh/ory/model/IsReady200Response.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * IsReady200Response */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IsReady200Response { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/clients/client/java/src/main/java/sh/ory/model/IsReady503Response.java b/clients/client/java/src/main/java/sh/ory/model/IsReady503Response.java index c37c43d2d99..13eb02b8fd3 100644 --- a/clients/client/java/src/main/java/sh/ory/model/IsReady503Response.java +++ b/clients/client/java/src/main/java/sh/ory/model/IsReady503Response.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * IsReady503Response */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class IsReady503Response { public static final String SERIALIZED_NAME_ERRORS = "errors"; @SerializedName(SERIALIZED_NAME_ERRORS) diff --git a/clients/client/java/src/main/java/sh/ory/model/JsonPatch.java b/clients/client/java/src/main/java/sh/ory/model/JsonPatch.java index 89fe535386b..858bb1f9216 100644 --- a/clients/client/java/src/main/java/sh/ory/model/JsonPatch.java +++ b/clients/client/java/src/main/java/sh/ory/model/JsonPatch.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * A JSONPatch document as defined by RFC 6902 */ @ApiModel(description = "A JSONPatch document as defined by RFC 6902") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class JsonPatch { public static final String SERIALIZED_NAME_FROM = "from"; @SerializedName(SERIALIZED_NAME_FROM) diff --git a/clients/client/java/src/main/java/sh/ory/model/JsonWebKey.java b/clients/client/java/src/main/java/sh/ory/model/JsonWebKey.java index 3bc3790993e..137b4fd8e19 100644 --- a/clients/client/java/src/main/java/sh/ory/model/JsonWebKey.java +++ b/clients/client/java/src/main/java/sh/ory/model/JsonWebKey.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * JsonWebKey */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class JsonWebKey { public static final String SERIALIZED_NAME_ALG = "alg"; @SerializedName(SERIALIZED_NAME_ALG) diff --git a/clients/client/java/src/main/java/sh/ory/model/JsonWebKeySet.java b/clients/client/java/src/main/java/sh/ory/model/JsonWebKeySet.java index 608564c2b67..7d9cbc2211d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/JsonWebKeySet.java +++ b/clients/client/java/src/main/java/sh/ory/model/JsonWebKeySet.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * JSON Web Key Set */ @ApiModel(description = "JSON Web Key Set") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class JsonWebKeySet { public static final String SERIALIZED_NAME_KEYS = "keys"; @SerializedName(SERIALIZED_NAME_KEYS) diff --git a/clients/client/java/src/main/java/sh/ory/model/KetoNamespace.java b/clients/client/java/src/main/java/sh/ory/model/KetoNamespace.java index 183054d8ce1..798e978c907 100644 --- a/clients/client/java/src/main/java/sh/ory/model/KetoNamespace.java +++ b/clients/client/java/src/main/java/sh/ory/model/KetoNamespace.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * KetoNamespace */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class KetoNamespace { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/LoginFlow.java b/clients/client/java/src/main/java/sh/ory/model/LoginFlow.java index 788437bfd87..ec47611842d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/LoginFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/LoginFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -54,7 +54,7 @@ * This object represents a login flow. A login flow is initiated at the \"Initiate Login API / Browser Flow\" endpoint by a client. Once a login flow is completed successfully, a session cookie or session token will be issued. */ @ApiModel(description = "This object represents a login flow. A login flow is initiated at the \"Initiate Login API / Browser Flow\" endpoint by a client. Once a login flow is completed successfully, a session cookie or session token will be issued.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class LoginFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/LogoutFlow.java b/clients/client/java/src/main/java/sh/ory/model/LogoutFlow.java index 193df660a1b..547c2443337 100644 --- a/clients/client/java/src/main/java/sh/ory/model/LogoutFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/LogoutFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Logout Flow */ @ApiModel(description = "Logout Flow") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class LogoutFlow { public static final String SERIALIZED_NAME_LOGOUT_TOKEN = "logout_token"; @SerializedName(SERIALIZED_NAME_LOGOUT_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchema.java b/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchema.java index 7cb6e0d8298..e062ea59a70 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchema.java +++ b/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchema.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Together the name and identity uuid are a unique index constraint. This prevents a user from having schemas with the same name. This also allows schemas to have the same name across the system. */ @ApiModel(description = "Together the name and identity uuid are a unique index constraint. This prevents a user from having schemas with the same name. This also allows schemas to have the same name across the system.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ManagedIdentitySchema { public static final String SERIALIZED_NAME_BLOB_NAME = "blob_name"; @SerializedName(SERIALIZED_NAME_BLOB_NAME) diff --git a/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchemaValidationResult.java b/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchemaValidationResult.java index ecfaeb5c256..a305be21c12 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchemaValidationResult.java +++ b/clients/client/java/src/main/java/sh/ory/model/ManagedIdentitySchemaValidationResult.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Ory Identity Schema Validation Result */ @ApiModel(description = "Ory Identity Schema Validation Result") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ManagedIdentitySchemaValidationResult { public static final String SERIALIZED_NAME_MESSAGE = "message"; @SerializedName(SERIALIZED_NAME_MESSAGE) diff --git a/clients/client/java/src/main/java/sh/ory/model/MemberInvite.java b/clients/client/java/src/main/java/sh/ory/model/MemberInvite.java index 6be1eaff3e3..f0a4be85f54 100644 --- a/clients/client/java/src/main/java/sh/ory/model/MemberInvite.java +++ b/clients/client/java/src/main/java/sh/ory/model/MemberInvite.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * MemberInvite */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class MemberInvite { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/Message.java b/clients/client/java/src/main/java/sh/ory/model/Message.java index 30235a71b74..1b876b18672 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Message.java +++ b/clients/client/java/src/main/java/sh/ory/model/Message.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -54,7 +54,7 @@ /** * Message */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Message { public static final String SERIALIZED_NAME_BODY = "body"; @SerializedName(SERIALIZED_NAME_BODY) diff --git a/clients/client/java/src/main/java/sh/ory/model/MessageDispatch.java b/clients/client/java/src/main/java/sh/ory/model/MessageDispatch.java index 9434774be22..335b93cb55c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/MessageDispatch.java +++ b/clients/client/java/src/main/java/sh/ory/model/MessageDispatch.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * MessageDispatch represents an attempt of sending a courier message It contains the status of the attempt (failed or successful) and the error if any occured */ @ApiModel(description = "MessageDispatch represents an attempt of sending a courier message It contains the status of the attempt (failed or successful) and the error if any occured") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class MessageDispatch { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/MetricsDatapoint.java b/clients/client/java/src/main/java/sh/ory/model/MetricsDatapoint.java index 6ea28557f3b..79958fdbb93 100644 --- a/clients/client/java/src/main/java/sh/ory/model/MetricsDatapoint.java +++ b/clients/client/java/src/main/java/sh/ory/model/MetricsDatapoint.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Represents a single datapoint/bucket of a time series */ @ApiModel(description = "Represents a single datapoint/bucket of a time series") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class MetricsDatapoint { public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) diff --git a/clients/client/java/src/main/java/sh/ory/model/Namespace.java b/clients/client/java/src/main/java/sh/ory/model/Namespace.java index d92e6ba4ef6..f2e443bb430 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Namespace.java +++ b/clients/client/java/src/main/java/sh/ory/model/Namespace.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * Namespace */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Namespace { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/clients/client/java/src/main/java/sh/ory/model/NeedsPrivilegedSessionError.java b/clients/client/java/src/main/java/sh/ory/model/NeedsPrivilegedSessionError.java index 24c6ed20eb3..4515c5280aa 100644 --- a/clients/client/java/src/main/java/sh/ory/model/NeedsPrivilegedSessionError.java +++ b/clients/client/java/src/main/java/sh/ory/model/NeedsPrivilegedSessionError.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * NeedsPrivilegedSessionError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class NeedsPrivilegedSessionError { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/NormalizedProject.java b/clients/client/java/src/main/java/sh/ory/model/NormalizedProject.java index dd3f56cdd45..ffa833e04ff 100644 --- a/clients/client/java/src/main/java/sh/ory/model/NormalizedProject.java +++ b/clients/client/java/src/main/java/sh/ory/model/NormalizedProject.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ /** * NormalizedProject */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class NormalizedProject { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevision.java b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevision.java index 8f4ab851ecd..48cda3d6561 100644 --- a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevision.java +++ b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevision.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -56,7 +56,7 @@ /** * NormalizedProjectRevision */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class NormalizedProjectRevision { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @@ -352,6 +352,10 @@ public HydraStrategiesScopeEnum read(final JsonReader jsonReader) throws IOExcep @SerializedName(SERIALIZED_NAME_KRATOS_COURIER_SMTP_HEADERS) private Object kratosCourierSmtpHeaders; + public static final String SERIALIZED_NAME_KRATOS_COURIER_SMTP_LOCAL_NAME = "kratos_courier_smtp_local_name"; + @SerializedName(SERIALIZED_NAME_KRATOS_COURIER_SMTP_LOCAL_NAME) + private String kratosCourierSmtpLocalName; + public static final String SERIALIZED_NAME_KRATOS_COURIER_TEMPLATES_RECOVERY_CODE_INVALID_EMAIL_BODY_HTML = "kratos_courier_templates_recovery_code_invalid_email_body_html"; @SerializedName(SERIALIZED_NAME_KRATOS_COURIER_TEMPLATES_RECOVERY_CODE_INVALID_EMAIL_BODY_HTML) private String kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml; @@ -2085,6 +2089,29 @@ public void setKratosCourierSmtpHeaders(Object kratosCourierSmtpHeaders) { } + public NormalizedProjectRevision kratosCourierSmtpLocalName(String kratosCourierSmtpLocalName) { + + this.kratosCourierSmtpLocalName = kratosCourierSmtpLocalName; + return this; + } + + /** + * Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + * @return kratosCourierSmtpLocalName + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting.") + + public String getKratosCourierSmtpLocalName() { + return kratosCourierSmtpLocalName; + } + + + public void setKratosCourierSmtpLocalName(String kratosCourierSmtpLocalName) { + this.kratosCourierSmtpLocalName = kratosCourierSmtpLocalName; + } + + public NormalizedProjectRevision kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml(String kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml) { this.kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml = kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml; @@ -4675,6 +4702,7 @@ public boolean equals(Object o) { Objects.equals(this.kratosCourierSmtpFromAddress, normalizedProjectRevision.kratosCourierSmtpFromAddress) && Objects.equals(this.kratosCourierSmtpFromName, normalizedProjectRevision.kratosCourierSmtpFromName) && Objects.equals(this.kratosCourierSmtpHeaders, normalizedProjectRevision.kratosCourierSmtpHeaders) && + Objects.equals(this.kratosCourierSmtpLocalName, normalizedProjectRevision.kratosCourierSmtpLocalName) && Objects.equals(this.kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml, normalizedProjectRevision.kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml) && Objects.equals(this.kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext, normalizedProjectRevision.kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext) && Objects.equals(this.kratosCourierTemplatesRecoveryCodeInvalidEmailSubject, normalizedProjectRevision.kratosCourierTemplatesRecoveryCodeInvalidEmailSubject) && @@ -4789,7 +4817,7 @@ private static boolean equalsNullable(JsonNullable a, JsonNullable b) @Override public int hashCode() { - return Objects.hash(createdAt, disableAccountExperienceWelcomeScreen, hydraOauth2AllowedTopLevelClaims, hydraOauth2ClientCredentialsDefaultGrantAllowedScope, hydraOauth2ExcludeNotBeforeClaim, hydraOauth2GrantJwtIatOptional, hydraOauth2GrantJwtJtiOptional, hydraOauth2GrantJwtMaxTtl, hydraOauth2PkceEnforced, hydraOauth2PkceEnforcedForPublicClients, hydraOauth2RefreshTokenHook, hydraOauth2TokenHook, hydraOidcDynamicClientRegistrationDefaultScope, hydraOidcDynamicClientRegistrationEnabled, hydraOidcSubjectIdentifiersPairwiseSalt, hydraOidcSubjectIdentifiersSupportedTypes, hydraSecretsCookie, hydraSecretsSystem, hydraServeCookiesSameSiteLegacyWorkaround, hydraServeCookiesSameSiteMode, hydraStrategiesAccessToken, hydraStrategiesScope, hydraTtlAccessToken, hydraTtlAuthCode, hydraTtlIdToken, hydraTtlLoginConsentRequest, hydraTtlRefreshToken, hydraUrlsConsent, hydraUrlsError, hydraUrlsLogin, hydraUrlsLogout, hydraUrlsPostLogoutRedirect, hydraUrlsSelfIssuer, hydraWebfingerJwksBroadcastKeys, hydraWebfingerOidcDiscoveryAuthUrl, hydraWebfingerOidcDiscoveryClientRegistrationUrl, hydraWebfingerOidcDiscoveryJwksUrl, hydraWebfingerOidcDiscoverySupportedClaims, hydraWebfingerOidcDiscoverySupportedScope, hydraWebfingerOidcDiscoveryTokenUrl, hydraWebfingerOidcDiscoveryUserinfoUrl, id, ketoNamespaceConfiguration, ketoNamespaces, ketoReadMaxDepth, kratosCookiesSameSite, kratosCourierSmtpConnectionUri, kratosCourierSmtpFromAddress, kratosCourierSmtpFromName, kratosCourierSmtpHeaders, kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml, kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext, kratosCourierTemplatesRecoveryCodeInvalidEmailSubject, kratosCourierTemplatesRecoveryCodeValidEmailBodyHtml, kratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext, kratosCourierTemplatesRecoveryCodeValidEmailSubject, kratosCourierTemplatesRecoveryInvalidEmailBodyHtml, kratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext, kratosCourierTemplatesRecoveryInvalidEmailSubject, kratosCourierTemplatesRecoveryValidEmailBodyHtml, kratosCourierTemplatesRecoveryValidEmailBodyPlaintext, kratosCourierTemplatesRecoveryValidEmailSubject, kratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml, kratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext, kratosCourierTemplatesVerificationCodeInvalidEmailSubject, kratosCourierTemplatesVerificationCodeValidEmailBodyHtml, kratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext, kratosCourierTemplatesVerificationCodeValidEmailSubject, kratosCourierTemplatesVerificationInvalidEmailBodyHtml, kratosCourierTemplatesVerificationInvalidEmailBodyPlaintext, kratosCourierTemplatesVerificationInvalidEmailSubject, kratosCourierTemplatesVerificationValidEmailBodyHtml, kratosCourierTemplatesVerificationValidEmailBodyPlaintext, kratosCourierTemplatesVerificationValidEmailSubject, kratosFeatureFlagsCacheableSessions, kratosIdentitySchemas, kratosOauth2ProviderHeaders, kratosOauth2ProviderOverrideReturnTo, kratosOauth2ProviderUrl, kratosSecretsCipher, kratosSecretsCookie, kratosSecretsDefault, kratosSelfserviceAllowedReturnUrls, kratosSelfserviceDefaultBrowserReturnUrl, kratosSelfserviceFlowsErrorUiUrl, kratosSelfserviceFlowsHooks, kratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginLifespan, kratosSelfserviceFlowsLoginUiUrl, kratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsRecoveryEnabled, kratosSelfserviceFlowsRecoveryLifespan, kratosSelfserviceFlowsRecoveryNotifyUnknownRecipients, kratosSelfserviceFlowsRecoveryUiUrl, kratosSelfserviceFlowsRecoveryUse, kratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationEnabled, kratosSelfserviceFlowsRegistrationLifespan, kratosSelfserviceFlowsRegistrationUiUrl, kratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl, kratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl, kratosSelfserviceFlowsSettingsLifespan, kratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge, kratosSelfserviceFlowsSettingsRequiredAal, kratosSelfserviceFlowsSettingsUiUrl, kratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsVerificationEnabled, kratosSelfserviceFlowsVerificationLifespan, kratosSelfserviceFlowsVerificationNotifyUnknownRecipients, kratosSelfserviceFlowsVerificationUiUrl, kratosSelfserviceFlowsVerificationUse, kratosSelfserviceMethodsCodeConfigLifespan, kratosSelfserviceMethodsCodeEnabled, kratosSelfserviceMethodsLinkConfigBaseUrl, kratosSelfserviceMethodsLinkConfigLifespan, kratosSelfserviceMethodsLinkEnabled, kratosSelfserviceMethodsLookupSecretEnabled, kratosSelfserviceMethodsOidcConfigBaseRedirectUri, kratosSelfserviceMethodsOidcConfigProviders, kratosSelfserviceMethodsOidcEnabled, kratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled, kratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled, kratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors, kratosSelfserviceMethodsPasswordConfigMaxBreaches, kratosSelfserviceMethodsPasswordConfigMinPasswordLength, kratosSelfserviceMethodsPasswordEnabled, kratosSelfserviceMethodsProfileEnabled, kratosSelfserviceMethodsTotpConfigIssuer, kratosSelfserviceMethodsTotpEnabled, kratosSelfserviceMethodsWebauthnConfigPasswordless, kratosSelfserviceMethodsWebauthnConfigRpDisplayName, kratosSelfserviceMethodsWebauthnConfigRpIcon, kratosSelfserviceMethodsWebauthnConfigRpId, kratosSelfserviceMethodsWebauthnConfigRpOrigins, kratosSelfserviceMethodsWebauthnEnabled, kratosSessionCookiePersistent, kratosSessionCookieSameSite, kratosSessionLifespan, kratosSessionWhoamiRequiredAal, name, production, projectId, serveAdminCorsAllowedOrigins, serveAdminCorsEnabled, servePublicCorsAllowedOrigins, servePublicCorsEnabled, updatedAt, additionalProperties); + return Objects.hash(createdAt, disableAccountExperienceWelcomeScreen, hydraOauth2AllowedTopLevelClaims, hydraOauth2ClientCredentialsDefaultGrantAllowedScope, hydraOauth2ExcludeNotBeforeClaim, hydraOauth2GrantJwtIatOptional, hydraOauth2GrantJwtJtiOptional, hydraOauth2GrantJwtMaxTtl, hydraOauth2PkceEnforced, hydraOauth2PkceEnforcedForPublicClients, hydraOauth2RefreshTokenHook, hydraOauth2TokenHook, hydraOidcDynamicClientRegistrationDefaultScope, hydraOidcDynamicClientRegistrationEnabled, hydraOidcSubjectIdentifiersPairwiseSalt, hydraOidcSubjectIdentifiersSupportedTypes, hydraSecretsCookie, hydraSecretsSystem, hydraServeCookiesSameSiteLegacyWorkaround, hydraServeCookiesSameSiteMode, hydraStrategiesAccessToken, hydraStrategiesScope, hydraTtlAccessToken, hydraTtlAuthCode, hydraTtlIdToken, hydraTtlLoginConsentRequest, hydraTtlRefreshToken, hydraUrlsConsent, hydraUrlsError, hydraUrlsLogin, hydraUrlsLogout, hydraUrlsPostLogoutRedirect, hydraUrlsSelfIssuer, hydraWebfingerJwksBroadcastKeys, hydraWebfingerOidcDiscoveryAuthUrl, hydraWebfingerOidcDiscoveryClientRegistrationUrl, hydraWebfingerOidcDiscoveryJwksUrl, hydraWebfingerOidcDiscoverySupportedClaims, hydraWebfingerOidcDiscoverySupportedScope, hydraWebfingerOidcDiscoveryTokenUrl, hydraWebfingerOidcDiscoveryUserinfoUrl, id, ketoNamespaceConfiguration, ketoNamespaces, ketoReadMaxDepth, kratosCookiesSameSite, kratosCourierSmtpConnectionUri, kratosCourierSmtpFromAddress, kratosCourierSmtpFromName, kratosCourierSmtpHeaders, kratosCourierSmtpLocalName, kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml, kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext, kratosCourierTemplatesRecoveryCodeInvalidEmailSubject, kratosCourierTemplatesRecoveryCodeValidEmailBodyHtml, kratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext, kratosCourierTemplatesRecoveryCodeValidEmailSubject, kratosCourierTemplatesRecoveryInvalidEmailBodyHtml, kratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext, kratosCourierTemplatesRecoveryInvalidEmailSubject, kratosCourierTemplatesRecoveryValidEmailBodyHtml, kratosCourierTemplatesRecoveryValidEmailBodyPlaintext, kratosCourierTemplatesRecoveryValidEmailSubject, kratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml, kratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext, kratosCourierTemplatesVerificationCodeInvalidEmailSubject, kratosCourierTemplatesVerificationCodeValidEmailBodyHtml, kratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext, kratosCourierTemplatesVerificationCodeValidEmailSubject, kratosCourierTemplatesVerificationInvalidEmailBodyHtml, kratosCourierTemplatesVerificationInvalidEmailBodyPlaintext, kratosCourierTemplatesVerificationInvalidEmailSubject, kratosCourierTemplatesVerificationValidEmailBodyHtml, kratosCourierTemplatesVerificationValidEmailBodyPlaintext, kratosCourierTemplatesVerificationValidEmailSubject, kratosFeatureFlagsCacheableSessions, kratosIdentitySchemas, kratosOauth2ProviderHeaders, kratosOauth2ProviderOverrideReturnTo, kratosOauth2ProviderUrl, kratosSecretsCipher, kratosSecretsCookie, kratosSecretsDefault, kratosSelfserviceAllowedReturnUrls, kratosSelfserviceDefaultBrowserReturnUrl, kratosSelfserviceFlowsErrorUiUrl, kratosSelfserviceFlowsHooks, kratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl, kratosSelfserviceFlowsLoginLifespan, kratosSelfserviceFlowsLoginUiUrl, kratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsRecoveryEnabled, kratosSelfserviceFlowsRecoveryLifespan, kratosSelfserviceFlowsRecoveryNotifyUnknownRecipients, kratosSelfserviceFlowsRecoveryUiUrl, kratosSelfserviceFlowsRecoveryUse, kratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl, kratosSelfserviceFlowsRegistrationEnabled, kratosSelfserviceFlowsRegistrationLifespan, kratosSelfserviceFlowsRegistrationUiUrl, kratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl, kratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl, kratosSelfserviceFlowsSettingsLifespan, kratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge, kratosSelfserviceFlowsSettingsRequiredAal, kratosSelfserviceFlowsSettingsUiUrl, kratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl, kratosSelfserviceFlowsVerificationEnabled, kratosSelfserviceFlowsVerificationLifespan, kratosSelfserviceFlowsVerificationNotifyUnknownRecipients, kratosSelfserviceFlowsVerificationUiUrl, kratosSelfserviceFlowsVerificationUse, kratosSelfserviceMethodsCodeConfigLifespan, kratosSelfserviceMethodsCodeEnabled, kratosSelfserviceMethodsLinkConfigBaseUrl, kratosSelfserviceMethodsLinkConfigLifespan, kratosSelfserviceMethodsLinkEnabled, kratosSelfserviceMethodsLookupSecretEnabled, kratosSelfserviceMethodsOidcConfigBaseRedirectUri, kratosSelfserviceMethodsOidcConfigProviders, kratosSelfserviceMethodsOidcEnabled, kratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled, kratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled, kratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors, kratosSelfserviceMethodsPasswordConfigMaxBreaches, kratosSelfserviceMethodsPasswordConfigMinPasswordLength, kratosSelfserviceMethodsPasswordEnabled, kratosSelfserviceMethodsProfileEnabled, kratosSelfserviceMethodsTotpConfigIssuer, kratosSelfserviceMethodsTotpEnabled, kratosSelfserviceMethodsWebauthnConfigPasswordless, kratosSelfserviceMethodsWebauthnConfigRpDisplayName, kratosSelfserviceMethodsWebauthnConfigRpIcon, kratosSelfserviceMethodsWebauthnConfigRpId, kratosSelfserviceMethodsWebauthnConfigRpOrigins, kratosSelfserviceMethodsWebauthnEnabled, kratosSessionCookiePersistent, kratosSessionCookieSameSite, kratosSessionLifespan, kratosSessionWhoamiRequiredAal, name, production, projectId, serveAdminCorsAllowedOrigins, serveAdminCorsEnabled, servePublicCorsAllowedOrigins, servePublicCorsEnabled, updatedAt, additionalProperties); } private static int hashCodeNullable(JsonNullable a) { @@ -4853,6 +4881,7 @@ public String toString() { sb.append(" kratosCourierSmtpFromAddress: ").append(toIndentedString(kratosCourierSmtpFromAddress)).append("\n"); sb.append(" kratosCourierSmtpFromName: ").append(toIndentedString(kratosCourierSmtpFromName)).append("\n"); sb.append(" kratosCourierSmtpHeaders: ").append(toIndentedString(kratosCourierSmtpHeaders)).append("\n"); + sb.append(" kratosCourierSmtpLocalName: ").append(toIndentedString(kratosCourierSmtpLocalName)).append("\n"); sb.append(" kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml: ").append(toIndentedString(kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml)).append("\n"); sb.append(" kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext: ").append(toIndentedString(kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext)).append("\n"); sb.append(" kratosCourierTemplatesRecoveryCodeInvalidEmailSubject: ").append(toIndentedString(kratosCourierTemplatesRecoveryCodeInvalidEmailSubject)).append("\n"); @@ -5031,6 +5060,7 @@ private String toIndentedString(Object o) { openapiFields.add("kratos_courier_smtp_from_address"); openapiFields.add("kratos_courier_smtp_from_name"); openapiFields.add("kratos_courier_smtp_headers"); + openapiFields.add("kratos_courier_smtp_local_name"); openapiFields.add("kratos_courier_templates_recovery_code_invalid_email_body_html"); openapiFields.add("kratos_courier_templates_recovery_code_invalid_email_body_plaintext"); openapiFields.add("kratos_courier_templates_recovery_code_invalid_email_subject"); @@ -5294,6 +5324,9 @@ public static void validateJsonObject(JsonObject jsonObj) throws IOException { if ((jsonObj.get("kratos_courier_smtp_from_name") != null && !jsonObj.get("kratos_courier_smtp_from_name").isJsonNull()) && !jsonObj.get("kratos_courier_smtp_from_name").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `kratos_courier_smtp_from_name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("kratos_courier_smtp_from_name").toString())); } + if ((jsonObj.get("kratos_courier_smtp_local_name") != null && !jsonObj.get("kratos_courier_smtp_local_name").isJsonNull()) && !jsonObj.get("kratos_courier_smtp_local_name").isJsonPrimitive()) { + throw new IllegalArgumentException(String.format("Expected the field `kratos_courier_smtp_local_name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("kratos_courier_smtp_local_name").toString())); + } if ((jsonObj.get("kratos_courier_templates_recovery_code_invalid_email_body_html") != null && !jsonObj.get("kratos_courier_templates_recovery_code_invalid_email_body_html").isJsonNull()) && !jsonObj.get("kratos_courier_templates_recovery_code_invalid_email_body_html").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `kratos_courier_templates_recovery_code_invalid_email_body_html` to be a primitive type in the JSON string but got `%s`", jsonObj.get("kratos_courier_templates_recovery_code_invalid_email_body_html").toString())); } diff --git a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionHook.java b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionHook.java index 4d064160769..ea3b58f085a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionHook.java +++ b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionHook.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * NormalizedProjectRevisionHook */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class NormalizedProjectRevisionHook { public static final String SERIALIZED_NAME_CONFIG_KEY = "config_key"; @SerializedName(SERIALIZED_NAME_CONFIG_KEY) diff --git a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionIdentitySchema.java b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionIdentitySchema.java index cdba30bb0b5..56b71ced5c5 100644 --- a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionIdentitySchema.java +++ b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionIdentitySchema.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * NormalizedProjectRevisionIdentitySchema */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class NormalizedProjectRevisionIdentitySchema { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProvider.java b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProvider.java index 30671972d53..163abb3ed60 100644 --- a/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProvider.java +++ b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProvider.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * NormalizedProjectRevisionThirdPartyProvider */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class NormalizedProjectRevisionThirdPartyProvider { public static final String SERIALIZED_NAME_APPLE_PRIVATE_KEY = "apple_private_key"; @SerializedName(SERIALIZED_NAME_APPLE_PRIVATE_KEY) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2Client.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2Client.java index 07c2a4077a8..d6eacc28f3d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2Client.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2Client.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ * OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. */ @ApiModel(description = "OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2Client { public static final String SERIALIZED_NAME_ACCESS_TOKEN_STRATEGY = "access_token_strategy"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN_STRATEGY) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2ClientTokenLifespans.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2ClientTokenLifespans.java index a8b4990d382..327f3b74163 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2ClientTokenLifespans.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2ClientTokenLifespans.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Lifespans of different token types issued for this OAuth 2.0 Client. */ @ApiModel(description = "Lifespans of different token types issued for this OAuth 2.0 Client.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2ClientTokenLifespans { public static final String SERIALIZED_NAME_AUTHORIZATION_CODE_GRANT_ACCESS_TOKEN_LIFESPAN = "authorization_code_grant_access_token_lifespan"; @SerializedName(SERIALIZED_NAME_AUTHORIZATION_CODE_GRANT_ACCESS_TOKEN_LIFESPAN) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequest.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequest.java index 6e16694459e..37ffcbd3ff4 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequest.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * OAuth2ConsentRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2ConsentRequest { public static final String SERIALIZED_NAME_ACR = "acr"; @SerializedName(SERIALIZED_NAME_ACR) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContext.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContext.java index 70a08e597b7..92f72f285af 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContext.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContext.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * OAuth2ConsentRequestOpenIDConnectContext */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2ConsentRequestOpenIDConnectContext { public static final String SERIALIZED_NAME_ACR_VALUES = "acr_values"; @SerializedName(SERIALIZED_NAME_ACR_VALUES) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSession.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSession.java index 4ffd28cf770..ee561fdb7d2 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSession.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSession.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -55,7 +55,7 @@ * A completed OAuth 2.0 Consent Session. */ @ApiModel(description = "A completed OAuth 2.0 Consent Session.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2ConsentSession { public static final String SERIALIZED_NAME_CONSENT_REQUEST = "consent_request"; @SerializedName(SERIALIZED_NAME_CONSENT_REQUEST) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSessionExpiresAt.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSessionExpiresAt.java index bc6874afdda..1151e0d8bb8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSessionExpiresAt.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2ConsentSessionExpiresAt.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * OAuth2ConsentSessionExpiresAt */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2ConsentSessionExpiresAt { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2LoginRequest.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2LoginRequest.java index 444ab5d1171..4ff4e76a58e 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2LoginRequest.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2LoginRequest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * OAuth2LoginRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2LoginRequest { public static final String SERIALIZED_NAME_CHALLENGE = "challenge"; @SerializedName(SERIALIZED_NAME_CHALLENGE) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2LogoutRequest.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2LogoutRequest.java index f384513ee5c..22b3561b053 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2LogoutRequest.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2LogoutRequest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * OAuth2LogoutRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2LogoutRequest { public static final String SERIALIZED_NAME_CHALLENGE = "challenge"; @SerializedName(SERIALIZED_NAME_CHALLENGE) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2RedirectTo.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2RedirectTo.java index 9fc3f9bba7c..25204506a60 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2RedirectTo.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2RedirectTo.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Contains a redirect URL used to complete a login, consent, or logout request. */ @ApiModel(description = "Contains a redirect URL used to complete a login, consent, or logout request.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2RedirectTo { public static final String SERIALIZED_NAME_REDIRECT_TO = "redirect_to"; @SerializedName(SERIALIZED_NAME_REDIRECT_TO) diff --git a/clients/client/java/src/main/java/sh/ory/model/OAuth2TokenExchange.java b/clients/client/java/src/main/java/sh/ory/model/OAuth2TokenExchange.java index 8b1721ef8e7..836d603a12c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OAuth2TokenExchange.java +++ b/clients/client/java/src/main/java/sh/ory/model/OAuth2TokenExchange.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * OAuth2 Token Exchange Result */ @ApiModel(description = "OAuth2 Token Exchange Result") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OAuth2TokenExchange { public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token"; @SerializedName(SERIALIZED_NAME_ACCESS_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/OidcConfiguration.java b/clients/client/java/src/main/java/sh/ory/model/OidcConfiguration.java index e03489ba644..973a588d0b4 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OidcConfiguration.java +++ b/clients/client/java/src/main/java/sh/ory/model/OidcConfiguration.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms among others. */ @ApiModel(description = "Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms among others.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OidcConfiguration { public static final String SERIALIZED_NAME_AUTHORIZATION_ENDPOINT = "authorization_endpoint"; @SerializedName(SERIALIZED_NAME_AUTHORIZATION_ENDPOINT) diff --git a/clients/client/java/src/main/java/sh/ory/model/OidcUserInfo.java b/clients/client/java/src/main/java/sh/ory/model/OidcUserInfo.java index 052358a0145..0141e4d6a22 100644 --- a/clients/client/java/src/main/java/sh/ory/model/OidcUserInfo.java +++ b/clients/client/java/src/main/java/sh/ory/model/OidcUserInfo.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * OpenID Connect Userinfo */ @ApiModel(description = "OpenID Connect Userinfo") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class OidcUserInfo { public static final String SERIALIZED_NAME_BIRTHDATE = "birthdate"; @SerializedName(SERIALIZED_NAME_BIRTHDATE) diff --git a/clients/client/java/src/main/java/sh/ory/model/Pagination.java b/clients/client/java/src/main/java/sh/ory/model/Pagination.java index 682e15c963a..4026af8fd49 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Pagination.java +++ b/clients/client/java/src/main/java/sh/ory/model/Pagination.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * Pagination */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Pagination { public static final String SERIALIZED_NAME_PAGE = "page"; @SerializedName(SERIALIZED_NAME_PAGE) diff --git a/clients/client/java/src/main/java/sh/ory/model/PaginationHeaders.java b/clients/client/java/src/main/java/sh/ory/model/PaginationHeaders.java index 9d9183b9cbe..7e7310ec9f2 100644 --- a/clients/client/java/src/main/java/sh/ory/model/PaginationHeaders.java +++ b/clients/client/java/src/main/java/sh/ory/model/PaginationHeaders.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * PaginationHeaders */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class PaginationHeaders { public static final String SERIALIZED_NAME_LINK = "link"; @SerializedName(SERIALIZED_NAME_LINK) diff --git a/clients/client/java/src/main/java/sh/ory/model/ParseError.java b/clients/client/java/src/main/java/sh/ory/model/ParseError.java index 678ee7094e4..4706a73cb42 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ParseError.java +++ b/clients/client/java/src/main/java/sh/ory/model/ParseError.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * ParseError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ParseError { public static final String SERIALIZED_NAME_END = "end"; @SerializedName(SERIALIZED_NAME_END) diff --git a/clients/client/java/src/main/java/sh/ory/model/PatchIdentitiesBody.java b/clients/client/java/src/main/java/sh/ory/model/PatchIdentitiesBody.java index 63679dcffdc..136d297162d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/PatchIdentitiesBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/PatchIdentitiesBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Patch Identities Body */ @ApiModel(description = "Patch Identities Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class PatchIdentitiesBody { public static final String SERIALIZED_NAME_IDENTITIES = "identities"; @SerializedName(SERIALIZED_NAME_IDENTITIES) diff --git a/clients/client/java/src/main/java/sh/ory/model/PerformNativeLogoutBody.java b/clients/client/java/src/main/java/sh/ory/model/PerformNativeLogoutBody.java index 71c2ca340aa..b86b5382a90 100644 --- a/clients/client/java/src/main/java/sh/ory/model/PerformNativeLogoutBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/PerformNativeLogoutBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Perform Native Logout Request Body */ @ApiModel(description = "Perform Native Logout Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class PerformNativeLogoutBody { public static final String SERIALIZED_NAME_SESSION_TOKEN = "session_token"; @SerializedName(SERIALIZED_NAME_SESSION_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/Plan.java b/clients/client/java/src/main/java/sh/ory/model/Plan.java index a05508bcf49..814a7686f29 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Plan.java +++ b/clients/client/java/src/main/java/sh/ory/model/Plan.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * Plan */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Plan { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/clients/client/java/src/main/java/sh/ory/model/PlanDetails.java b/clients/client/java/src/main/java/sh/ory/model/PlanDetails.java index 536324de66b..73174cf69ec 100644 --- a/clients/client/java/src/main/java/sh/ory/model/PlanDetails.java +++ b/clients/client/java/src/main/java/sh/ory/model/PlanDetails.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * PlanDetails */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class PlanDetails { public static final String SERIALIZED_NAME_BASE_FEE_MONTHLY = "base_fee_monthly"; @SerializedName(SERIALIZED_NAME_BASE_FEE_MONTHLY) diff --git a/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionBody.java b/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionBody.java index ef8cf750eea..361df439f9f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Check Permission using Post Request Body */ @ApiModel(description = "Check Permission using Post Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class PostCheckPermissionBody { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; @SerializedName(SERIALIZED_NAME_NAMESPACE) diff --git a/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionOrErrorBody.java b/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionOrErrorBody.java index ea5971607a6..ee1db5c1e9f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionOrErrorBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/PostCheckPermissionOrErrorBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Post Check Permission Or Error Body */ @ApiModel(description = "Post Check Permission Or Error Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class PostCheckPermissionOrErrorBody { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; @SerializedName(SERIALIZED_NAME_NAMESPACE) diff --git a/clients/client/java/src/main/java/sh/ory/model/Project.java b/clients/client/java/src/main/java/sh/ory/model/Project.java index c9983496f78..8207ec9f5da 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Project.java +++ b/clients/client/java/src/main/java/sh/ory/model/Project.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * Project */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Project { public static final String SERIALIZED_NAME_CORS_ADMIN = "cors_admin"; @SerializedName(SERIALIZED_NAME_CORS_ADMIN) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectApiKey.java b/clients/client/java/src/main/java/sh/ory/model/ProjectApiKey.java index 6bd2d9d1877..a9cb5fdc061 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectApiKey.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectApiKey.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * ProjectApiKey */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectApiKey { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectBranding.java b/clients/client/java/src/main/java/sh/ory/model/ProjectBranding.java index ac0eadfee41..ff574257668 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectBranding.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectBranding.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * ProjectBranding */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectBranding { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingColors.java b/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingColors.java index a32956dc2da..08bde39053a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingColors.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingColors.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * ProjectBrandingColors */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectBrandingColors { public static final String SERIALIZED_NAME_ACCENT_DEFAULT_COLOR = "accent_default_color"; @SerializedName(SERIALIZED_NAME_ACCENT_DEFAULT_COLOR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingTheme.java b/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingTheme.java index 6dff74f0ac3..d82e52bb8d9 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingTheme.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectBrandingTheme.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * ProjectBrandingTheme */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectBrandingTheme { public static final String SERIALIZED_NAME_ACCENT_DEFAULT_COLOR = "accent_default_color"; @SerializedName(SERIALIZED_NAME_ACCENT_DEFAULT_COLOR) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectHost.java b/clients/client/java/src/main/java/sh/ory/model/ProjectHost.java index 8bcbf86d07b..e864abfb524 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectHost.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectHost.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * ProjectHost */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectHost { public static final String SERIALIZED_NAME_HOST = "host"; @SerializedName(SERIALIZED_NAME_HOST) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectMetadata.java b/clients/client/java/src/main/java/sh/ory/model/ProjectMetadata.java index 692a210420e..610112e6a88 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectMetadata.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectMetadata.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * ProjectMetadata */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectMetadata { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectServiceIdentity.java b/clients/client/java/src/main/java/sh/ory/model/ProjectServiceIdentity.java index 2c14bfafa58..bf6bb442578 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectServiceIdentity.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectServiceIdentity.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * ProjectServiceIdentity */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectServiceIdentity { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectServiceOAuth2.java b/clients/client/java/src/main/java/sh/ory/model/ProjectServiceOAuth2.java index 0fdeb24df00..d92bdc0bf4b 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectServiceOAuth2.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectServiceOAuth2.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * ProjectServiceOAuth2 */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectServiceOAuth2 { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectServicePermission.java b/clients/client/java/src/main/java/sh/ory/model/ProjectServicePermission.java index d6725be77ca..6b76dfbd1c8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectServicePermission.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectServicePermission.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * ProjectServicePermission */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectServicePermission { public static final String SERIALIZED_NAME_CONFIG = "config"; @SerializedName(SERIALIZED_NAME_CONFIG) diff --git a/clients/client/java/src/main/java/sh/ory/model/ProjectServices.java b/clients/client/java/src/main/java/sh/ory/model/ProjectServices.java index 0767588ee58..8c820df7d8a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectServices.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectServices.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ /** * ProjectServices */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class ProjectServices { public static final String SERIALIZED_NAME_IDENTITY = "identity"; @SerializedName(SERIALIZED_NAME_IDENTITY) diff --git a/clients/client/java/src/main/java/sh/ory/model/QuotaUsage.java b/clients/client/java/src/main/java/sh/ory/model/QuotaUsage.java index 2579414354b..0a121fe82e8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/QuotaUsage.java +++ b/clients/client/java/src/main/java/sh/ory/model/QuotaUsage.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * QuotaUsage */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class QuotaUsage { public static final String SERIALIZED_NAME_ADDITIONAL_PRICE = "additional_price"; @SerializedName(SERIALIZED_NAME_ADDITIONAL_PRICE) diff --git a/clients/client/java/src/main/java/sh/ory/model/RFC6749ErrorJson.java b/clients/client/java/src/main/java/sh/ory/model/RFC6749ErrorJson.java index 17c9157f233..bd00345b4f0 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RFC6749ErrorJson.java +++ b/clients/client/java/src/main/java/sh/ory/model/RFC6749ErrorJson.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * RFC6749ErrorJson */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RFC6749ErrorJson { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/RecoveryCodeForIdentity.java b/clients/client/java/src/main/java/sh/ory/model/RecoveryCodeForIdentity.java index 2a1fe91a339..55013669d19 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RecoveryCodeForIdentity.java +++ b/clients/client/java/src/main/java/sh/ory/model/RecoveryCodeForIdentity.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Used when an administrator creates a recovery code for an identity. */ @ApiModel(description = "Used when an administrator creates a recovery code for an identity.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RecoveryCodeForIdentity { public static final String SERIALIZED_NAME_EXPIRES_AT = "expires_at"; @SerializedName(SERIALIZED_NAME_EXPIRES_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/RecoveryFlow.java b/clients/client/java/src/main/java/sh/ory/model/RecoveryFlow.java index 80ef7a73f57..01c567a42dc 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RecoveryFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/RecoveryFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * This request is used when an identity wants to recover their account. We recommend reading the [Account Recovery Documentation](../self-service/flows/password-reset-account-recovery) */ @ApiModel(description = "This request is used when an identity wants to recover their account. We recommend reading the [Account Recovery Documentation](../self-service/flows/password-reset-account-recovery)") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RecoveryFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/RecoveryFlowState.java b/clients/client/java/src/main/java/sh/ory/model/RecoveryFlowState.java index 8f3b2184d72..4ee827fdf1c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RecoveryFlowState.java +++ b/clients/client/java/src/main/java/sh/ory/model/RecoveryFlowState.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/RecoveryIdentityAddress.java b/clients/client/java/src/main/java/sh/ory/model/RecoveryIdentityAddress.java index f990fc14d71..b9f3384c906 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RecoveryIdentityAddress.java +++ b/clients/client/java/src/main/java/sh/ory/model/RecoveryIdentityAddress.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * RecoveryIdentityAddress */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RecoveryIdentityAddress { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/RecoveryLinkForIdentity.java b/clients/client/java/src/main/java/sh/ory/model/RecoveryLinkForIdentity.java index b6b6c88fc41..442ecce7f6a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RecoveryLinkForIdentity.java +++ b/clients/client/java/src/main/java/sh/ory/model/RecoveryLinkForIdentity.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Used when an administrator creates a recovery link for an identity. */ @ApiModel(description = "Used when an administrator creates a recovery link for an identity.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RecoveryLinkForIdentity { public static final String SERIALIZED_NAME_EXPIRES_AT = "expires_at"; @SerializedName(SERIALIZED_NAME_EXPIRES_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/RegistrationFlow.java b/clients/client/java/src/main/java/sh/ory/model/RegistrationFlow.java index a551248b2b4..308de1e965e 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RegistrationFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/RegistrationFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * RegistrationFlow */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RegistrationFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/RejectOAuth2Request.java b/clients/client/java/src/main/java/sh/ory/model/RejectOAuth2Request.java index 52910389157..f247e766ca2 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RejectOAuth2Request.java +++ b/clients/client/java/src/main/java/sh/ory/model/RejectOAuth2Request.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * RejectOAuth2Request */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RejectOAuth2Request { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/RelationQuery.java b/clients/client/java/src/main/java/sh/ory/model/RelationQuery.java index ce60677747e..2a64b2c7e61 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RelationQuery.java +++ b/clients/client/java/src/main/java/sh/ory/model/RelationQuery.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Relation Query */ @ApiModel(description = "Relation Query") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RelationQuery { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; @SerializedName(SERIALIZED_NAME_NAMESPACE) diff --git a/clients/client/java/src/main/java/sh/ory/model/Relationship.java b/clients/client/java/src/main/java/sh/ory/model/Relationship.java index 76b9a6b3b79..f0f3f816c67 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Relationship.java +++ b/clients/client/java/src/main/java/sh/ory/model/Relationship.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Relationship */ @ApiModel(description = "Relationship") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Relationship { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; @SerializedName(SERIALIZED_NAME_NAMESPACE) diff --git a/clients/client/java/src/main/java/sh/ory/model/RelationshipNamespaces.java b/clients/client/java/src/main/java/sh/ory/model/RelationshipNamespaces.java index 3a8d46ceb6f..5fde181629d 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RelationshipNamespaces.java +++ b/clients/client/java/src/main/java/sh/ory/model/RelationshipNamespaces.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Relationship Namespace List */ @ApiModel(description = "Relationship Namespace List") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RelationshipNamespaces { public static final String SERIALIZED_NAME_NAMESPACES = "namespaces"; @SerializedName(SERIALIZED_NAME_NAMESPACES) diff --git a/clients/client/java/src/main/java/sh/ory/model/RelationshipPatch.java b/clients/client/java/src/main/java/sh/ory/model/RelationshipPatch.java index 4f9ced7e5da..33f4894782f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/RelationshipPatch.java +++ b/clients/client/java/src/main/java/sh/ory/model/RelationshipPatch.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * Payload for patching a relationship */ @ApiModel(description = "Payload for patching a relationship") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class RelationshipPatch { /** * Gets or Sets action diff --git a/clients/client/java/src/main/java/sh/ory/model/Relationships.java b/clients/client/java/src/main/java/sh/ory/model/Relationships.java index d015187f2f4..d746a2cb274 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Relationships.java +++ b/clients/client/java/src/main/java/sh/ory/model/Relationships.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Paginated Relationship List */ @ApiModel(description = "Paginated Relationship List") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Relationships { public static final String SERIALIZED_NAME_NEXT_PAGE_TOKEN = "next_page_token"; @SerializedName(SERIALIZED_NAME_NEXT_PAGE_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/SchemaPatch.java b/clients/client/java/src/main/java/sh/ory/model/SchemaPatch.java index e73489cf385..be48bfa5acf 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SchemaPatch.java +++ b/clients/client/java/src/main/java/sh/ory/model/SchemaPatch.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * SchemaPatch */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SchemaPatch { public static final String SERIALIZED_NAME_DATA = "data"; @SerializedName(SERIALIZED_NAME_DATA) diff --git a/clients/client/java/src/main/java/sh/ory/model/SelfServiceFlowExpiredError.java b/clients/client/java/src/main/java/sh/ory/model/SelfServiceFlowExpiredError.java index 3009235d958..9135817fd78 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SelfServiceFlowExpiredError.java +++ b/clients/client/java/src/main/java/sh/ory/model/SelfServiceFlowExpiredError.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Is sent when a flow is expired */ @ApiModel(description = "Is sent when a flow is expired") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SelfServiceFlowExpiredError { public static final String SERIALIZED_NAME_ERROR = "error"; @SerializedName(SERIALIZED_NAME_ERROR) diff --git a/clients/client/java/src/main/java/sh/ory/model/Session.java b/clients/client/java/src/main/java/sh/ory/model/Session.java index 96912458532..38213a918da 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Session.java +++ b/clients/client/java/src/main/java/sh/ory/model/Session.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -56,7 +56,7 @@ * A Session */ @ApiModel(description = "A Session") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Session { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/SessionAuthenticationMethod.java b/clients/client/java/src/main/java/sh/ory/model/SessionAuthenticationMethod.java index d5e753ae86d..44cc838b13f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SessionAuthenticationMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/SessionAuthenticationMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * A singular authenticator used during authentication / login. */ @ApiModel(description = "A singular authenticator used during authentication / login.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SessionAuthenticationMethod { public static final String SERIALIZED_NAME_AAL = "aal"; @SerializedName(SERIALIZED_NAME_AAL) diff --git a/clients/client/java/src/main/java/sh/ory/model/SessionDevice.java b/clients/client/java/src/main/java/sh/ory/model/SessionDevice.java index bcc920c1803..3b89827b1a6 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SessionDevice.java +++ b/clients/client/java/src/main/java/sh/ory/model/SessionDevice.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Device corresponding to a Session */ @ApiModel(description = "Device corresponding to a Session") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SessionDevice { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/SetActiveProjectInConsoleBody.java b/clients/client/java/src/main/java/sh/ory/model/SetActiveProjectInConsoleBody.java index 21cc475d8e6..f87fa385d8e 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SetActiveProjectInConsoleBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/SetActiveProjectInConsoleBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Set active project in the Ory Network Console Request Body */ @ApiModel(description = "Set active project in the Ory Network Console Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SetActiveProjectInConsoleBody { public static final String SERIALIZED_NAME_PROJECT_ID = "project_id"; @SerializedName(SERIALIZED_NAME_PROJECT_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/SetCustomDomainBody.java b/clients/client/java/src/main/java/sh/ory/model/SetCustomDomainBody.java index 3c338f5e9c0..ebeac08f5dc 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SetCustomDomainBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/SetCustomDomainBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Update Custom Hostname Body */ @ApiModel(description = "Update Custom Hostname Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SetCustomDomainBody { public static final String SERIALIZED_NAME_COOKIE_DOMAIN = "cookie_domain"; @SerializedName(SERIALIZED_NAME_COOKIE_DOMAIN) diff --git a/clients/client/java/src/main/java/sh/ory/model/SetProject.java b/clients/client/java/src/main/java/sh/ory/model/SetProject.java index 86e16cef694..47aa3431806 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SetProject.java +++ b/clients/client/java/src/main/java/sh/ory/model/SetProject.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * SetProject */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SetProject { public static final String SERIALIZED_NAME_CORS_ADMIN = "cors_admin"; @SerializedName(SERIALIZED_NAME_CORS_ADMIN) diff --git a/clients/client/java/src/main/java/sh/ory/model/SetProjectBrandingThemeBody.java b/clients/client/java/src/main/java/sh/ory/model/SetProjectBrandingThemeBody.java index 07a6412b161..f7fc09ac9fa 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SetProjectBrandingThemeBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/SetProjectBrandingThemeBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * SetProjectBrandingThemeBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SetProjectBrandingThemeBody { public static final String SERIALIZED_NAME_LOGO_TYPE = "logo_type"; @SerializedName(SERIALIZED_NAME_LOGO_TYPE) diff --git a/clients/client/java/src/main/java/sh/ory/model/SettingsFlow.java b/clients/client/java/src/main/java/sh/ory/model/SettingsFlow.java index 1b1fa923c36..ce1cb5a6ada 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SettingsFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/SettingsFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -56,7 +56,7 @@ * This flow is used when an identity wants to update settings (e.g. profile data, passwords, ...) in a selfservice manner. We recommend reading the [User Settings Documentation](../self-service/flows/user-settings) */ @ApiModel(description = "This flow is used when an identity wants to update settings (e.g. profile data, passwords, ...) in a selfservice manner. We recommend reading the [User Settings Documentation](../self-service/flows/user-settings)") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SettingsFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/SettingsFlowState.java b/clients/client/java/src/main/java/sh/ory/model/SettingsFlowState.java index ae90c583300..2120d391a2e 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SettingsFlowState.java +++ b/clients/client/java/src/main/java/sh/ory/model/SettingsFlowState.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/SourcePosition.java b/clients/client/java/src/main/java/sh/ory/model/SourcePosition.java index 4e0e8515f44..0fa91dbe5cf 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SourcePosition.java +++ b/clients/client/java/src/main/java/sh/ory/model/SourcePosition.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * SourcePosition */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SourcePosition { public static final String SERIALIZED_NAME_LINE = "Line"; @SerializedName(SERIALIZED_NAME_LINE) diff --git a/clients/client/java/src/main/java/sh/ory/model/StripeCustomer.java b/clients/client/java/src/main/java/sh/ory/model/StripeCustomer.java index eb5450d1ddd..b777e4c07ca 100644 --- a/clients/client/java/src/main/java/sh/ory/model/StripeCustomer.java +++ b/clients/client/java/src/main/java/sh/ory/model/StripeCustomer.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * StripeCustomer */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class StripeCustomer { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/SubjectSet.java b/clients/client/java/src/main/java/sh/ory/model/SubjectSet.java index 7425327ef26..b1da9cfd132 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SubjectSet.java +++ b/clients/client/java/src/main/java/sh/ory/model/SubjectSet.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * SubjectSet */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SubjectSet { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; @SerializedName(SERIALIZED_NAME_NAMESPACE) diff --git a/clients/client/java/src/main/java/sh/ory/model/Subscription.java b/clients/client/java/src/main/java/sh/ory/model/Subscription.java index 7443ee0ad33..f3e8132d0f8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Subscription.java +++ b/clients/client/java/src/main/java/sh/ory/model/Subscription.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * Subscription */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Subscription { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/SuccessfulCodeExchangeResponse.java b/clients/client/java/src/main/java/sh/ory/model/SuccessfulCodeExchangeResponse.java index a487f4a4635..022490b885e 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SuccessfulCodeExchangeResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/SuccessfulCodeExchangeResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * The Response for Registration Flows via API */ @ApiModel(description = "The Response for Registration Flows via API") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SuccessfulCodeExchangeResponse { public static final String SERIALIZED_NAME_SESSION = "session"; @SerializedName(SERIALIZED_NAME_SESSION) diff --git a/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeLogin.java b/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeLogin.java index e07576904be..1aadd331bd8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeLogin.java +++ b/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeLogin.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * The Response for Login Flows via API */ @ApiModel(description = "The Response for Login Flows via API") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SuccessfulNativeLogin { public static final String SERIALIZED_NAME_SESSION = "session"; @SerializedName(SERIALIZED_NAME_SESSION) diff --git a/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeRegistration.java b/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeRegistration.java index 1a6add8e4a9..3c98274cbd5 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeRegistration.java +++ b/clients/client/java/src/main/java/sh/ory/model/SuccessfulNativeRegistration.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -54,7 +54,7 @@ * The Response for Registration Flows via API */ @ApiModel(description = "The Response for Registration Flows via API") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SuccessfulNativeRegistration { public static final String SERIALIZED_NAME_CONTINUE_WITH = "continue_with"; @SerializedName(SERIALIZED_NAME_CONTINUE_WITH) diff --git a/clients/client/java/src/main/java/sh/ory/model/SuccessfulProjectUpdate.java b/clients/client/java/src/main/java/sh/ory/model/SuccessfulProjectUpdate.java index 6ec9fd8b100..ec8900251f5 100644 --- a/clients/client/java/src/main/java/sh/ory/model/SuccessfulProjectUpdate.java +++ b/clients/client/java/src/main/java/sh/ory/model/SuccessfulProjectUpdate.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ /** * SuccessfulProjectUpdate */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class SuccessfulProjectUpdate { public static final String SERIALIZED_NAME_PROJECT = "project"; @SerializedName(SERIALIZED_NAME_PROJECT) diff --git a/clients/client/java/src/main/java/sh/ory/model/TokenPagination.java b/clients/client/java/src/main/java/sh/ory/model/TokenPagination.java index 081c4f372bf..1ddef3a9054 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TokenPagination.java +++ b/clients/client/java/src/main/java/sh/ory/model/TokenPagination.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * TokenPagination */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TokenPagination { public static final String SERIALIZED_NAME_PAGE_SIZE = "page_size"; @SerializedName(SERIALIZED_NAME_PAGE_SIZE) diff --git a/clients/client/java/src/main/java/sh/ory/model/TokenPaginationHeaders.java b/clients/client/java/src/main/java/sh/ory/model/TokenPaginationHeaders.java index 33baa1e4a62..a767f6eec56 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TokenPaginationHeaders.java +++ b/clients/client/java/src/main/java/sh/ory/model/TokenPaginationHeaders.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * TokenPaginationHeaders */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TokenPaginationHeaders { public static final String SERIALIZED_NAME_LINK = "link"; @SerializedName(SERIALIZED_NAME_LINK) diff --git a/clients/client/java/src/main/java/sh/ory/model/TokenPaginationRequestParameters.java b/clients/client/java/src/main/java/sh/ory/model/TokenPaginationRequestParameters.java index 60a0c41953c..8bf4c93171a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TokenPaginationRequestParameters.java +++ b/clients/client/java/src/main/java/sh/ory/model/TokenPaginationRequestParameters.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ @ApiModel(description = "The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TokenPaginationRequestParameters { public static final String SERIALIZED_NAME_PAGE_SIZE = "page_size"; @SerializedName(SERIALIZED_NAME_PAGE_SIZE) diff --git a/clients/client/java/src/main/java/sh/ory/model/TokenPaginationResponseHeaders.java b/clients/client/java/src/main/java/sh/ory/model/TokenPaginationResponseHeaders.java index 1a33f96e66e..4aea5fe50ce 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TokenPaginationResponseHeaders.java +++ b/clients/client/java/src/main/java/sh/ory/model/TokenPaginationResponseHeaders.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ @ApiModel(description = "The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TokenPaginationResponseHeaders { public static final String SERIALIZED_NAME_LINK = "link"; @SerializedName(SERIALIZED_NAME_LINK) diff --git a/clients/client/java/src/main/java/sh/ory/model/TrustOAuth2JwtGrantIssuer.java b/clients/client/java/src/main/java/sh/ory/model/TrustOAuth2JwtGrantIssuer.java index 0c41c68ac96..ee564f1d404 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TrustOAuth2JwtGrantIssuer.java +++ b/clients/client/java/src/main/java/sh/ory/model/TrustOAuth2JwtGrantIssuer.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ * Trust OAuth2 JWT Bearer Grant Type Issuer Request Body */ @ApiModel(description = "Trust OAuth2 JWT Bearer Grant Type Issuer Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TrustOAuth2JwtGrantIssuer { public static final String SERIALIZED_NAME_ALLOW_ANY_SUBJECT = "allow_any_subject"; @SerializedName(SERIALIZED_NAME_ALLOW_ANY_SUBJECT) diff --git a/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantIssuer.java b/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantIssuer.java index 73c416557db..6ab5cd4807e 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantIssuer.java +++ b/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantIssuer.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ * OAuth2 JWT Bearer Grant Type Issuer Trust Relationship */ @ApiModel(description = "OAuth2 JWT Bearer Grant Type Issuer Trust Relationship") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TrustedOAuth2JwtGrantIssuer { public static final String SERIALIZED_NAME_ALLOW_ANY_SUBJECT = "allow_any_subject"; @SerializedName(SERIALIZED_NAME_ALLOW_ANY_SUBJECT) diff --git a/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKey.java b/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKey.java index 8c9ee058bc6..1067ee87acf 100644 --- a/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKey.java +++ b/clients/client/java/src/main/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKey.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key */ @ApiModel(description = "OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class TrustedOAuth2JwtGrantJsonWebKey { public static final String SERIALIZED_NAME_KID = "kid"; @SerializedName(SERIALIZED_NAME_KID) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiContainer.java b/clients/client/java/src/main/java/sh/ory/model/UiContainer.java index 0cf17503c72..d5351392392 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiContainer.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiContainer.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -53,7 +53,7 @@ * Container represents a HTML Form. The container can work with both HTTP Form and JSON requests */ @ApiModel(description = "Container represents a HTML Form. The container can work with both HTTP Form and JSON requests") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiContainer { public static final String SERIALIZED_NAME_ACTION = "action"; @SerializedName(SERIALIZED_NAME_ACTION) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNode.java b/clients/client/java/src/main/java/sh/ory/model/UiNode.java index 90001c1762e..a441fc433f4 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNode.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNode.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -54,7 +54,7 @@ * Nodes are represented as HTML elements or their native UI equivalents. For example, a node can be an `<img>` tag, or an `<input element>` but also `some plain text`. */ @ApiModel(description = "Nodes are represented as HTML elements or their native UI equivalents. For example, a node can be an `` tag, or an `` but also `some plain text`.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNode { public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; @SerializedName(SERIALIZED_NAME_ATTRIBUTES) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeAnchorAttributes.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeAnchorAttributes.java index e5ecfde6a01..878a6d11cb8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeAnchorAttributes.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeAnchorAttributes.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * UiNodeAnchorAttributes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeAnchorAttributes { public static final String SERIALIZED_NAME_HREF = "href"; @SerializedName(SERIALIZED_NAME_HREF) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeAttributes.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeAttributes.java index 56be53e816a..78e1fd0b0a1 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeAttributes.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeAttributes.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -64,7 +64,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeAttributes extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(UiNodeAttributes.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeImageAttributes.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeImageAttributes.java index 1ab3cd555b5..bcd8f19b47c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeImageAttributes.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeImageAttributes.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * UiNodeImageAttributes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeImageAttributes { public static final String SERIALIZED_NAME_HEIGHT = "height"; @SerializedName(SERIALIZED_NAME_HEIGHT) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeInputAttributes.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeInputAttributes.java index 05c209d7307..9cced511fe1 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeInputAttributes.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeInputAttributes.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * InputAttributes represents the attributes of an input node */ @ApiModel(description = "InputAttributes represents the attributes of an input node") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeInputAttributes { /** * The autocomplete attribute for the input. email InputAttributeAutocompleteEmail tel InputAttributeAutocompleteTel url InputAttributeAutocompleteUrl current-password InputAttributeAutocompleteCurrentPassword new-password InputAttributeAutocompleteNewPassword one-time-code InputAttributeAutocompleteOneTimeCode diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeMeta.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeMeta.java index 6be72b6aa55..ae89aa1f028 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeMeta.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeMeta.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * This might include a label and other information that can optionally be used to render UIs. */ @ApiModel(description = "This might include a label and other information that can optionally be used to render UIs.") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeMeta { public static final String SERIALIZED_NAME_LABEL = "label"; @SerializedName(SERIALIZED_NAME_LABEL) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeScriptAttributes.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeScriptAttributes.java index 0c1954c577d..32d64634e23 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeScriptAttributes.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeScriptAttributes.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * UiNodeScriptAttributes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeScriptAttributes { public static final String SERIALIZED_NAME_ASYNC = "async"; @SerializedName(SERIALIZED_NAME_ASYNC) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiNodeTextAttributes.java b/clients/client/java/src/main/java/sh/ory/model/UiNodeTextAttributes.java index b4c7ea6db0f..1bd7153b3be 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiNodeTextAttributes.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiNodeTextAttributes.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * UiNodeTextAttributes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiNodeTextAttributes { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/clients/client/java/src/main/java/sh/ory/model/UiText.java b/clients/client/java/src/main/java/sh/ory/model/UiText.java index ef41e103e7e..ad4c96e8ede 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UiText.java +++ b/clients/client/java/src/main/java/sh/ory/model/UiText.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * UiText */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UiText { public static final String SERIALIZED_NAME_CONTEXT = "context"; @SerializedName(SERIALIZED_NAME_CONTEXT) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateIdentityBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateIdentityBody.java index 2520292049d..00e1e6cce15 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateIdentityBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateIdentityBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Update Identity Body */ @ApiModel(description = "Update Identity Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateIdentityBody { public static final String SERIALIZED_NAME_CREDENTIALS = "credentials"; @SerializedName(SERIALIZED_NAME_CREDENTIALS) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowBody.java index 157a801accc..652d12f4f2c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -62,7 +62,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateLoginFlowBody extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(UpdateLoginFlowBody.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethod.java index 297d529bb87..d5128fd6a34 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Login Flow with Lookup Secret Method */ @ApiModel(description = "Update Login Flow with Lookup Secret Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateLoginFlowWithLookupSecretMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithOidcMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithOidcMethod.java index 1151a31aa51..9b21d2b4b37 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithOidcMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithOidcMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Login Flow with OpenID Connect Method */ @ApiModel(description = "Update Login Flow with OpenID Connect Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateLoginFlowWithOidcMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithPasswordMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithPasswordMethod.java index 7b00dd5f953..9de42b15255 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithPasswordMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithPasswordMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Login Flow with Password Method */ @ApiModel(description = "Update Login Flow with Password Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateLoginFlowWithPasswordMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithTotpMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithTotpMethod.java index f565a3850d3..9c349099540 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithTotpMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithTotpMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Login Flow with TOTP Method */ @ApiModel(description = "Update Login Flow with TOTP Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateLoginFlowWithTotpMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethod.java index 069b32f532e..f8ce2c00e2f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Login Flow with WebAuthn Method */ @ApiModel(description = "Update Login Flow with WebAuthn Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateLoginFlowWithWebAuthnMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowBody.java index 1569bed25aa..bc3edec7000 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -59,7 +59,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRecoveryFlowBody extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(UpdateRecoveryFlowBody.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethod.java index 770c5c77953..51a836058a5 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Recovery Flow with Code Method */ @ApiModel(description = "Update Recovery Flow with Code Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRecoveryFlowWithCodeMethod { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethod.java index 6344a76cce1..313a1642cc5 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Recovery Flow with Link Method */ @ApiModel(description = "Update Recovery Flow with Link Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRecoveryFlowWithLinkMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowBody.java index 98d6fff7a30..25a64ccfe2f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -60,7 +60,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRegistrationFlowBody extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(UpdateRegistrationFlowBody.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethod.java index cc12dca216f..d7d029c4229 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Registration Flow with OpenID Connect Method */ @ApiModel(description = "Update Registration Flow with OpenID Connect Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRegistrationFlowWithOidcMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethod.java index 771cee767a5..be466925ab8 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Registration Flow with Password Method */ @ApiModel(description = "Update Registration Flow with Password Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRegistrationFlowWithPasswordMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethod.java index 180d1ad5f40..b8b329e20eb 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Registration Flow with WebAuthn Method */ @ApiModel(description = "Update Registration Flow with WebAuthn Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateRegistrationFlowWithWebAuthnMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowBody.java index 33c7490d9c9..8559ca7fc80 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -63,7 +63,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowBody extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(UpdateSettingsFlowBody.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithLookupMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithLookupMethod.java index e619951f05d..619e34000e9 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithLookupMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithLookupMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Settings Flow with Lookup Method */ @ApiModel(description = "Update Settings Flow with Lookup Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowWithLookupMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithOidcMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithOidcMethod.java index 2846bfa91be..d8ec4781d14 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithOidcMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithOidcMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Settings Flow with OpenID Connect Method */ @ApiModel(description = "Update Settings Flow with OpenID Connect Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowWithOidcMethod { public static final String SERIALIZED_NAME_FLOW = "flow"; @SerializedName(SERIALIZED_NAME_FLOW) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethod.java index a59cac667f7..149a7d87b6f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Settings Flow with Password Method */ @ApiModel(description = "Update Settings Flow with Password Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowWithPasswordMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithProfileMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithProfileMethod.java index 55189a7ddfe..c652af7bfec 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithProfileMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithProfileMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Settings Flow with Profile Method */ @ApiModel(description = "Update Settings Flow with Profile Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowWithProfileMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithTotpMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithTotpMethod.java index f04dea37152..e5e8c3a5515 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithTotpMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithTotpMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Settings Flow with TOTP Method */ @ApiModel(description = "Update Settings Flow with TOTP Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowWithTotpMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethod.java index 8bf4cb65201..ddbaef81052 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Settings Flow with WebAuthn Method */ @ApiModel(description = "Update Settings Flow with WebAuthn Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSettingsFlowWithWebAuthnMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateSubscriptionBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateSubscriptionBody.java index c0f9e517c7f..0dc90dc0419 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateSubscriptionBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateSubscriptionBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Subscription Request Body */ @ApiModel(description = "Update Subscription Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateSubscriptionBody { /** * monthly Monthly yearly Yearly diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowBody.java b/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowBody.java index 463727c98d7..b3151d943aa 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowBody.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowBody.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -59,7 +59,7 @@ import sh.ory.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateVerificationFlowBody extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(UpdateVerificationFlowBody.class.getName()); diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithCodeMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithCodeMethod.java index 247566d7477..d3dbb27efd1 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithCodeMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithCodeMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * UpdateVerificationFlowWithCodeMethod */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateVerificationFlowWithCodeMethod { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithLinkMethod.java b/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithLinkMethod.java index 43d83da0b22..b6b67461a30 100644 --- a/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithLinkMethod.java +++ b/clients/client/java/src/main/java/sh/ory/model/UpdateVerificationFlowWithLinkMethod.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ * Update Verification Flow with Link Method */ @ApiModel(description = "Update Verification Flow with Link Method") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class UpdateVerificationFlowWithLinkMethod { public static final String SERIALIZED_NAME_CSRF_TOKEN = "csrf_token"; @SerializedName(SERIALIZED_NAME_CSRF_TOKEN) diff --git a/clients/client/java/src/main/java/sh/ory/model/Usage.java b/clients/client/java/src/main/java/sh/ory/model/Usage.java index b031ae93e2e..7fdf7fc2299 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Usage.java +++ b/clients/client/java/src/main/java/sh/ory/model/Usage.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * Usage */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Usage { public static final String SERIALIZED_NAME_GENERIC_USAGE = "GenericUsage"; @SerializedName(SERIALIZED_NAME_GENERIC_USAGE) diff --git a/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialPrimingResponse.java b/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialPrimingResponse.java index 3f8f37f1e60..a2836d7c557 100644 --- a/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialPrimingResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialPrimingResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * VerifiableCredentialPrimingResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class VerifiableCredentialPrimingResponse { public static final String SERIALIZED_NAME_C_NONCE = "c_nonce"; @SerializedName(SERIALIZED_NAME_C_NONCE) diff --git a/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialProof.java b/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialProof.java index 35afba50c94..50fd96795a4 100644 --- a/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialProof.java +++ b/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialProof.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * VerifiableCredentialProof */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class VerifiableCredentialProof { public static final String SERIALIZED_NAME_JWT = "jwt"; @SerializedName(SERIALIZED_NAME_JWT) diff --git a/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialResponse.java b/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialResponse.java index 8f0c1af1324..61b01123385 100644 --- a/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/VerifiableCredentialResponse.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * VerifiableCredentialResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class VerifiableCredentialResponse { public static final String SERIALIZED_NAME_CREDENTIAL_DRAFT00 = "credential_draft_00"; @SerializedName(SERIALIZED_NAME_CREDENTIAL_DRAFT00) diff --git a/clients/client/java/src/main/java/sh/ory/model/VerifiableIdentityAddress.java b/clients/client/java/src/main/java/sh/ory/model/VerifiableIdentityAddress.java index 57c9c67a088..16b67482726 100644 --- a/clients/client/java/src/main/java/sh/ory/model/VerifiableIdentityAddress.java +++ b/clients/client/java/src/main/java/sh/ory/model/VerifiableIdentityAddress.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ * VerifiableAddress is an identity's verifiable address */ @ApiModel(description = "VerifiableAddress is an identity's verifiable address") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class VerifiableIdentityAddress { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) diff --git a/clients/client/java/src/main/java/sh/ory/model/VerificationFlow.java b/clients/client/java/src/main/java/sh/ory/model/VerificationFlow.java index 1de491b0368..da1c8f0e157 100644 --- a/clients/client/java/src/main/java/sh/ory/model/VerificationFlow.java +++ b/clients/client/java/src/main/java/sh/ory/model/VerificationFlow.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Used to verify an out-of-band communication channel such as an email address or a phone number. For more information head over to: https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation */ @ApiModel(description = "Used to verify an out-of-band communication channel such as an email address or a phone number. For more information head over to: https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class VerificationFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) diff --git a/clients/client/java/src/main/java/sh/ory/model/VerificationFlowState.java b/clients/client/java/src/main/java/sh/ory/model/VerificationFlowState.java index 313da3b2217..8f0ae806070 100644 --- a/clients/client/java/src/main/java/sh/ory/model/VerificationFlowState.java +++ b/clients/client/java/src/main/java/sh/ory/model/VerificationFlowState.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/main/java/sh/ory/model/Version.java b/clients/client/java/src/main/java/sh/ory/model/Version.java index aada29ea0cd..23eb6eede2a 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Version.java +++ b/clients/client/java/src/main/java/sh/ory/model/Version.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * Version */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Version { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/clients/client/java/src/main/java/sh/ory/model/Warning.java b/clients/client/java/src/main/java/sh/ory/model/Warning.java index 700d439e8c6..22b8d62955c 100644 --- a/clients/client/java/src/main/java/sh/ory/model/Warning.java +++ b/clients/client/java/src/main/java/sh/ory/model/Warning.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -48,7 +48,7 @@ /** * Warning */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-11T08:46:31.889443934Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-08-13T21:50:28.344339006Z[Etc/UTC]") public class Warning { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/clients/client/java/src/test/java/sh/ory/api/CourierApiTest.java b/clients/client/java/src/test/java/sh/ory/api/CourierApiTest.java index 5b77865ccf5..0d1893358c7 100644 --- a/clients/client/java/src/test/java/sh/ory/api/CourierApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/CourierApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/FrontendApiTest.java b/clients/client/java/src/test/java/sh/ory/api/FrontendApiTest.java index 26664f2ba31..1e9bc4d082b 100644 --- a/clients/client/java/src/test/java/sh/ory/api/FrontendApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/FrontendApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/IdentityApiTest.java b/clients/client/java/src/test/java/sh/ory/api/IdentityApiTest.java index 5e5bea02aaa..1919a452093 100644 --- a/clients/client/java/src/test/java/sh/ory/api/IdentityApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/IdentityApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/JwkApiTest.java b/clients/client/java/src/test/java/sh/ory/api/JwkApiTest.java index e4b52ae2640..3c3708de3fb 100644 --- a/clients/client/java/src/test/java/sh/ory/api/JwkApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/JwkApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/MetadataApiTest.java b/clients/client/java/src/test/java/sh/ory/api/MetadataApiTest.java index 8f5052d3971..608013ec820 100644 --- a/clients/client/java/src/test/java/sh/ory/api/MetadataApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/MetadataApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/OAuth2ApiTest.java b/clients/client/java/src/test/java/sh/ory/api/OAuth2ApiTest.java index 4dbbecb905f..db5a37e0e97 100644 --- a/clients/client/java/src/test/java/sh/ory/api/OAuth2ApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/OAuth2ApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/OidcApiTest.java b/clients/client/java/src/test/java/sh/ory/api/OidcApiTest.java index fbbe26d4b0f..a652b4c6e4e 100644 --- a/clients/client/java/src/test/java/sh/ory/api/OidcApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/OidcApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/PermissionApiTest.java b/clients/client/java/src/test/java/sh/ory/api/PermissionApiTest.java index 2da951b0a44..72bde0de11f 100644 --- a/clients/client/java/src/test/java/sh/ory/api/PermissionApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/PermissionApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/ProjectApiTest.java b/clients/client/java/src/test/java/sh/ory/api/ProjectApiTest.java index 3ed1dc35c6e..7475b1e866c 100644 --- a/clients/client/java/src/test/java/sh/ory/api/ProjectApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/ProjectApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/RelationshipApiTest.java b/clients/client/java/src/test/java/sh/ory/api/RelationshipApiTest.java index ac868f6c4a1..984c59457b8 100644 --- a/clients/client/java/src/test/java/sh/ory/api/RelationshipApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/RelationshipApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/api/WellknownApiTest.java b/clients/client/java/src/test/java/sh/ory/api/WellknownApiTest.java index 05fb587fef6..89ee97332e9 100644 --- a/clients/client/java/src/test/java/sh/ory/api/WellknownApiTest.java +++ b/clients/client/java/src/test/java/sh/ory/api/WellknownApiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestSessionTest.java b/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestSessionTest.java index ad109148535..ce275a18fee 100644 --- a/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestSessionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestSessionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestTest.java b/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestTest.java index da17a85015d..3eb0c7e9d90 100644 --- a/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2ConsentRequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2LoginRequestTest.java b/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2LoginRequestTest.java index ae20bdfb4de..10ad093488e 100644 --- a/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2LoginRequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/AcceptOAuth2LoginRequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ActiveProjectInConsoleTest.java b/clients/client/java/src/test/java/sh/ory/model/ActiveProjectInConsoleTest.java index 00dbe67139f..d46649f3355 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ActiveProjectInConsoleTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ActiveProjectInConsoleTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/AuthenticatorAssuranceLevelTest.java b/clients/client/java/src/test/java/sh/ory/model/AuthenticatorAssuranceLevelTest.java index 3e027bb8d32..79c16d9dd76 100644 --- a/clients/client/java/src/test/java/sh/ory/model/AuthenticatorAssuranceLevelTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/AuthenticatorAssuranceLevelTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/BatchPatchIdentitiesResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/BatchPatchIdentitiesResponseTest.java index 9e8e96c43a3..3c57258a2d3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/BatchPatchIdentitiesResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/BatchPatchIdentitiesResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CORSTest.java b/clients/client/java/src/test/java/sh/ory/model/CORSTest.java index c1fdedeba6b..7528c730db1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CORSTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CORSTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CheckOplSyntaxResultTest.java b/clients/client/java/src/test/java/sh/ory/model/CheckOplSyntaxResultTest.java index b82892953c2..ee420800edf 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CheckOplSyntaxResultTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CheckOplSyntaxResultTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CheckPermissionResultTest.java b/clients/client/java/src/test/java/sh/ory/model/CheckPermissionResultTest.java index 2c01f20a860..12bc181b051 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CheckPermissionResultTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CheckPermissionResultTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CloudAccountTest.java b/clients/client/java/src/test/java/sh/ory/model/CloudAccountTest.java index 3c20659dc52..1de9d9cb520 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CloudAccountTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CloudAccountTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ContinueWithSetOrySessionTokenTest.java b/clients/client/java/src/test/java/sh/ory/model/ContinueWithSetOrySessionTokenTest.java index 525c7bd0229..8aee5e987c3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ContinueWithSetOrySessionTokenTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ContinueWithSetOrySessionTokenTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ContinueWithTest.java b/clients/client/java/src/test/java/sh/ory/model/ContinueWithTest.java index 7e1d03dfad3..315876841e4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ContinueWithTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ContinueWithTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiFlowTest.java index f7c46e5133d..6b1cf8ce504 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiTest.java b/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiTest.java index 16518e6ad81..8fedf62f5b3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ContinueWithVerificationUiTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CourierMessageStatusTest.java b/clients/client/java/src/test/java/sh/ory/model/CourierMessageStatusTest.java index 5d2e11751a2..543fc6667cf 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CourierMessageStatusTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CourierMessageStatusTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CourierMessageTypeTest.java b/clients/client/java/src/test/java/sh/ory/model/CourierMessageTypeTest.java index dc89b812fe5..f4b13b553c0 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CourierMessageTypeTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CourierMessageTypeTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateCustomDomainBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateCustomDomainBodyTest.java index a90786da627..0ebac90d44f 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateCustomDomainBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateCustomDomainBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateIdentityBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateIdentityBodyTest.java index 4abb06064b7..4b0a4120f15 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateIdentityBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateIdentityBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateInviteResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateInviteResponseTest.java index 4bf620d8962..1a22ff00565 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateInviteResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateInviteResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateJsonWebKeySetTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateJsonWebKeySetTest.java index 13b3277b2e7..d19dde2cfaf 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateJsonWebKeySetTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateJsonWebKeySetTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateProjectApiKeyRequestTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateProjectApiKeyRequestTest.java index 8e7e074124b..cbda06ba5b6 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateProjectApiKeyRequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateProjectApiKeyRequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateProjectBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateProjectBodyTest.java index a90d88d40c9..a92aff32b6b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateProjectBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateProjectBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateProjectBrandingTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateProjectBrandingTest.java index 6ff0a7d92ad..1c98ab52772 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateProjectBrandingTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateProjectBrandingTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateProjectMemberInviteBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateProjectMemberInviteBodyTest.java index 9c6c0e7bccf..1e399d4eb22 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateProjectMemberInviteBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateProjectMemberInviteBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryCodeForIdentityBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryCodeForIdentityBodyTest.java index 02e85069947..340a42c08c7 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryCodeForIdentityBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryCodeForIdentityBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryLinkForIdentityBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryLinkForIdentityBodyTest.java index 172b35ff6fe..502e0c806bd 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryLinkForIdentityBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateRecoveryLinkForIdentityBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateRelationshipBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateRelationshipBodyTest.java index 59ddcd9534e..dae69a7abfb 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateRelationshipBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateRelationshipBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateSubscriptionBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateSubscriptionBodyTest.java index c173e4b67c3..7dd7e35efce 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateSubscriptionBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateSubscriptionBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CreateVerifiableCredentialRequestBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateVerifiableCredentialRequestBodyTest.java index 5260c6277bd..fc323a00c62 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateVerifiableCredentialRequestBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateVerifiableCredentialRequestBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CredentialSupportedDraft00Test.java b/clients/client/java/src/test/java/sh/ory/model/CredentialSupportedDraft00Test.java index 8a2d685eefd..41fc217a2ab 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CredentialSupportedDraft00Test.java +++ b/clients/client/java/src/test/java/sh/ory/model/CredentialSupportedDraft00Test.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/CustomDomainTest.java b/clients/client/java/src/test/java/sh/ory/model/CustomDomainTest.java index 4f5d1963535..ca1614990d4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CustomDomainTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CustomDomainTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/DeleteMySessionsCountTest.java b/clients/client/java/src/test/java/sh/ory/model/DeleteMySessionsCountTest.java index 8d37aeb4938..78e8384284e 100644 --- a/clients/client/java/src/test/java/sh/ory/model/DeleteMySessionsCountTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/DeleteMySessionsCountTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataBodyTest.java index 8de23d2c36e..51bbcdce9e6 100644 --- a/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataTest.java b/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataTest.java index f30c26189eb..8489c71bae0 100644 --- a/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/EmailTemplateDataTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.java b/clients/client/java/src/test/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.java index 07e705eea80..a548103fc0b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ErrorBrowserLocationChangeRequiredTest.java b/clients/client/java/src/test/java/sh/ory/model/ErrorBrowserLocationChangeRequiredTest.java index 96e4a445f39..a838a0ca682 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ErrorBrowserLocationChangeRequiredTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ErrorBrowserLocationChangeRequiredTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ErrorFlowReplacedTest.java b/clients/client/java/src/test/java/sh/ory/model/ErrorFlowReplacedTest.java index 17cb5efe8a4..439c6ea0c99 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ErrorFlowReplacedTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ErrorFlowReplacedTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ErrorGenericTest.java b/clients/client/java/src/test/java/sh/ory/model/ErrorGenericTest.java index d35e25ade35..cd36d1f656c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ErrorGenericTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ErrorGenericTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ErrorOAuth2Test.java b/clients/client/java/src/test/java/sh/ory/model/ErrorOAuth2Test.java index f9a4d3371c5..b0f82f32a86 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ErrorOAuth2Test.java +++ b/clients/client/java/src/test/java/sh/ory/model/ErrorOAuth2Test.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ExpandedPermissionTreeTest.java b/clients/client/java/src/test/java/sh/ory/model/ExpandedPermissionTreeTest.java index 39ff1741581..09cd6740b73 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ExpandedPermissionTreeTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ExpandedPermissionTreeTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/FlowErrorTest.java b/clients/client/java/src/test/java/sh/ory/model/FlowErrorTest.java index 66ed55286cb..b1fb1ad8eca 100644 --- a/clients/client/java/src/test/java/sh/ory/model/FlowErrorTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/FlowErrorTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/GenericErrorContentTest.java b/clients/client/java/src/test/java/sh/ory/model/GenericErrorContentTest.java index 645446e92f7..ef25c5ebfbf 100644 --- a/clients/client/java/src/test/java/sh/ory/model/GenericErrorContentTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/GenericErrorContentTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/GenericErrorTest.java b/clients/client/java/src/test/java/sh/ory/model/GenericErrorTest.java index 58ff8ec8693..9ea31ca6d01 100644 --- a/clients/client/java/src/test/java/sh/ory/model/GenericErrorTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/GenericErrorTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/GenericUsageTest.java b/clients/client/java/src/test/java/sh/ory/model/GenericUsageTest.java index 71230e8191d..9343453800a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/GenericUsageTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/GenericUsageTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/GetManagedIdentitySchemaLocationTest.java b/clients/client/java/src/test/java/sh/ory/model/GetManagedIdentitySchemaLocationTest.java index 55c11901b6c..c4b9ae05e7d 100644 --- a/clients/client/java/src/test/java/sh/ory/model/GetManagedIdentitySchemaLocationTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/GetManagedIdentitySchemaLocationTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/GetProjectMetricsResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/GetProjectMetricsResponseTest.java index 7a74a03b183..d1a4f584c29 100644 --- a/clients/client/java/src/test/java/sh/ory/model/GetProjectMetricsResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/GetProjectMetricsResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/GetVersion200ResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/GetVersion200ResponseTest.java index e984e039513..c943fa246e9 100644 --- a/clients/client/java/src/test/java/sh/ory/model/GetVersion200ResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/GetVersion200ResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/HealthNotReadyStatusTest.java b/clients/client/java/src/test/java/sh/ory/model/HealthNotReadyStatusTest.java index 862657ef03e..7d8de648917 100644 --- a/clients/client/java/src/test/java/sh/ory/model/HealthNotReadyStatusTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/HealthNotReadyStatusTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/HealthStatusTest.java b/clients/client/java/src/test/java/sh/ory/model/HealthStatusTest.java index 144c2bb8d17..a8b3fc5eb1c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/HealthStatusTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/HealthStatusTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcProviderTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcProviderTest.java index 0c97983a855..003e49f97c3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcProviderTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcProviderTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcTest.java index 85ac4fc3182..a824612e865 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsOidcTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsPasswordTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsPasswordTest.java index b3ee966c029..1b7d13c54b6 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsPasswordTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsPasswordTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTest.java index 3482a691123..ac35c69bcf7 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTypeTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTypeTest.java index fddd257ab40..1909f30a6da 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTypeTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityCredentialsTypeTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityPatchResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityPatchResponseTest.java index c919dc4c1d3..f75a3895bb2 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityPatchResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityPatchResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityPatchTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityPatchTest.java index 951a57e5ce1..3ad0d6f9a60 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityPatchTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityPatchTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaContainerTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaContainerTest.java index bdc86e15311..6474d86c04b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaContainerTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaContainerTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaPresetTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaPresetTest.java index b0e0288a14c..6a23d407120 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaPresetTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentitySchemaPresetTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityStateTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityStateTest.java index 6212a196abc..c1442c9ff0b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityStateTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityStateTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityTest.java index 9ba5a04267c..c5fcffcd24c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigProviderTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigProviderTest.java index 466ce3eb568..b31d9846cf3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigProviderTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigProviderTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigTest.java index 40c79659358..2959ec98c0e 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcConfigTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcTest.java index 8022eee76ad..36e70c703e3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsOidcTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordConfigTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordConfigTest.java index 2916d0d7b5b..0734077dca3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordConfigTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordConfigTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordTest.java index 5ca7ab98dfe..8ae072ed22c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsPasswordTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsTest.java b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsTest.java index 9dfeddd1a8a..b71ae65fa76 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IdentityWithCredentialsTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/InternalGetProjectBrandingBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/InternalGetProjectBrandingBodyTest.java index 4e82e25df1c..32bf8746c5a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/InternalGetProjectBrandingBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/InternalGetProjectBrandingBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.java index 3ea65cdaa51..284e5c09c35 100644 --- a/clients/client/java/src/test/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugBodyTest.java index 2d7c87406c2..2ce0b776305 100644 --- a/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponseTest.java index 1544c4970f4..93df4d588d7 100644 --- a/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/InternalIsOwnerForProjectBySlugResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/InternalProvisionMockSubscriptionTest.java b/clients/client/java/src/test/java/sh/ory/model/InternalProvisionMockSubscriptionTest.java index 8fcc13c6955..1077c3df865 100644 --- a/clients/client/java/src/test/java/sh/ory/model/InternalProvisionMockSubscriptionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/InternalProvisionMockSubscriptionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IntrospectedOAuth2TokenTest.java b/clients/client/java/src/test/java/sh/ory/model/IntrospectedOAuth2TokenTest.java index 99eca9be823..0b3e2652149 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IntrospectedOAuth2TokenTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IntrospectedOAuth2TokenTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IsOwnerForProjectBySlugTest.java b/clients/client/java/src/test/java/sh/ory/model/IsOwnerForProjectBySlugTest.java index 2c483bdbc2f..844efa29a74 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IsOwnerForProjectBySlugTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IsOwnerForProjectBySlugTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IsReady200ResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/IsReady200ResponseTest.java index fe7bcf4ddfc..473d029ebc5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IsReady200ResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IsReady200ResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/IsReady503ResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/IsReady503ResponseTest.java index 8b5b11a20b2..04cad451b20 100644 --- a/clients/client/java/src/test/java/sh/ory/model/IsReady503ResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/IsReady503ResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/JsonPatchTest.java b/clients/client/java/src/test/java/sh/ory/model/JsonPatchTest.java index d90408635fa..ec9469de595 100644 --- a/clients/client/java/src/test/java/sh/ory/model/JsonPatchTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/JsonPatchTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/JsonWebKeySetTest.java b/clients/client/java/src/test/java/sh/ory/model/JsonWebKeySetTest.java index ee76ef0c896..10939ecdc27 100644 --- a/clients/client/java/src/test/java/sh/ory/model/JsonWebKeySetTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/JsonWebKeySetTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/JsonWebKeyTest.java b/clients/client/java/src/test/java/sh/ory/model/JsonWebKeyTest.java index 5b23864cecd..52c3b0adf81 100644 --- a/clients/client/java/src/test/java/sh/ory/model/JsonWebKeyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/JsonWebKeyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/KetoNamespaceTest.java b/clients/client/java/src/test/java/sh/ory/model/KetoNamespaceTest.java index e211034c8fe..3b9ac1a1a65 100644 --- a/clients/client/java/src/test/java/sh/ory/model/KetoNamespaceTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/KetoNamespaceTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/LoginFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/LoginFlowTest.java index d66236fc9e9..38b1cd1c6cb 100644 --- a/clients/client/java/src/test/java/sh/ory/model/LoginFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/LoginFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/LogoutFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/LogoutFlowTest.java index 964e3c28bb1..3d2f0be2857 100644 --- a/clients/client/java/src/test/java/sh/ory/model/LogoutFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/LogoutFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaTest.java b/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaTest.java index 6e5fa7761f4..dea7b3896e1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaValidationResultTest.java b/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaValidationResultTest.java index 74b90bdd8d7..939ad42e2ed 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaValidationResultTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ManagedIdentitySchemaValidationResultTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/MemberInviteTest.java b/clients/client/java/src/test/java/sh/ory/model/MemberInviteTest.java index f9285bef349..b45d54b73d9 100644 --- a/clients/client/java/src/test/java/sh/ory/model/MemberInviteTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/MemberInviteTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/MessageDispatchTest.java b/clients/client/java/src/test/java/sh/ory/model/MessageDispatchTest.java index dba6c1fc7cf..6812e1375b5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/MessageDispatchTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/MessageDispatchTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/MessageTest.java b/clients/client/java/src/test/java/sh/ory/model/MessageTest.java index e889961740a..7066a29e03a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/MessageTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/MessageTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/MetricsDatapointTest.java b/clients/client/java/src/test/java/sh/ory/model/MetricsDatapointTest.java index 768e14c130a..69e8d08dd88 100644 --- a/clients/client/java/src/test/java/sh/ory/model/MetricsDatapointTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/MetricsDatapointTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/NamespaceTest.java b/clients/client/java/src/test/java/sh/ory/model/NamespaceTest.java index 9df8a58d423..aa40b242770 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NamespaceTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NamespaceTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/NeedsPrivilegedSessionErrorTest.java b/clients/client/java/src/test/java/sh/ory/model/NeedsPrivilegedSessionErrorTest.java index aff0cc81648..9eddc2e015e 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NeedsPrivilegedSessionErrorTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NeedsPrivilegedSessionErrorTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionHookTest.java b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionHookTest.java index af103c784e6..e68127b8949 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionHookTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionHookTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionIdentitySchemaTest.java b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionIdentitySchemaTest.java index f6750a737c3..49d58322bd9 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionIdentitySchemaTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionIdentitySchemaTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionTest.java b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionTest.java index d4f460d3188..30bf09757d1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -447,6 +447,14 @@ public void kratosCourierSmtpHeadersTest() { // TODO: test kratosCourierSmtpHeaders } + /** + * Test the property 'kratosCourierSmtpLocalName' + */ + @Test + public void kratosCourierSmtpLocalNameTest() { + // TODO: test kratosCourierSmtpLocalName + } + /** * Test the property 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' */ diff --git a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProviderTest.java b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProviderTest.java index 0f0ef1e7af3..767cc2d554c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProviderTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProviderTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectTest.java b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectTest.java index 8ad453dcc19..c34e1ed4f29 100644 --- a/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTest.java index dd620872430..09aaa8f6af4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTokenLifespansTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTokenLifespansTest.java index 9c6b1277eef..4bf0a81f742 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTokenLifespansTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2ClientTokenLifespansTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContextTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContextTest.java index d13c3b52a9e..b366b8872f3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContextTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestOpenIDConnectContextTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestTest.java index 53b4be3eb05..73909e4f76d 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentRequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionExpiresAtTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionExpiresAtTest.java index 71dd1703595..a22a5315dd0 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionExpiresAtTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionExpiresAtTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionTest.java index 6322dfe3368..1486de8ab29 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2ConsentSessionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2LoginRequestTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2LoginRequestTest.java index 595b284572d..496f0ec77d6 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2LoginRequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2LoginRequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2LogoutRequestTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2LogoutRequestTest.java index 57b8744d1c6..fb0b61f3b2c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2LogoutRequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2LogoutRequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2RedirectToTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2RedirectToTest.java index bb9e62064ca..5c103fd942b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2RedirectToTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2RedirectToTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OAuth2TokenExchangeTest.java b/clients/client/java/src/test/java/sh/ory/model/OAuth2TokenExchangeTest.java index e2becc7b1b9..885c1667f9d 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OAuth2TokenExchangeTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OAuth2TokenExchangeTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OidcConfigurationTest.java b/clients/client/java/src/test/java/sh/ory/model/OidcConfigurationTest.java index 4cd9014d2cd..886bf430f03 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OidcConfigurationTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OidcConfigurationTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/OidcUserInfoTest.java b/clients/client/java/src/test/java/sh/ory/model/OidcUserInfoTest.java index 622cd3a471a..51ba2c4a7a4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/OidcUserInfoTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/OidcUserInfoTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PaginationHeadersTest.java b/clients/client/java/src/test/java/sh/ory/model/PaginationHeadersTest.java index 38076dc14bc..e39afaa97dd 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PaginationHeadersTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PaginationHeadersTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PaginationTest.java b/clients/client/java/src/test/java/sh/ory/model/PaginationTest.java index cf8dbb4c2a5..115bed0efe5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PaginationTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PaginationTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ParseErrorTest.java b/clients/client/java/src/test/java/sh/ory/model/ParseErrorTest.java index cd5f7587104..d9068ad2ef1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ParseErrorTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ParseErrorTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PatchIdentitiesBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/PatchIdentitiesBodyTest.java index 101b01d5057..02d64433253 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PatchIdentitiesBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PatchIdentitiesBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PerformNativeLogoutBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/PerformNativeLogoutBodyTest.java index 907c57fa1a8..f8771b176a9 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PerformNativeLogoutBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PerformNativeLogoutBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PlanDetailsTest.java b/clients/client/java/src/test/java/sh/ory/model/PlanDetailsTest.java index 0a79e1c583e..4f708772858 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PlanDetailsTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PlanDetailsTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PlanTest.java b/clients/client/java/src/test/java/sh/ory/model/PlanTest.java index 64341ac0871..74b514a369a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PlanTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PlanTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionBodyTest.java index a7a57a8f7ac..2c2c9e6f1f1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionOrErrorBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionOrErrorBodyTest.java index e25430a548e..2734fed3dc4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionOrErrorBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/PostCheckPermissionOrErrorBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectApiKeyTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectApiKeyTest.java index 2e5179dd5da..dcd9ccbc286 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectApiKeyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectApiKeyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingColorsTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingColorsTest.java index 2367751de22..37008539f76 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingColorsTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingColorsTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingTest.java index 75d3e8b9bed..3b7de665316 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingThemeTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingThemeTest.java index 21e8d8da5e2..f9bbb738ad2 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingThemeTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectBrandingThemeTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectHostTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectHostTest.java index 0c542a80524..33b6d960e40 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectHostTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectHostTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectMetadataTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectMetadataTest.java index 34161d1e1ef..984ff49f7ba 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectMetadataTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectMetadataTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectServiceIdentityTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectServiceIdentityTest.java index 0e85d7e9b6f..d848ce21789 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectServiceIdentityTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectServiceIdentityTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectServiceOAuth2Test.java b/clients/client/java/src/test/java/sh/ory/model/ProjectServiceOAuth2Test.java index 7bdef879922..3fda9ec923a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectServiceOAuth2Test.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectServiceOAuth2Test.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectServicePermissionTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectServicePermissionTest.java index 038db733a60..26d5f63ff92 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectServicePermissionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectServicePermissionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectServicesTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectServicesTest.java index 3209f4ca730..c0547d122ab 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectServicesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectServicesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/ProjectTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectTest.java index d97d70e7adc..f46c0bbd35f 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/QuotaUsageTest.java b/clients/client/java/src/test/java/sh/ory/model/QuotaUsageTest.java index 96610926643..08ca04d7ceb 100644 --- a/clients/client/java/src/test/java/sh/ory/model/QuotaUsageTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/QuotaUsageTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RFC6749ErrorJsonTest.java b/clients/client/java/src/test/java/sh/ory/model/RFC6749ErrorJsonTest.java index 54776214137..57841023e00 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RFC6749ErrorJsonTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RFC6749ErrorJsonTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RecoveryCodeForIdentityTest.java b/clients/client/java/src/test/java/sh/ory/model/RecoveryCodeForIdentityTest.java index acc47a38f59..ab2c575701b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RecoveryCodeForIdentityTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RecoveryCodeForIdentityTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowStateTest.java b/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowStateTest.java index 5c0857a7658..7b7b607b49b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowStateTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowStateTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowTest.java index 595f50718ae..99316a43d26 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RecoveryFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RecoveryIdentityAddressTest.java b/clients/client/java/src/test/java/sh/ory/model/RecoveryIdentityAddressTest.java index 37b913443d3..4f004cea3f0 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RecoveryIdentityAddressTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RecoveryIdentityAddressTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RecoveryLinkForIdentityTest.java b/clients/client/java/src/test/java/sh/ory/model/RecoveryLinkForIdentityTest.java index 185282e0d4c..1ee6f4a4ed8 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RecoveryLinkForIdentityTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RecoveryLinkForIdentityTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RegistrationFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/RegistrationFlowTest.java index daafb41f1f9..2e4f2a25307 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RegistrationFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RegistrationFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RejectOAuth2RequestTest.java b/clients/client/java/src/test/java/sh/ory/model/RejectOAuth2RequestTest.java index 7d89f627d5f..3ffaa10f970 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RejectOAuth2RequestTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RejectOAuth2RequestTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RelationQueryTest.java b/clients/client/java/src/test/java/sh/ory/model/RelationQueryTest.java index 864deb58255..778a39b3819 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RelationQueryTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RelationQueryTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RelationshipNamespacesTest.java b/clients/client/java/src/test/java/sh/ory/model/RelationshipNamespacesTest.java index a825113de64..198fa236d5e 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RelationshipNamespacesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RelationshipNamespacesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RelationshipPatchTest.java b/clients/client/java/src/test/java/sh/ory/model/RelationshipPatchTest.java index 4bc2e94548f..96ac03c1690 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RelationshipPatchTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RelationshipPatchTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RelationshipTest.java b/clients/client/java/src/test/java/sh/ory/model/RelationshipTest.java index 0107087206e..29afb3cc598 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RelationshipTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RelationshipTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/RelationshipsTest.java b/clients/client/java/src/test/java/sh/ory/model/RelationshipsTest.java index 25084daf296..b8959720e89 100644 --- a/clients/client/java/src/test/java/sh/ory/model/RelationshipsTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/RelationshipsTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SchemaPatchTest.java b/clients/client/java/src/test/java/sh/ory/model/SchemaPatchTest.java index 223aa940ea0..92f4dbc3134 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SchemaPatchTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SchemaPatchTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SelfServiceFlowExpiredErrorTest.java b/clients/client/java/src/test/java/sh/ory/model/SelfServiceFlowExpiredErrorTest.java index 2cbc9031eea..a873bdb3da1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SelfServiceFlowExpiredErrorTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SelfServiceFlowExpiredErrorTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SessionAuthenticationMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/SessionAuthenticationMethodTest.java index 13b77fa93db..8dbfd7017e5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SessionAuthenticationMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SessionAuthenticationMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SessionDeviceTest.java b/clients/client/java/src/test/java/sh/ory/model/SessionDeviceTest.java index 4dc34b69cfa..3b43f42b152 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SessionDeviceTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SessionDeviceTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SessionTest.java b/clients/client/java/src/test/java/sh/ory/model/SessionTest.java index c290cba318c..d991f2664f2 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SessionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SessionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SetActiveProjectInConsoleBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/SetActiveProjectInConsoleBodyTest.java index 3ecdc2d4307..0b6e12c65c2 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SetActiveProjectInConsoleBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SetActiveProjectInConsoleBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SetCustomDomainBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/SetCustomDomainBodyTest.java index 793dbe84f10..9b0a21d66e5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SetCustomDomainBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SetCustomDomainBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SetProjectBrandingThemeBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/SetProjectBrandingThemeBodyTest.java index 214620d4eae..4b59c881fab 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SetProjectBrandingThemeBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SetProjectBrandingThemeBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SetProjectTest.java b/clients/client/java/src/test/java/sh/ory/model/SetProjectTest.java index 05318c3af1c..656e10841c1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SetProjectTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SetProjectTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SettingsFlowStateTest.java b/clients/client/java/src/test/java/sh/ory/model/SettingsFlowStateTest.java index 4e82ba46d72..d5426b21135 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SettingsFlowStateTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SettingsFlowStateTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SettingsFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/SettingsFlowTest.java index ef8af85cfe7..effc9eb88b3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SettingsFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SettingsFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SourcePositionTest.java b/clients/client/java/src/test/java/sh/ory/model/SourcePositionTest.java index 4d74e153871..31a60570ebb 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SourcePositionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SourcePositionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/StripeCustomerTest.java b/clients/client/java/src/test/java/sh/ory/model/StripeCustomerTest.java index 9cde61379b5..b2f03fb3e7c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/StripeCustomerTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/StripeCustomerTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SubjectSetTest.java b/clients/client/java/src/test/java/sh/ory/model/SubjectSetTest.java index ac3efa3ab56..11808c59318 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SubjectSetTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SubjectSetTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SubscriptionTest.java b/clients/client/java/src/test/java/sh/ory/model/SubscriptionTest.java index 50a4505eca3..cd3f8cb86e4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SubscriptionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SubscriptionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SuccessfulCodeExchangeResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/SuccessfulCodeExchangeResponseTest.java index 0124298111e..412022ce0fb 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SuccessfulCodeExchangeResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SuccessfulCodeExchangeResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeLoginTest.java b/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeLoginTest.java index 50c794f5f71..10fd49c5f81 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeLoginTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeLoginTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeRegistrationTest.java b/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeRegistrationTest.java index bcca93d6ece..22ccfa97805 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeRegistrationTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SuccessfulNativeRegistrationTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/SuccessfulProjectUpdateTest.java b/clients/client/java/src/test/java/sh/ory/model/SuccessfulProjectUpdateTest.java index fc0e3d89c42..9beee36af56 100644 --- a/clients/client/java/src/test/java/sh/ory/model/SuccessfulProjectUpdateTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/SuccessfulProjectUpdateTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationHeadersTest.java b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationHeadersTest.java index 9aca4d284a8..b0175a7c7d5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationHeadersTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationHeadersTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationRequestParametersTest.java b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationRequestParametersTest.java index d7ab3f24f01..677420d9f25 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationRequestParametersTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationRequestParametersTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationResponseHeadersTest.java b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationResponseHeadersTest.java index 12f78ba8014..f5f7aed555b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationResponseHeadersTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationResponseHeadersTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationTest.java b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationTest.java index d37f30e33da..345c3504f16 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TokenPaginationTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TokenPaginationTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TrustOAuth2JwtGrantIssuerTest.java b/clients/client/java/src/test/java/sh/ory/model/TrustOAuth2JwtGrantIssuerTest.java index c73ebb3d4f8..91037b1640f 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TrustOAuth2JwtGrantIssuerTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TrustOAuth2JwtGrantIssuerTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantIssuerTest.java b/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantIssuerTest.java index 90b4988e90f..7209c934bcd 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantIssuerTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantIssuerTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKeyTest.java b/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKeyTest.java index 260a6ee793b..3fae682833a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKeyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/TrustedOAuth2JwtGrantJsonWebKeyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiContainerTest.java b/clients/client/java/src/test/java/sh/ory/model/UiContainerTest.java index 2c470c5952c..ea913356d3f 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiContainerTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiContainerTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeAnchorAttributesTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeAnchorAttributesTest.java index 73a891d02b3..b9596ed271c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeAnchorAttributesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeAnchorAttributesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeAttributesTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeAttributesTest.java index 36853763f9b..8763390ab32 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeAttributesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeAttributesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeImageAttributesTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeImageAttributesTest.java index d1d1225036b..ea33778cc65 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeImageAttributesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeImageAttributesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeInputAttributesTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeInputAttributesTest.java index c4011ad503f..d1e9eaac2e8 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeInputAttributesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeInputAttributesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeMetaTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeMetaTest.java index 21158ad3336..39f80d5508c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeMetaTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeMetaTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeScriptAttributesTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeScriptAttributesTest.java index f4c85d3f8d4..ef92c427f2f 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeScriptAttributesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeScriptAttributesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeTest.java index e0167c47551..61e161d9cd3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiNodeTextAttributesTest.java b/clients/client/java/src/test/java/sh/ory/model/UiNodeTextAttributesTest.java index bf293b08a53..834e65ff995 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiNodeTextAttributesTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiNodeTextAttributesTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UiTextTest.java b/clients/client/java/src/test/java/sh/ory/model/UiTextTest.java index 21b83f3ed25..0eb739952d6 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UiTextTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UiTextTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateIdentityBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateIdentityBodyTest.java index 6c5def34115..7135e483e85 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateIdentityBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateIdentityBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowBodyTest.java index 38adab77fe8..26e047127d0 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethodTest.java index b77fc9041d3..900a8171836 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithLookupSecretMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithOidcMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithOidcMethodTest.java index 023ea4bac1d..8e2cf73e6b9 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithOidcMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithOidcMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithPasswordMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithPasswordMethodTest.java index 83ed188a4a1..5dcad148f68 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithPasswordMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithPasswordMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithTotpMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithTotpMethodTest.java index 3747cf5d829..c4f6692b709 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithTotpMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithTotpMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethodTest.java index 8e30cbf5b80..9a1a9a36f8a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateLoginFlowWithWebAuthnMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowBodyTest.java index 76fc852f26e..a95a4195207 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethodTest.java index 40e2ed782cb..51e0b42e03c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithCodeMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethodTest.java index a3e23e9935e..d7ed2b8ebd3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRecoveryFlowWithLinkMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowBodyTest.java index 058198a6080..060cdd97faf 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethodTest.java index 352dd551cf7..a78d90687a6 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithOidcMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethodTest.java index ee6081113db..225bad69f15 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithPasswordMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethodTest.java index cd4797abb26..b4d69f861fe 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateRegistrationFlowWithWebAuthnMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowBodyTest.java index dc71720ebff..cdf40e37574 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithLookupMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithLookupMethodTest.java index da818b6df57..d35a509ec81 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithLookupMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithLookupMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithOidcMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithOidcMethodTest.java index 45efa8c61e1..cac3f21632c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithOidcMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithOidcMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethodTest.java index 9c1d600b122..9badf3e2d1e 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithPasswordMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithProfileMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithProfileMethodTest.java index 1f720c5f1a2..49e9023c194 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithProfileMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithProfileMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithTotpMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithTotpMethodTest.java index f463605af3c..df2ac0cf4ef 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithTotpMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithTotpMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethodTest.java index 9a4be7d3ede..ace11a606ac 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSettingsFlowWithWebAuthnMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateSubscriptionBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateSubscriptionBodyTest.java index 5cfa758ffde..82975c0bc07 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateSubscriptionBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateSubscriptionBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowBodyTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowBodyTest.java index 21c48ef7699..5bbb981803b 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowBodyTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowBodyTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithCodeMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithCodeMethodTest.java index 83fb5d3ff1a..6f3e522224a 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithCodeMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithCodeMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithLinkMethodTest.java b/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithLinkMethodTest.java index 9a7de99a573..9fa7feeb300 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithLinkMethodTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UpdateVerificationFlowWithLinkMethodTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/UsageTest.java b/clients/client/java/src/test/java/sh/ory/model/UsageTest.java index f4fdf73ceb4..d8ac0192c2d 100644 --- a/clients/client/java/src/test/java/sh/ory/model/UsageTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/UsageTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialPrimingResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialPrimingResponseTest.java index f0ce591f506..c8bcefe46d5 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialPrimingResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialPrimingResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialProofTest.java b/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialProofTest.java index 9fe13c42bf7..ab0adaf6cf4 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialProofTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialProofTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialResponseTest.java index 24b5bd8e2e9..3a36363670f 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VerifiableCredentialResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VerifiableIdentityAddressTest.java b/clients/client/java/src/test/java/sh/ory/model/VerifiableIdentityAddressTest.java index dead5ba6bc6..cacff11c0c3 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VerifiableIdentityAddressTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VerifiableIdentityAddressTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VerificationFlowStateTest.java b/clients/client/java/src/test/java/sh/ory/model/VerificationFlowStateTest.java index 66d2d9d63ea..1f0e06bb969 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VerificationFlowStateTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VerificationFlowStateTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VerificationFlowTest.java b/clients/client/java/src/test/java/sh/ory/model/VerificationFlowTest.java index 6cba8a0a3e8..3d82ed05d5c 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VerificationFlowTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VerificationFlowTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/VersionTest.java b/clients/client/java/src/test/java/sh/ory/model/VersionTest.java index 719767ec6fc..63dee815b62 100644 --- a/clients/client/java/src/test/java/sh/ory/model/VersionTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/VersionTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/java/src/test/java/sh/ory/model/WarningTest.java b/clients/client/java/src/test/java/sh/ory/model/WarningTest.java index 1d91607ffd6..3a7ad4520b7 100644 --- a/clients/client/java/src/test/java/sh/ory/model/WarningTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/WarningTest.java @@ -2,7 +2,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/php/README.md b/clients/client/php/README.md index 21b5a963006..f6f130d9067 100644 --- a/clients/client/php/README.md +++ b/clients/client/php/README.md @@ -458,5 +458,5 @@ support@ory.sh This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `v1.1.44` +- API version: `v1.1.45` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` diff --git a/clients/client/php/composer.lock b/clients/client/php/composer.lock index 18f334def94..57858783459 100644 --- a/clients/client/php/composer.lock +++ b/clients/client/php/composer.lock @@ -1059,16 +1059,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.16.0", + "version": "v4.17.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "19526a33fb561ef417e822e85f08a00db4059c17" + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17", - "reference": "19526a33fb561ef417e822e85f08a00db4059c17", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", "shasum": "" }, "require": { @@ -1107,7 +1107,7 @@ "parser", "php" ], - "time": "2023-06-25T14:52:30+00:00" + "time": "2023-08-13T19:53:39+00:00" }, { "name": "phar-io/manifest", diff --git a/clients/client/php/docs/Model/NormalizedProjectRevision.md b/clients/client/php/docs/Model/NormalizedProjectRevision.md index 7025e1daf9b..1965774bab2 100644 --- a/clients/client/php/docs/Model/NormalizedProjectRevision.md +++ b/clients/client/php/docs/Model/NormalizedProjectRevision.md @@ -54,6 +54,7 @@ Name | Type | Description | Notes **kratosCourierSmtpFromAddress** | **string** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] **kratosCourierSmtpFromName** | **string** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] **kratosCourierSmtpHeaders** | **object** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] +**kratosCourierSmtpLocalName** | **string** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] **kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml** | **string** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] **kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext** | **string** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] **kratosCourierTemplatesRecoveryCodeInvalidEmailSubject** | **string** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] diff --git a/clients/client/php/lib/Api/CourierApi.php b/clients/client/php/lib/Api/CourierApi.php index 32c059b8dab..7797d6fd41e 100644 --- a/clients/client/php/lib/Api/CourierApi.php +++ b/clients/client/php/lib/Api/CourierApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/FrontendApi.php b/clients/client/php/lib/Api/FrontendApi.php index 369fbd935e5..a931ffaf2b9 100644 --- a/clients/client/php/lib/Api/FrontendApi.php +++ b/clients/client/php/lib/Api/FrontendApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/IdentityApi.php b/clients/client/php/lib/Api/IdentityApi.php index d1f05b947fd..89170205061 100644 --- a/clients/client/php/lib/Api/IdentityApi.php +++ b/clients/client/php/lib/Api/IdentityApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/JwkApi.php b/clients/client/php/lib/Api/JwkApi.php index 4aa0dcbb08c..caaab64d208 100644 --- a/clients/client/php/lib/Api/JwkApi.php +++ b/clients/client/php/lib/Api/JwkApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/MetadataApi.php b/clients/client/php/lib/Api/MetadataApi.php index 18fcaa7319f..137eba7f852 100644 --- a/clients/client/php/lib/Api/MetadataApi.php +++ b/clients/client/php/lib/Api/MetadataApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/OAuth2Api.php b/clients/client/php/lib/Api/OAuth2Api.php index 088bae77f66..52802aa8bfb 100644 --- a/clients/client/php/lib/Api/OAuth2Api.php +++ b/clients/client/php/lib/Api/OAuth2Api.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/OidcApi.php b/clients/client/php/lib/Api/OidcApi.php index c6d1ca3c992..0915b071882 100644 --- a/clients/client/php/lib/Api/OidcApi.php +++ b/clients/client/php/lib/Api/OidcApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/PermissionApi.php b/clients/client/php/lib/Api/PermissionApi.php index c1bdf2f2de2..9fbca0ded57 100644 --- a/clients/client/php/lib/Api/PermissionApi.php +++ b/clients/client/php/lib/Api/PermissionApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/ProjectApi.php b/clients/client/php/lib/Api/ProjectApi.php index 855a05694c0..f826d9a6065 100644 --- a/clients/client/php/lib/Api/ProjectApi.php +++ b/clients/client/php/lib/Api/ProjectApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/RelationshipApi.php b/clients/client/php/lib/Api/RelationshipApi.php index df3569f3af9..25b2a04906a 100644 --- a/clients/client/php/lib/Api/RelationshipApi.php +++ b/clients/client/php/lib/Api/RelationshipApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Api/WellknownApi.php b/clients/client/php/lib/Api/WellknownApi.php index 4d6aef489dd..d3a88b27e93 100644 --- a/clients/client/php/lib/Api/WellknownApi.php +++ b/clients/client/php/lib/Api/WellknownApi.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/ApiException.php b/clients/client/php/lib/ApiException.php index 9bd6c3dbbb0..f3faeab7b10 100644 --- a/clients/client/php/lib/ApiException.php +++ b/clients/client/php/lib/ApiException.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Configuration.php b/clients/client/php/lib/Configuration.php index 9ef493a1da3..2c70e4133dc 100644 --- a/clients/client/php/lib/Configuration.php +++ b/clients/client/php/lib/Configuration.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -399,7 +399,7 @@ public static function toDebugReport() $report = 'PHP SDK (Ory\Client) Debug Report:' . PHP_EOL; $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; - $report .= ' The version of the OpenAPI document: v1.1.44' . PHP_EOL; + $report .= ' The version of the OpenAPI document: v1.1.45' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/clients/client/php/lib/HeaderSelector.php b/clients/client/php/lib/HeaderSelector.php index 5a5c16e34f1..35207d69e5c 100644 --- a/clients/client/php/lib/HeaderSelector.php +++ b/clients/client/php/lib/HeaderSelector.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/AcceptOAuth2ConsentRequest.php b/clients/client/php/lib/Model/AcceptOAuth2ConsentRequest.php index 24c21a514aa..8dbc0c05983 100644 --- a/clients/client/php/lib/Model/AcceptOAuth2ConsentRequest.php +++ b/clients/client/php/lib/Model/AcceptOAuth2ConsentRequest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/AcceptOAuth2ConsentRequestSession.php b/clients/client/php/lib/Model/AcceptOAuth2ConsentRequestSession.php index 11f7d0decbd..ba517d0711b 100644 --- a/clients/client/php/lib/Model/AcceptOAuth2ConsentRequestSession.php +++ b/clients/client/php/lib/Model/AcceptOAuth2ConsentRequestSession.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/AcceptOAuth2LoginRequest.php b/clients/client/php/lib/Model/AcceptOAuth2LoginRequest.php index fb1e099f782..f573aa5d7f1 100644 --- a/clients/client/php/lib/Model/AcceptOAuth2LoginRequest.php +++ b/clients/client/php/lib/Model/AcceptOAuth2LoginRequest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ActiveProjectInConsole.php b/clients/client/php/lib/Model/ActiveProjectInConsole.php index 6b7a6bd893f..0c9744fab1f 100644 --- a/clients/client/php/lib/Model/ActiveProjectInConsole.php +++ b/clients/client/php/lib/Model/ActiveProjectInConsole.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/AuthenticatorAssuranceLevel.php b/clients/client/php/lib/Model/AuthenticatorAssuranceLevel.php index e1d61d13aa4..61ef49e0f7a 100644 --- a/clients/client/php/lib/Model/AuthenticatorAssuranceLevel.php +++ b/clients/client/php/lib/Model/AuthenticatorAssuranceLevel.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/BatchPatchIdentitiesResponse.php b/clients/client/php/lib/Model/BatchPatchIdentitiesResponse.php index f97c294bc3a..77609496e00 100644 --- a/clients/client/php/lib/Model/BatchPatchIdentitiesResponse.php +++ b/clients/client/php/lib/Model/BatchPatchIdentitiesResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CORS.php b/clients/client/php/lib/Model/CORS.php index 609d0d3757b..1cceae2803d 100644 --- a/clients/client/php/lib/Model/CORS.php +++ b/clients/client/php/lib/Model/CORS.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CheckOplSyntaxResult.php b/clients/client/php/lib/Model/CheckOplSyntaxResult.php index 8eba427d875..b3d2d966cb4 100644 --- a/clients/client/php/lib/Model/CheckOplSyntaxResult.php +++ b/clients/client/php/lib/Model/CheckOplSyntaxResult.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CheckPermissionResult.php b/clients/client/php/lib/Model/CheckPermissionResult.php index 68d71f1f6be..5a5603d9711 100644 --- a/clients/client/php/lib/Model/CheckPermissionResult.php +++ b/clients/client/php/lib/Model/CheckPermissionResult.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CloudAccount.php b/clients/client/php/lib/Model/CloudAccount.php index 9e8d4c72105..b5db26b329e 100644 --- a/clients/client/php/lib/Model/CloudAccount.php +++ b/clients/client/php/lib/Model/CloudAccount.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ContinueWith.php b/clients/client/php/lib/Model/ContinueWith.php index fbd156b06e9..30684fc3395 100644 --- a/clients/client/php/lib/Model/ContinueWith.php +++ b/clients/client/php/lib/Model/ContinueWith.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ContinueWithSetOrySessionToken.php b/clients/client/php/lib/Model/ContinueWithSetOrySessionToken.php index dd4e3184b1b..11e4e59395d 100644 --- a/clients/client/php/lib/Model/ContinueWithSetOrySessionToken.php +++ b/clients/client/php/lib/Model/ContinueWithSetOrySessionToken.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ContinueWithVerificationUi.php b/clients/client/php/lib/Model/ContinueWithVerificationUi.php index 4051de632db..0ea0910c8b0 100644 --- a/clients/client/php/lib/Model/ContinueWithVerificationUi.php +++ b/clients/client/php/lib/Model/ContinueWithVerificationUi.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ContinueWithVerificationUiFlow.php b/clients/client/php/lib/Model/ContinueWithVerificationUiFlow.php index 27505209633..0d8c8bbe276 100644 --- a/clients/client/php/lib/Model/ContinueWithVerificationUiFlow.php +++ b/clients/client/php/lib/Model/ContinueWithVerificationUiFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CourierMessageStatus.php b/clients/client/php/lib/Model/CourierMessageStatus.php index 593f010bab5..842a9e5e5ac 100644 --- a/clients/client/php/lib/Model/CourierMessageStatus.php +++ b/clients/client/php/lib/Model/CourierMessageStatus.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CourierMessageType.php b/clients/client/php/lib/Model/CourierMessageType.php index 33d9b04aed8..31bdfd4975a 100644 --- a/clients/client/php/lib/Model/CourierMessageType.php +++ b/clients/client/php/lib/Model/CourierMessageType.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateCustomDomainBody.php b/clients/client/php/lib/Model/CreateCustomDomainBody.php index e1b89f79171..86d172f088f 100644 --- a/clients/client/php/lib/Model/CreateCustomDomainBody.php +++ b/clients/client/php/lib/Model/CreateCustomDomainBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateIdentityBody.php b/clients/client/php/lib/Model/CreateIdentityBody.php index 976d3a9abfc..afa11965625 100644 --- a/clients/client/php/lib/Model/CreateIdentityBody.php +++ b/clients/client/php/lib/Model/CreateIdentityBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateInviteResponse.php b/clients/client/php/lib/Model/CreateInviteResponse.php index 3da2b02f74e..0acff8d2398 100644 --- a/clients/client/php/lib/Model/CreateInviteResponse.php +++ b/clients/client/php/lib/Model/CreateInviteResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateJsonWebKeySet.php b/clients/client/php/lib/Model/CreateJsonWebKeySet.php index 694ebf2bfc2..d3c678212f8 100644 --- a/clients/client/php/lib/Model/CreateJsonWebKeySet.php +++ b/clients/client/php/lib/Model/CreateJsonWebKeySet.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateProjectBody.php b/clients/client/php/lib/Model/CreateProjectBody.php index ca2b091acc5..6f70557bdaa 100644 --- a/clients/client/php/lib/Model/CreateProjectBody.php +++ b/clients/client/php/lib/Model/CreateProjectBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateProjectBranding.php b/clients/client/php/lib/Model/CreateProjectBranding.php index be281386916..f885f251012 100644 --- a/clients/client/php/lib/Model/CreateProjectBranding.php +++ b/clients/client/php/lib/Model/CreateProjectBranding.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateProjectMemberInviteBody.php b/clients/client/php/lib/Model/CreateProjectMemberInviteBody.php index 5a34e1ed135..7a6f2b285f1 100644 --- a/clients/client/php/lib/Model/CreateProjectMemberInviteBody.php +++ b/clients/client/php/lib/Model/CreateProjectMemberInviteBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateRecoveryCodeForIdentityBody.php b/clients/client/php/lib/Model/CreateRecoveryCodeForIdentityBody.php index 7f178888c7c..8c7bd13b2e6 100644 --- a/clients/client/php/lib/Model/CreateRecoveryCodeForIdentityBody.php +++ b/clients/client/php/lib/Model/CreateRecoveryCodeForIdentityBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateRecoveryLinkForIdentityBody.php b/clients/client/php/lib/Model/CreateRecoveryLinkForIdentityBody.php index a2bde5ecc39..4b24be8f7d4 100644 --- a/clients/client/php/lib/Model/CreateRecoveryLinkForIdentityBody.php +++ b/clients/client/php/lib/Model/CreateRecoveryLinkForIdentityBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateRelationshipBody.php b/clients/client/php/lib/Model/CreateRelationshipBody.php index f8bd5f8e9a6..343cea81114 100644 --- a/clients/client/php/lib/Model/CreateRelationshipBody.php +++ b/clients/client/php/lib/Model/CreateRelationshipBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateSubscriptionBody.php b/clients/client/php/lib/Model/CreateSubscriptionBody.php index 04a48d4bd6f..197d9c189de 100644 --- a/clients/client/php/lib/Model/CreateSubscriptionBody.php +++ b/clients/client/php/lib/Model/CreateSubscriptionBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateVerifiableCredentialRequestBody.php b/clients/client/php/lib/Model/CreateVerifiableCredentialRequestBody.php index d302e6c6f4f..70b21513536 100644 --- a/clients/client/php/lib/Model/CreateVerifiableCredentialRequestBody.php +++ b/clients/client/php/lib/Model/CreateVerifiableCredentialRequestBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CredentialSupportedDraft00.php b/clients/client/php/lib/Model/CredentialSupportedDraft00.php index be51cdfaf8c..95c4aa19e4a 100644 --- a/clients/client/php/lib/Model/CredentialSupportedDraft00.php +++ b/clients/client/php/lib/Model/CredentialSupportedDraft00.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CustomDomain.php b/clients/client/php/lib/Model/CustomDomain.php index e52992dd753..ba434e21501 100644 --- a/clients/client/php/lib/Model/CustomDomain.php +++ b/clients/client/php/lib/Model/CustomDomain.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/DeleteMySessionsCount.php b/clients/client/php/lib/Model/DeleteMySessionsCount.php index 5fca83d6321..3528b882ffc 100644 --- a/clients/client/php/lib/Model/DeleteMySessionsCount.php +++ b/clients/client/php/lib/Model/DeleteMySessionsCount.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/EmailTemplateData.php b/clients/client/php/lib/Model/EmailTemplateData.php index ff8910526ca..492152ffb34 100644 --- a/clients/client/php/lib/Model/EmailTemplateData.php +++ b/clients/client/php/lib/Model/EmailTemplateData.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/EmailTemplateDataBody.php b/clients/client/php/lib/Model/EmailTemplateDataBody.php index c003ecda8dd..d15c928e370 100644 --- a/clients/client/php/lib/Model/EmailTemplateDataBody.php +++ b/clients/client/php/lib/Model/EmailTemplateDataBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ErrorAuthenticatorAssuranceLevelNotSatisfied.php b/clients/client/php/lib/Model/ErrorAuthenticatorAssuranceLevelNotSatisfied.php index 1726c6f4e9e..76b18f04617 100644 --- a/clients/client/php/lib/Model/ErrorAuthenticatorAssuranceLevelNotSatisfied.php +++ b/clients/client/php/lib/Model/ErrorAuthenticatorAssuranceLevelNotSatisfied.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ErrorBrowserLocationChangeRequired.php b/clients/client/php/lib/Model/ErrorBrowserLocationChangeRequired.php index 5cc67eaaf2d..66c0bde3831 100644 --- a/clients/client/php/lib/Model/ErrorBrowserLocationChangeRequired.php +++ b/clients/client/php/lib/Model/ErrorBrowserLocationChangeRequired.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ErrorFlowReplaced.php b/clients/client/php/lib/Model/ErrorFlowReplaced.php index e08b56746b9..dc9db18016d 100644 --- a/clients/client/php/lib/Model/ErrorFlowReplaced.php +++ b/clients/client/php/lib/Model/ErrorFlowReplaced.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ErrorGeneric.php b/clients/client/php/lib/Model/ErrorGeneric.php index eaa153005e7..ae97072ffed 100644 --- a/clients/client/php/lib/Model/ErrorGeneric.php +++ b/clients/client/php/lib/Model/ErrorGeneric.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ErrorOAuth2.php b/clients/client/php/lib/Model/ErrorOAuth2.php index 5461f225b86..436230c977b 100644 --- a/clients/client/php/lib/Model/ErrorOAuth2.php +++ b/clients/client/php/lib/Model/ErrorOAuth2.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ExpandedPermissionTree.php b/clients/client/php/lib/Model/ExpandedPermissionTree.php index e1d7ab1422f..c955b1b2969 100644 --- a/clients/client/php/lib/Model/ExpandedPermissionTree.php +++ b/clients/client/php/lib/Model/ExpandedPermissionTree.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/FlowError.php b/clients/client/php/lib/Model/FlowError.php index 9b539630c02..d6ba067f0e3 100644 --- a/clients/client/php/lib/Model/FlowError.php +++ b/clients/client/php/lib/Model/FlowError.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/GenericError.php b/clients/client/php/lib/Model/GenericError.php index a95fee45d14..134fa8ab7e2 100644 --- a/clients/client/php/lib/Model/GenericError.php +++ b/clients/client/php/lib/Model/GenericError.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/GenericErrorContent.php b/clients/client/php/lib/Model/GenericErrorContent.php index 5b8638aa6c1..bb80d760a47 100644 --- a/clients/client/php/lib/Model/GenericErrorContent.php +++ b/clients/client/php/lib/Model/GenericErrorContent.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/GenericUsage.php b/clients/client/php/lib/Model/GenericUsage.php index 6263e24ea8e..1094bdfc24e 100644 --- a/clients/client/php/lib/Model/GenericUsage.php +++ b/clients/client/php/lib/Model/GenericUsage.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/GetManagedIdentitySchemaLocation.php b/clients/client/php/lib/Model/GetManagedIdentitySchemaLocation.php index 5b8ea006445..a123feb4043 100644 --- a/clients/client/php/lib/Model/GetManagedIdentitySchemaLocation.php +++ b/clients/client/php/lib/Model/GetManagedIdentitySchemaLocation.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/GetProjectMetricsResponse.php b/clients/client/php/lib/Model/GetProjectMetricsResponse.php index 58e8de6eb0b..6577c52a47b 100644 --- a/clients/client/php/lib/Model/GetProjectMetricsResponse.php +++ b/clients/client/php/lib/Model/GetProjectMetricsResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/HealthNotReadyStatus.php b/clients/client/php/lib/Model/HealthNotReadyStatus.php index 0d334265847..a23fce1cce4 100644 --- a/clients/client/php/lib/Model/HealthNotReadyStatus.php +++ b/clients/client/php/lib/Model/HealthNotReadyStatus.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/HealthStatus.php b/clients/client/php/lib/Model/HealthStatus.php index d81fa59cf79..77abe3ed628 100644 --- a/clients/client/php/lib/Model/HealthStatus.php +++ b/clients/client/php/lib/Model/HealthStatus.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Identity.php b/clients/client/php/lib/Model/Identity.php index 2ebca09086f..c576b276a95 100644 --- a/clients/client/php/lib/Model/Identity.php +++ b/clients/client/php/lib/Model/Identity.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityCredentials.php b/clients/client/php/lib/Model/IdentityCredentials.php index c559d8f4747..477b85322e2 100644 --- a/clients/client/php/lib/Model/IdentityCredentials.php +++ b/clients/client/php/lib/Model/IdentityCredentials.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityCredentialsOidc.php b/clients/client/php/lib/Model/IdentityCredentialsOidc.php index d7584c410aa..dcbafb26f31 100644 --- a/clients/client/php/lib/Model/IdentityCredentialsOidc.php +++ b/clients/client/php/lib/Model/IdentityCredentialsOidc.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityCredentialsOidcProvider.php b/clients/client/php/lib/Model/IdentityCredentialsOidcProvider.php index 1c8d1e17ba4..f1791ce4e1e 100644 --- a/clients/client/php/lib/Model/IdentityCredentialsOidcProvider.php +++ b/clients/client/php/lib/Model/IdentityCredentialsOidcProvider.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityCredentialsPassword.php b/clients/client/php/lib/Model/IdentityCredentialsPassword.php index abd392274d6..89b9bf7f71c 100644 --- a/clients/client/php/lib/Model/IdentityCredentialsPassword.php +++ b/clients/client/php/lib/Model/IdentityCredentialsPassword.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityCredentialsType.php b/clients/client/php/lib/Model/IdentityCredentialsType.php index b6c5dad0452..77cdbbde26e 100644 --- a/clients/client/php/lib/Model/IdentityCredentialsType.php +++ b/clients/client/php/lib/Model/IdentityCredentialsType.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityPatch.php b/clients/client/php/lib/Model/IdentityPatch.php index c47503574f4..178b06c829e 100644 --- a/clients/client/php/lib/Model/IdentityPatch.php +++ b/clients/client/php/lib/Model/IdentityPatch.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityPatchResponse.php b/clients/client/php/lib/Model/IdentityPatchResponse.php index 940421768c9..d50b7fe56cc 100644 --- a/clients/client/php/lib/Model/IdentityPatchResponse.php +++ b/clients/client/php/lib/Model/IdentityPatchResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentitySchemaContainer.php b/clients/client/php/lib/Model/IdentitySchemaContainer.php index 4591c1e907d..33eefc8b6b2 100644 --- a/clients/client/php/lib/Model/IdentitySchemaContainer.php +++ b/clients/client/php/lib/Model/IdentitySchemaContainer.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentitySchemaPreset.php b/clients/client/php/lib/Model/IdentitySchemaPreset.php index 6966620d6d7..0ca9f27ad43 100644 --- a/clients/client/php/lib/Model/IdentitySchemaPreset.php +++ b/clients/client/php/lib/Model/IdentitySchemaPreset.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityState.php b/clients/client/php/lib/Model/IdentityState.php index d785c475887..2c6e2778047 100644 --- a/clients/client/php/lib/Model/IdentityState.php +++ b/clients/client/php/lib/Model/IdentityState.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityWithCredentials.php b/clients/client/php/lib/Model/IdentityWithCredentials.php index f2e99d4c871..a4cf27ab90e 100644 --- a/clients/client/php/lib/Model/IdentityWithCredentials.php +++ b/clients/client/php/lib/Model/IdentityWithCredentials.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityWithCredentialsOidc.php b/clients/client/php/lib/Model/IdentityWithCredentialsOidc.php index d94aa5a8414..6925d4424a8 100644 --- a/clients/client/php/lib/Model/IdentityWithCredentialsOidc.php +++ b/clients/client/php/lib/Model/IdentityWithCredentialsOidc.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfig.php b/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfig.php index 8dbb85a766a..e086d3d3f1b 100644 --- a/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfig.php +++ b/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfig.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfigProvider.php b/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfigProvider.php index 444e9f73331..c7959183150 100644 --- a/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfigProvider.php +++ b/clients/client/php/lib/Model/IdentityWithCredentialsOidcConfigProvider.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityWithCredentialsPassword.php b/clients/client/php/lib/Model/IdentityWithCredentialsPassword.php index df2f144a67f..5e9dc063b72 100644 --- a/clients/client/php/lib/Model/IdentityWithCredentialsPassword.php +++ b/clients/client/php/lib/Model/IdentityWithCredentialsPassword.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IdentityWithCredentialsPasswordConfig.php b/clients/client/php/lib/Model/IdentityWithCredentialsPasswordConfig.php index 43d0ca6ee06..067ddefbd4e 100644 --- a/clients/client/php/lib/Model/IdentityWithCredentialsPasswordConfig.php +++ b/clients/client/php/lib/Model/IdentityWithCredentialsPasswordConfig.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InlineObject3.php b/clients/client/php/lib/Model/InlineObject3.php index 144d701074a..d823b271ec0 100644 --- a/clients/client/php/lib/Model/InlineObject3.php +++ b/clients/client/php/lib/Model/InlineObject3.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InlineResponse200.php b/clients/client/php/lib/Model/InlineResponse200.php index 92914816b25..41e812a4788 100644 --- a/clients/client/php/lib/Model/InlineResponse200.php +++ b/clients/client/php/lib/Model/InlineResponse200.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InlineResponse2001.php b/clients/client/php/lib/Model/InlineResponse2001.php index b0c666299aa..d4bdaf55935 100644 --- a/clients/client/php/lib/Model/InlineResponse2001.php +++ b/clients/client/php/lib/Model/InlineResponse2001.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InlineResponse503.php b/clients/client/php/lib/Model/InlineResponse503.php index 7177eab42e5..5213645e9da 100644 --- a/clients/client/php/lib/Model/InlineResponse503.php +++ b/clients/client/php/lib/Model/InlineResponse503.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InternalGetProjectBrandingBody.php b/clients/client/php/lib/Model/InternalGetProjectBrandingBody.php index 7cc823e33e7..706863808b9 100644 --- a/clients/client/php/lib/Model/InternalGetProjectBrandingBody.php +++ b/clients/client/php/lib/Model/InternalGetProjectBrandingBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InternalIsAXWelcomeScreenEnabledForProjectBody.php b/clients/client/php/lib/Model/InternalIsAXWelcomeScreenEnabledForProjectBody.php index 179de6e3b97..dbf7f84e70d 100644 --- a/clients/client/php/lib/Model/InternalIsAXWelcomeScreenEnabledForProjectBody.php +++ b/clients/client/php/lib/Model/InternalIsAXWelcomeScreenEnabledForProjectBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugBody.php b/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugBody.php index c9279920ab6..5c9d1fe81a8 100644 --- a/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugBody.php +++ b/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugResponse.php b/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugResponse.php index 7a85cedd8a3..08159cc4a4c 100644 --- a/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugResponse.php +++ b/clients/client/php/lib/Model/InternalIsOwnerForProjectBySlugResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/InternalProvisionMockSubscription.php b/clients/client/php/lib/Model/InternalProvisionMockSubscription.php index 5259c8c43eb..a176b581756 100644 --- a/clients/client/php/lib/Model/InternalProvisionMockSubscription.php +++ b/clients/client/php/lib/Model/InternalProvisionMockSubscription.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IntrospectedOAuth2Token.php b/clients/client/php/lib/Model/IntrospectedOAuth2Token.php index a4bcdfabb05..6a7351b0224 100644 --- a/clients/client/php/lib/Model/IntrospectedOAuth2Token.php +++ b/clients/client/php/lib/Model/IntrospectedOAuth2Token.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/IsOwnerForProjectBySlug.php b/clients/client/php/lib/Model/IsOwnerForProjectBySlug.php index ea866572c12..d3211d4153b 100644 --- a/clients/client/php/lib/Model/IsOwnerForProjectBySlug.php +++ b/clients/client/php/lib/Model/IsOwnerForProjectBySlug.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/JsonPatch.php b/clients/client/php/lib/Model/JsonPatch.php index 8a05d480fa7..d554db41b3b 100644 --- a/clients/client/php/lib/Model/JsonPatch.php +++ b/clients/client/php/lib/Model/JsonPatch.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/JsonWebKey.php b/clients/client/php/lib/Model/JsonWebKey.php index f998995af6e..c892f6c5a22 100644 --- a/clients/client/php/lib/Model/JsonWebKey.php +++ b/clients/client/php/lib/Model/JsonWebKey.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/JsonWebKeySet.php b/clients/client/php/lib/Model/JsonWebKeySet.php index 5ebfddba7ed..bd00d17383b 100644 --- a/clients/client/php/lib/Model/JsonWebKeySet.php +++ b/clients/client/php/lib/Model/JsonWebKeySet.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/KetoNamespace.php b/clients/client/php/lib/Model/KetoNamespace.php index 3a2623eb093..b58df9581db 100644 --- a/clients/client/php/lib/Model/KetoNamespace.php +++ b/clients/client/php/lib/Model/KetoNamespace.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/LoginFlow.php b/clients/client/php/lib/Model/LoginFlow.php index 89e0c074fa8..f8d8dec6a7d 100644 --- a/clients/client/php/lib/Model/LoginFlow.php +++ b/clients/client/php/lib/Model/LoginFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/LogoutFlow.php b/clients/client/php/lib/Model/LogoutFlow.php index 40e9a164889..e128416459f 100644 --- a/clients/client/php/lib/Model/LogoutFlow.php +++ b/clients/client/php/lib/Model/LogoutFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ManagedIdentitySchema.php b/clients/client/php/lib/Model/ManagedIdentitySchema.php index 9f434a0e179..ba44812493e 100644 --- a/clients/client/php/lib/Model/ManagedIdentitySchema.php +++ b/clients/client/php/lib/Model/ManagedIdentitySchema.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ManagedIdentitySchemaValidationResult.php b/clients/client/php/lib/Model/ManagedIdentitySchemaValidationResult.php index 665d2ce70a2..46ed2c359d0 100644 --- a/clients/client/php/lib/Model/ManagedIdentitySchemaValidationResult.php +++ b/clients/client/php/lib/Model/ManagedIdentitySchemaValidationResult.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/MemberInvite.php b/clients/client/php/lib/Model/MemberInvite.php index 3759ef84e6d..dc80af58f11 100644 --- a/clients/client/php/lib/Model/MemberInvite.php +++ b/clients/client/php/lib/Model/MemberInvite.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Message.php b/clients/client/php/lib/Model/Message.php index e2c8f683adc..7a8afc8c22a 100644 --- a/clients/client/php/lib/Model/Message.php +++ b/clients/client/php/lib/Model/Message.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/MessageDispatch.php b/clients/client/php/lib/Model/MessageDispatch.php index 27473048377..6b865492f62 100644 --- a/clients/client/php/lib/Model/MessageDispatch.php +++ b/clients/client/php/lib/Model/MessageDispatch.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/MetricsDatapoint.php b/clients/client/php/lib/Model/MetricsDatapoint.php index d500f638f9c..6bf400ef07d 100644 --- a/clients/client/php/lib/Model/MetricsDatapoint.php +++ b/clients/client/php/lib/Model/MetricsDatapoint.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ModelInterface.php b/clients/client/php/lib/Model/ModelInterface.php index ab408518708..0b53d1decf7 100644 --- a/clients/client/php/lib/Model/ModelInterface.php +++ b/clients/client/php/lib/Model/ModelInterface.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ModelNamespace.php b/clients/client/php/lib/Model/ModelNamespace.php index 040dfd75ca1..9eccc00f4b1 100644 --- a/clients/client/php/lib/Model/ModelNamespace.php +++ b/clients/client/php/lib/Model/ModelNamespace.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/NeedsPrivilegedSessionError.php b/clients/client/php/lib/Model/NeedsPrivilegedSessionError.php index 4854250b438..5c1d480c2ed 100644 --- a/clients/client/php/lib/Model/NeedsPrivilegedSessionError.php +++ b/clients/client/php/lib/Model/NeedsPrivilegedSessionError.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/NormalizedProject.php b/clients/client/php/lib/Model/NormalizedProject.php index 70a00539e8d..b588ea0146b 100644 --- a/clients/client/php/lib/Model/NormalizedProject.php +++ b/clients/client/php/lib/Model/NormalizedProject.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/NormalizedProjectRevision.php b/clients/client/php/lib/Model/NormalizedProjectRevision.php index 10188a52e2f..b87b2aaf97d 100644 --- a/clients/client/php/lib/Model/NormalizedProjectRevision.php +++ b/clients/client/php/lib/Model/NormalizedProjectRevision.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -110,6 +110,7 @@ class NormalizedProjectRevision implements ModelInterface, ArrayAccess, \JsonSer 'kratosCourierSmtpFromAddress' => 'string', 'kratosCourierSmtpFromName' => 'string', 'kratosCourierSmtpHeaders' => 'object', + 'kratosCourierSmtpLocalName' => 'string', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' => 'string', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext' => 'string', 'kratosCourierTemplatesRecoveryCodeInvalidEmailSubject' => 'string', @@ -275,6 +276,7 @@ class NormalizedProjectRevision implements ModelInterface, ArrayAccess, \JsonSer 'kratosCourierSmtpFromAddress' => null, 'kratosCourierSmtpFromName' => null, 'kratosCourierSmtpHeaders' => null, + 'kratosCourierSmtpLocalName' => null, 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' => null, 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext' => null, 'kratosCourierTemplatesRecoveryCodeInvalidEmailSubject' => null, @@ -459,6 +461,7 @@ public static function openAPIFormats() 'kratosCourierSmtpFromAddress' => 'kratos_courier_smtp_from_address', 'kratosCourierSmtpFromName' => 'kratos_courier_smtp_from_name', 'kratosCourierSmtpHeaders' => 'kratos_courier_smtp_headers', + 'kratosCourierSmtpLocalName' => 'kratos_courier_smtp_local_name', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' => 'kratos_courier_templates_recovery_code_invalid_email_body_html', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext' => 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext', 'kratosCourierTemplatesRecoveryCodeInvalidEmailSubject' => 'kratos_courier_templates_recovery_code_invalid_email_subject', @@ -622,6 +625,7 @@ public static function openAPIFormats() 'kratosCourierSmtpFromAddress' => 'setKratosCourierSmtpFromAddress', 'kratosCourierSmtpFromName' => 'setKratosCourierSmtpFromName', 'kratosCourierSmtpHeaders' => 'setKratosCourierSmtpHeaders', + 'kratosCourierSmtpLocalName' => 'setKratosCourierSmtpLocalName', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' => 'setKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext' => 'setKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext', 'kratosCourierTemplatesRecoveryCodeInvalidEmailSubject' => 'setKratosCourierTemplatesRecoveryCodeInvalidEmailSubject', @@ -785,6 +789,7 @@ public static function openAPIFormats() 'kratosCourierSmtpFromAddress' => 'getKratosCourierSmtpFromAddress', 'kratosCourierSmtpFromName' => 'getKratosCourierSmtpFromName', 'kratosCourierSmtpHeaders' => 'getKratosCourierSmtpHeaders', + 'kratosCourierSmtpLocalName' => 'getKratosCourierSmtpLocalName', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml' => 'getKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml', 'kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext' => 'getKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext', 'kratosCourierTemplatesRecoveryCodeInvalidEmailSubject' => 'getKratosCourierTemplatesRecoveryCodeInvalidEmailSubject', @@ -1059,6 +1064,7 @@ public function __construct(array $data = null) $this->container['kratosCourierSmtpFromAddress'] = $data['kratosCourierSmtpFromAddress'] ?? null; $this->container['kratosCourierSmtpFromName'] = $data['kratosCourierSmtpFromName'] ?? null; $this->container['kratosCourierSmtpHeaders'] = $data['kratosCourierSmtpHeaders'] ?? null; + $this->container['kratosCourierSmtpLocalName'] = $data['kratosCourierSmtpLocalName'] ?? null; $this->container['kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml'] = $data['kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml'] ?? null; $this->container['kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext'] = $data['kratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext'] ?? null; $this->container['kratosCourierTemplatesRecoveryCodeInvalidEmailSubject'] = $data['kratosCourierTemplatesRecoveryCodeInvalidEmailSubject'] ?? null; @@ -2503,6 +2509,30 @@ public function setKratosCourierSmtpHeaders($kratosCourierSmtpHeaders) return $this; } + /** + * Gets kratosCourierSmtpLocalName + * + * @return string|null + */ + public function getKratosCourierSmtpLocalName() + { + return $this->container['kratosCourierSmtpLocalName']; + } + + /** + * Sets kratosCourierSmtpLocalName + * + * @param string|null $kratosCourierSmtpLocalName Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + * + * @return self + */ + public function setKratosCourierSmtpLocalName($kratosCourierSmtpLocalName) + { + $this->container['kratosCourierSmtpLocalName'] = $kratosCourierSmtpLocalName; + + return $this; + } + /** * Gets kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml * diff --git a/clients/client/php/lib/Model/NormalizedProjectRevisionHook.php b/clients/client/php/lib/Model/NormalizedProjectRevisionHook.php index fe63b45d010..57d30a61de2 100644 --- a/clients/client/php/lib/Model/NormalizedProjectRevisionHook.php +++ b/clients/client/php/lib/Model/NormalizedProjectRevisionHook.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/NormalizedProjectRevisionIdentitySchema.php b/clients/client/php/lib/Model/NormalizedProjectRevisionIdentitySchema.php index f550bffc466..69fbce15522 100644 --- a/clients/client/php/lib/Model/NormalizedProjectRevisionIdentitySchema.php +++ b/clients/client/php/lib/Model/NormalizedProjectRevisionIdentitySchema.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/NormalizedProjectRevisionThirdPartyProvider.php b/clients/client/php/lib/Model/NormalizedProjectRevisionThirdPartyProvider.php index 6c0a217139b..900fda4205e 100644 --- a/clients/client/php/lib/Model/NormalizedProjectRevisionThirdPartyProvider.php +++ b/clients/client/php/lib/Model/NormalizedProjectRevisionThirdPartyProvider.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2Client.php b/clients/client/php/lib/Model/OAuth2Client.php index 06c6a9754d5..0cfad891536 100644 --- a/clients/client/php/lib/Model/OAuth2Client.php +++ b/clients/client/php/lib/Model/OAuth2Client.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2ClientTokenLifespans.php b/clients/client/php/lib/Model/OAuth2ClientTokenLifespans.php index 9600d242994..bc843d01b6f 100644 --- a/clients/client/php/lib/Model/OAuth2ClientTokenLifespans.php +++ b/clients/client/php/lib/Model/OAuth2ClientTokenLifespans.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2ConsentRequest.php b/clients/client/php/lib/Model/OAuth2ConsentRequest.php index f9a00970655..d23d9e4d32a 100644 --- a/clients/client/php/lib/Model/OAuth2ConsentRequest.php +++ b/clients/client/php/lib/Model/OAuth2ConsentRequest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2ConsentRequestOpenIDConnectContext.php b/clients/client/php/lib/Model/OAuth2ConsentRequestOpenIDConnectContext.php index 9e8c1dacec1..ae1f1e1bfb4 100644 --- a/clients/client/php/lib/Model/OAuth2ConsentRequestOpenIDConnectContext.php +++ b/clients/client/php/lib/Model/OAuth2ConsentRequestOpenIDConnectContext.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2ConsentSession.php b/clients/client/php/lib/Model/OAuth2ConsentSession.php index cedb8129b91..ac38a4c21fc 100644 --- a/clients/client/php/lib/Model/OAuth2ConsentSession.php +++ b/clients/client/php/lib/Model/OAuth2ConsentSession.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2ConsentSessionExpiresAt.php b/clients/client/php/lib/Model/OAuth2ConsentSessionExpiresAt.php index 107512ac93f..e21d35da85a 100644 --- a/clients/client/php/lib/Model/OAuth2ConsentSessionExpiresAt.php +++ b/clients/client/php/lib/Model/OAuth2ConsentSessionExpiresAt.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2LoginRequest.php b/clients/client/php/lib/Model/OAuth2LoginRequest.php index 351118b7fcf..322c7c7fe64 100644 --- a/clients/client/php/lib/Model/OAuth2LoginRequest.php +++ b/clients/client/php/lib/Model/OAuth2LoginRequest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2LogoutRequest.php b/clients/client/php/lib/Model/OAuth2LogoutRequest.php index aeb2b73bdfa..8d084179b81 100644 --- a/clients/client/php/lib/Model/OAuth2LogoutRequest.php +++ b/clients/client/php/lib/Model/OAuth2LogoutRequest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2RedirectTo.php b/clients/client/php/lib/Model/OAuth2RedirectTo.php index f30783a872d..98b89fbcfa8 100644 --- a/clients/client/php/lib/Model/OAuth2RedirectTo.php +++ b/clients/client/php/lib/Model/OAuth2RedirectTo.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OAuth2TokenExchange.php b/clients/client/php/lib/Model/OAuth2TokenExchange.php index 56ebff3c444..03a2b8802fb 100644 --- a/clients/client/php/lib/Model/OAuth2TokenExchange.php +++ b/clients/client/php/lib/Model/OAuth2TokenExchange.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OidcConfiguration.php b/clients/client/php/lib/Model/OidcConfiguration.php index febb32613b2..9ef12fafe42 100644 --- a/clients/client/php/lib/Model/OidcConfiguration.php +++ b/clients/client/php/lib/Model/OidcConfiguration.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/OidcUserInfo.php b/clients/client/php/lib/Model/OidcUserInfo.php index 24abd5f78a2..e58b1dc8024 100644 --- a/clients/client/php/lib/Model/OidcUserInfo.php +++ b/clients/client/php/lib/Model/OidcUserInfo.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Pagination.php b/clients/client/php/lib/Model/Pagination.php index 3321e02534f..7f2fe6a65b5 100644 --- a/clients/client/php/lib/Model/Pagination.php +++ b/clients/client/php/lib/Model/Pagination.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/PaginationHeaders.php b/clients/client/php/lib/Model/PaginationHeaders.php index c263fad6755..8a942c81d86 100644 --- a/clients/client/php/lib/Model/PaginationHeaders.php +++ b/clients/client/php/lib/Model/PaginationHeaders.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ParseError.php b/clients/client/php/lib/Model/ParseError.php index 82c37f3d515..f6e59d5b54a 100644 --- a/clients/client/php/lib/Model/ParseError.php +++ b/clients/client/php/lib/Model/ParseError.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/PatchIdentitiesBody.php b/clients/client/php/lib/Model/PatchIdentitiesBody.php index 24d1a02c76f..90aee90d4b7 100644 --- a/clients/client/php/lib/Model/PatchIdentitiesBody.php +++ b/clients/client/php/lib/Model/PatchIdentitiesBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/PerformNativeLogoutBody.php b/clients/client/php/lib/Model/PerformNativeLogoutBody.php index 3d4079ba3ef..3d5382701f0 100644 --- a/clients/client/php/lib/Model/PerformNativeLogoutBody.php +++ b/clients/client/php/lib/Model/PerformNativeLogoutBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Plan.php b/clients/client/php/lib/Model/Plan.php index 71412ef0d64..d1de4189ea7 100644 --- a/clients/client/php/lib/Model/Plan.php +++ b/clients/client/php/lib/Model/Plan.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/PlanDetails.php b/clients/client/php/lib/Model/PlanDetails.php index a32ded0a210..d790a215bed 100644 --- a/clients/client/php/lib/Model/PlanDetails.php +++ b/clients/client/php/lib/Model/PlanDetails.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/PostCheckPermissionBody.php b/clients/client/php/lib/Model/PostCheckPermissionBody.php index 3c587b52f52..9f3941439cb 100644 --- a/clients/client/php/lib/Model/PostCheckPermissionBody.php +++ b/clients/client/php/lib/Model/PostCheckPermissionBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/PostCheckPermissionOrErrorBody.php b/clients/client/php/lib/Model/PostCheckPermissionOrErrorBody.php index 898a3fb9a15..fdebbefc1d2 100644 --- a/clients/client/php/lib/Model/PostCheckPermissionOrErrorBody.php +++ b/clients/client/php/lib/Model/PostCheckPermissionOrErrorBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Project.php b/clients/client/php/lib/Model/Project.php index b418a1aab99..2f8a543eec4 100644 --- a/clients/client/php/lib/Model/Project.php +++ b/clients/client/php/lib/Model/Project.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectApiKey.php b/clients/client/php/lib/Model/ProjectApiKey.php index fc2f2355bc4..26071402a59 100644 --- a/clients/client/php/lib/Model/ProjectApiKey.php +++ b/clients/client/php/lib/Model/ProjectApiKey.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectBranding.php b/clients/client/php/lib/Model/ProjectBranding.php index efd52b08273..e8270eb28f3 100644 --- a/clients/client/php/lib/Model/ProjectBranding.php +++ b/clients/client/php/lib/Model/ProjectBranding.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectBrandingColors.php b/clients/client/php/lib/Model/ProjectBrandingColors.php index 8f98495b605..5c4ce86d4b5 100644 --- a/clients/client/php/lib/Model/ProjectBrandingColors.php +++ b/clients/client/php/lib/Model/ProjectBrandingColors.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectBrandingTheme.php b/clients/client/php/lib/Model/ProjectBrandingTheme.php index 4a7e206311c..b21fc359025 100644 --- a/clients/client/php/lib/Model/ProjectBrandingTheme.php +++ b/clients/client/php/lib/Model/ProjectBrandingTheme.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectHost.php b/clients/client/php/lib/Model/ProjectHost.php index 2978618b25e..24a451c0c4f 100644 --- a/clients/client/php/lib/Model/ProjectHost.php +++ b/clients/client/php/lib/Model/ProjectHost.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectMetadata.php b/clients/client/php/lib/Model/ProjectMetadata.php index 35dd17d5861..942e8576a5f 100644 --- a/clients/client/php/lib/Model/ProjectMetadata.php +++ b/clients/client/php/lib/Model/ProjectMetadata.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectServiceIdentity.php b/clients/client/php/lib/Model/ProjectServiceIdentity.php index c64a7cbec87..5491483c62c 100644 --- a/clients/client/php/lib/Model/ProjectServiceIdentity.php +++ b/clients/client/php/lib/Model/ProjectServiceIdentity.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectServiceOAuth2.php b/clients/client/php/lib/Model/ProjectServiceOAuth2.php index fcb3f717889..117b3137a93 100644 --- a/clients/client/php/lib/Model/ProjectServiceOAuth2.php +++ b/clients/client/php/lib/Model/ProjectServiceOAuth2.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectServicePermission.php b/clients/client/php/lib/Model/ProjectServicePermission.php index 0dfe8c358aa..2b42534d6f8 100644 --- a/clients/client/php/lib/Model/ProjectServicePermission.php +++ b/clients/client/php/lib/Model/ProjectServicePermission.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectServices.php b/clients/client/php/lib/Model/ProjectServices.php index b8bab304508..b18176cd91f 100644 --- a/clients/client/php/lib/Model/ProjectServices.php +++ b/clients/client/php/lib/Model/ProjectServices.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/QuotaUsage.php b/clients/client/php/lib/Model/QuotaUsage.php index 29cdd7343c0..3cf01cefbe4 100644 --- a/clients/client/php/lib/Model/QuotaUsage.php +++ b/clients/client/php/lib/Model/QuotaUsage.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RFC6749ErrorJson.php b/clients/client/php/lib/Model/RFC6749ErrorJson.php index a1c214eb06e..d9045080c44 100644 --- a/clients/client/php/lib/Model/RFC6749ErrorJson.php +++ b/clients/client/php/lib/Model/RFC6749ErrorJson.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RecoveryCodeForIdentity.php b/clients/client/php/lib/Model/RecoveryCodeForIdentity.php index ae0034aa23b..dc9b6ef2e96 100644 --- a/clients/client/php/lib/Model/RecoveryCodeForIdentity.php +++ b/clients/client/php/lib/Model/RecoveryCodeForIdentity.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RecoveryFlow.php b/clients/client/php/lib/Model/RecoveryFlow.php index ce7d142fc4a..bda397fb8a6 100644 --- a/clients/client/php/lib/Model/RecoveryFlow.php +++ b/clients/client/php/lib/Model/RecoveryFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RecoveryFlowState.php b/clients/client/php/lib/Model/RecoveryFlowState.php index 616addbacb1..863b6c849b4 100644 --- a/clients/client/php/lib/Model/RecoveryFlowState.php +++ b/clients/client/php/lib/Model/RecoveryFlowState.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RecoveryIdentityAddress.php b/clients/client/php/lib/Model/RecoveryIdentityAddress.php index 389cf7ed423..e83b4b56803 100644 --- a/clients/client/php/lib/Model/RecoveryIdentityAddress.php +++ b/clients/client/php/lib/Model/RecoveryIdentityAddress.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RecoveryLinkForIdentity.php b/clients/client/php/lib/Model/RecoveryLinkForIdentity.php index 3a923573afc..024969b87aa 100644 --- a/clients/client/php/lib/Model/RecoveryLinkForIdentity.php +++ b/clients/client/php/lib/Model/RecoveryLinkForIdentity.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RegistrationFlow.php b/clients/client/php/lib/Model/RegistrationFlow.php index 25b29bd0ec7..9a511c19e02 100644 --- a/clients/client/php/lib/Model/RegistrationFlow.php +++ b/clients/client/php/lib/Model/RegistrationFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RejectOAuth2Request.php b/clients/client/php/lib/Model/RejectOAuth2Request.php index d45ac0e7617..d98d50d5376 100644 --- a/clients/client/php/lib/Model/RejectOAuth2Request.php +++ b/clients/client/php/lib/Model/RejectOAuth2Request.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RelationQuery.php b/clients/client/php/lib/Model/RelationQuery.php index f6c94fee8f9..734f8b613c4 100644 --- a/clients/client/php/lib/Model/RelationQuery.php +++ b/clients/client/php/lib/Model/RelationQuery.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Relationship.php b/clients/client/php/lib/Model/Relationship.php index 030d55ecbab..a6e1e7cee17 100644 --- a/clients/client/php/lib/Model/Relationship.php +++ b/clients/client/php/lib/Model/Relationship.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RelationshipNamespaces.php b/clients/client/php/lib/Model/RelationshipNamespaces.php index 7081e35d60f..c116a690763 100644 --- a/clients/client/php/lib/Model/RelationshipNamespaces.php +++ b/clients/client/php/lib/Model/RelationshipNamespaces.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/RelationshipPatch.php b/clients/client/php/lib/Model/RelationshipPatch.php index d48c8259f1e..22e75dd43ad 100644 --- a/clients/client/php/lib/Model/RelationshipPatch.php +++ b/clients/client/php/lib/Model/RelationshipPatch.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Relationships.php b/clients/client/php/lib/Model/Relationships.php index 8ad0940393e..36f09ee618c 100644 --- a/clients/client/php/lib/Model/Relationships.php +++ b/clients/client/php/lib/Model/Relationships.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SchemaPatch.php b/clients/client/php/lib/Model/SchemaPatch.php index 484949130e2..89d6f087c1b 100644 --- a/clients/client/php/lib/Model/SchemaPatch.php +++ b/clients/client/php/lib/Model/SchemaPatch.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SelfServiceFlowExpiredError.php b/clients/client/php/lib/Model/SelfServiceFlowExpiredError.php index 27e074a8d7c..5101f134710 100644 --- a/clients/client/php/lib/Model/SelfServiceFlowExpiredError.php +++ b/clients/client/php/lib/Model/SelfServiceFlowExpiredError.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Session.php b/clients/client/php/lib/Model/Session.php index 7389137d2d8..66faf354775 100644 --- a/clients/client/php/lib/Model/Session.php +++ b/clients/client/php/lib/Model/Session.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SessionAuthenticationMethod.php b/clients/client/php/lib/Model/SessionAuthenticationMethod.php index a386facfa5f..aad9a29e98c 100644 --- a/clients/client/php/lib/Model/SessionAuthenticationMethod.php +++ b/clients/client/php/lib/Model/SessionAuthenticationMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SessionDevice.php b/clients/client/php/lib/Model/SessionDevice.php index ec7bddd2c50..6e6fd3e3469 100644 --- a/clients/client/php/lib/Model/SessionDevice.php +++ b/clients/client/php/lib/Model/SessionDevice.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SetActiveProjectInConsoleBody.php b/clients/client/php/lib/Model/SetActiveProjectInConsoleBody.php index 806805c4eea..311cb9644d5 100644 --- a/clients/client/php/lib/Model/SetActiveProjectInConsoleBody.php +++ b/clients/client/php/lib/Model/SetActiveProjectInConsoleBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SetCustomDomainBody.php b/clients/client/php/lib/Model/SetCustomDomainBody.php index 9cf390cc022..27e3468db0e 100644 --- a/clients/client/php/lib/Model/SetCustomDomainBody.php +++ b/clients/client/php/lib/Model/SetCustomDomainBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SetProject.php b/clients/client/php/lib/Model/SetProject.php index 2952c4db78c..eaacc39710a 100644 --- a/clients/client/php/lib/Model/SetProject.php +++ b/clients/client/php/lib/Model/SetProject.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SetProjectBrandingThemeBody.php b/clients/client/php/lib/Model/SetProjectBrandingThemeBody.php index ce1565d37a5..202fdeb25b6 100644 --- a/clients/client/php/lib/Model/SetProjectBrandingThemeBody.php +++ b/clients/client/php/lib/Model/SetProjectBrandingThemeBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SettingsFlow.php b/clients/client/php/lib/Model/SettingsFlow.php index d852d4472dc..18fbf674fb3 100644 --- a/clients/client/php/lib/Model/SettingsFlow.php +++ b/clients/client/php/lib/Model/SettingsFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SettingsFlowState.php b/clients/client/php/lib/Model/SettingsFlowState.php index dfc3cf1c853..c2a441c4d57 100644 --- a/clients/client/php/lib/Model/SettingsFlowState.php +++ b/clients/client/php/lib/Model/SettingsFlowState.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SourcePosition.php b/clients/client/php/lib/Model/SourcePosition.php index f31612701d3..85318177625 100644 --- a/clients/client/php/lib/Model/SourcePosition.php +++ b/clients/client/php/lib/Model/SourcePosition.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/StripeCustomer.php b/clients/client/php/lib/Model/StripeCustomer.php index bb2caf28c7d..27460bc53ad 100644 --- a/clients/client/php/lib/Model/StripeCustomer.php +++ b/clients/client/php/lib/Model/StripeCustomer.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SubjectSet.php b/clients/client/php/lib/Model/SubjectSet.php index f2ad390f6bd..46b79248967 100644 --- a/clients/client/php/lib/Model/SubjectSet.php +++ b/clients/client/php/lib/Model/SubjectSet.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Subscription.php b/clients/client/php/lib/Model/Subscription.php index fc3b6b20eca..f976b563bcf 100644 --- a/clients/client/php/lib/Model/Subscription.php +++ b/clients/client/php/lib/Model/Subscription.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SuccessfulCodeExchangeResponse.php b/clients/client/php/lib/Model/SuccessfulCodeExchangeResponse.php index e75b23970d6..29fc517d698 100644 --- a/clients/client/php/lib/Model/SuccessfulCodeExchangeResponse.php +++ b/clients/client/php/lib/Model/SuccessfulCodeExchangeResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SuccessfulNativeLogin.php b/clients/client/php/lib/Model/SuccessfulNativeLogin.php index 1180d3ac282..5ea9e8761e8 100644 --- a/clients/client/php/lib/Model/SuccessfulNativeLogin.php +++ b/clients/client/php/lib/Model/SuccessfulNativeLogin.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SuccessfulNativeRegistration.php b/clients/client/php/lib/Model/SuccessfulNativeRegistration.php index eeae2ed8673..5ce9125422b 100644 --- a/clients/client/php/lib/Model/SuccessfulNativeRegistration.php +++ b/clients/client/php/lib/Model/SuccessfulNativeRegistration.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/SuccessfulProjectUpdate.php b/clients/client/php/lib/Model/SuccessfulProjectUpdate.php index 318d8cdbf24..b9aa6277dbb 100644 --- a/clients/client/php/lib/Model/SuccessfulProjectUpdate.php +++ b/clients/client/php/lib/Model/SuccessfulProjectUpdate.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TokenPagination.php b/clients/client/php/lib/Model/TokenPagination.php index 4417b754c2b..4ab4ea35c72 100644 --- a/clients/client/php/lib/Model/TokenPagination.php +++ b/clients/client/php/lib/Model/TokenPagination.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TokenPaginationHeaders.php b/clients/client/php/lib/Model/TokenPaginationHeaders.php index 7baaa3ed7e5..ec356732e14 100644 --- a/clients/client/php/lib/Model/TokenPaginationHeaders.php +++ b/clients/client/php/lib/Model/TokenPaginationHeaders.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TokenPaginationRequestParameters.php b/clients/client/php/lib/Model/TokenPaginationRequestParameters.php index 2b9ff5c0fe4..c0f61fc430d 100644 --- a/clients/client/php/lib/Model/TokenPaginationRequestParameters.php +++ b/clients/client/php/lib/Model/TokenPaginationRequestParameters.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TokenPaginationResponseHeaders.php b/clients/client/php/lib/Model/TokenPaginationResponseHeaders.php index 00a3e9b5de5..1080df5a3f3 100644 --- a/clients/client/php/lib/Model/TokenPaginationResponseHeaders.php +++ b/clients/client/php/lib/Model/TokenPaginationResponseHeaders.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TrustOAuth2JwtGrantIssuer.php b/clients/client/php/lib/Model/TrustOAuth2JwtGrantIssuer.php index e4ca91914b9..169d570ba27 100644 --- a/clients/client/php/lib/Model/TrustOAuth2JwtGrantIssuer.php +++ b/clients/client/php/lib/Model/TrustOAuth2JwtGrantIssuer.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TrustedOAuth2JwtGrantIssuer.php b/clients/client/php/lib/Model/TrustedOAuth2JwtGrantIssuer.php index 71928996c07..07c9ecd38be 100644 --- a/clients/client/php/lib/Model/TrustedOAuth2JwtGrantIssuer.php +++ b/clients/client/php/lib/Model/TrustedOAuth2JwtGrantIssuer.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/TrustedOAuth2JwtGrantJsonWebKey.php b/clients/client/php/lib/Model/TrustedOAuth2JwtGrantJsonWebKey.php index cd5a084a99e..f0f48bc2278 100644 --- a/clients/client/php/lib/Model/TrustedOAuth2JwtGrantJsonWebKey.php +++ b/clients/client/php/lib/Model/TrustedOAuth2JwtGrantJsonWebKey.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiContainer.php b/clients/client/php/lib/Model/UiContainer.php index 399c7af27fb..50cbb6f1dae 100644 --- a/clients/client/php/lib/Model/UiContainer.php +++ b/clients/client/php/lib/Model/UiContainer.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNode.php b/clients/client/php/lib/Model/UiNode.php index 235948b03e1..2a06ec0168e 100644 --- a/clients/client/php/lib/Model/UiNode.php +++ b/clients/client/php/lib/Model/UiNode.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeAnchorAttributes.php b/clients/client/php/lib/Model/UiNodeAnchorAttributes.php index 4badaea8846..6fd63cd0099 100644 --- a/clients/client/php/lib/Model/UiNodeAnchorAttributes.php +++ b/clients/client/php/lib/Model/UiNodeAnchorAttributes.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeAttributes.php b/clients/client/php/lib/Model/UiNodeAttributes.php index 5a82feead07..2da31793323 100644 --- a/clients/client/php/lib/Model/UiNodeAttributes.php +++ b/clients/client/php/lib/Model/UiNodeAttributes.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeImageAttributes.php b/clients/client/php/lib/Model/UiNodeImageAttributes.php index 552c8fc7610..0eec570141a 100644 --- a/clients/client/php/lib/Model/UiNodeImageAttributes.php +++ b/clients/client/php/lib/Model/UiNodeImageAttributes.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeInputAttributes.php b/clients/client/php/lib/Model/UiNodeInputAttributes.php index f1075d41390..76210094b23 100644 --- a/clients/client/php/lib/Model/UiNodeInputAttributes.php +++ b/clients/client/php/lib/Model/UiNodeInputAttributes.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeMeta.php b/clients/client/php/lib/Model/UiNodeMeta.php index a696fb2041d..f0f4ae96023 100644 --- a/clients/client/php/lib/Model/UiNodeMeta.php +++ b/clients/client/php/lib/Model/UiNodeMeta.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeScriptAttributes.php b/clients/client/php/lib/Model/UiNodeScriptAttributes.php index c2b90ed3270..c7fd2c1c165 100644 --- a/clients/client/php/lib/Model/UiNodeScriptAttributes.php +++ b/clients/client/php/lib/Model/UiNodeScriptAttributes.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiNodeTextAttributes.php b/clients/client/php/lib/Model/UiNodeTextAttributes.php index 305a256fd0a..97f5f759ff4 100644 --- a/clients/client/php/lib/Model/UiNodeTextAttributes.php +++ b/clients/client/php/lib/Model/UiNodeTextAttributes.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UiText.php b/clients/client/php/lib/Model/UiText.php index 8e4b2111556..476d391ac18 100644 --- a/clients/client/php/lib/Model/UiText.php +++ b/clients/client/php/lib/Model/UiText.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateIdentityBody.php b/clients/client/php/lib/Model/UpdateIdentityBody.php index 838a5645299..e48c5653fa2 100644 --- a/clients/client/php/lib/Model/UpdateIdentityBody.php +++ b/clients/client/php/lib/Model/UpdateIdentityBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateLoginFlowBody.php b/clients/client/php/lib/Model/UpdateLoginFlowBody.php index 51b43cf1251..8246bfba112 100644 --- a/clients/client/php/lib/Model/UpdateLoginFlowBody.php +++ b/clients/client/php/lib/Model/UpdateLoginFlowBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateLoginFlowWithLookupSecretMethod.php b/clients/client/php/lib/Model/UpdateLoginFlowWithLookupSecretMethod.php index 4a762a9f928..ebfca836499 100644 --- a/clients/client/php/lib/Model/UpdateLoginFlowWithLookupSecretMethod.php +++ b/clients/client/php/lib/Model/UpdateLoginFlowWithLookupSecretMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateLoginFlowWithOidcMethod.php b/clients/client/php/lib/Model/UpdateLoginFlowWithOidcMethod.php index ffbb2987789..962d6531590 100644 --- a/clients/client/php/lib/Model/UpdateLoginFlowWithOidcMethod.php +++ b/clients/client/php/lib/Model/UpdateLoginFlowWithOidcMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateLoginFlowWithPasswordMethod.php b/clients/client/php/lib/Model/UpdateLoginFlowWithPasswordMethod.php index bd7c81a1f1d..934733f2b3c 100644 --- a/clients/client/php/lib/Model/UpdateLoginFlowWithPasswordMethod.php +++ b/clients/client/php/lib/Model/UpdateLoginFlowWithPasswordMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateLoginFlowWithTotpMethod.php b/clients/client/php/lib/Model/UpdateLoginFlowWithTotpMethod.php index c881ed26719..e1a918b69bc 100644 --- a/clients/client/php/lib/Model/UpdateLoginFlowWithTotpMethod.php +++ b/clients/client/php/lib/Model/UpdateLoginFlowWithTotpMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateLoginFlowWithWebAuthnMethod.php b/clients/client/php/lib/Model/UpdateLoginFlowWithWebAuthnMethod.php index 595ffb440c6..7566f49ed65 100644 --- a/clients/client/php/lib/Model/UpdateLoginFlowWithWebAuthnMethod.php +++ b/clients/client/php/lib/Model/UpdateLoginFlowWithWebAuthnMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRecoveryFlowBody.php b/clients/client/php/lib/Model/UpdateRecoveryFlowBody.php index c4a2fcd7454..fb61da4d2ae 100644 --- a/clients/client/php/lib/Model/UpdateRecoveryFlowBody.php +++ b/clients/client/php/lib/Model/UpdateRecoveryFlowBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRecoveryFlowWithCodeMethod.php b/clients/client/php/lib/Model/UpdateRecoveryFlowWithCodeMethod.php index 88e78ed06d0..7ec3a17fa55 100644 --- a/clients/client/php/lib/Model/UpdateRecoveryFlowWithCodeMethod.php +++ b/clients/client/php/lib/Model/UpdateRecoveryFlowWithCodeMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRecoveryFlowWithLinkMethod.php b/clients/client/php/lib/Model/UpdateRecoveryFlowWithLinkMethod.php index 803706f1b7f..fc15e0edd5a 100644 --- a/clients/client/php/lib/Model/UpdateRecoveryFlowWithLinkMethod.php +++ b/clients/client/php/lib/Model/UpdateRecoveryFlowWithLinkMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRegistrationFlowBody.php b/clients/client/php/lib/Model/UpdateRegistrationFlowBody.php index 72c7782bf24..0042c8a103e 100644 --- a/clients/client/php/lib/Model/UpdateRegistrationFlowBody.php +++ b/clients/client/php/lib/Model/UpdateRegistrationFlowBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRegistrationFlowWithOidcMethod.php b/clients/client/php/lib/Model/UpdateRegistrationFlowWithOidcMethod.php index 3f150f69abc..4be7062157d 100644 --- a/clients/client/php/lib/Model/UpdateRegistrationFlowWithOidcMethod.php +++ b/clients/client/php/lib/Model/UpdateRegistrationFlowWithOidcMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRegistrationFlowWithPasswordMethod.php b/clients/client/php/lib/Model/UpdateRegistrationFlowWithPasswordMethod.php index 43d15757f4c..83f39e8d860 100644 --- a/clients/client/php/lib/Model/UpdateRegistrationFlowWithPasswordMethod.php +++ b/clients/client/php/lib/Model/UpdateRegistrationFlowWithPasswordMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateRegistrationFlowWithWebAuthnMethod.php b/clients/client/php/lib/Model/UpdateRegistrationFlowWithWebAuthnMethod.php index 4149a386da5..34a23a43b6c 100644 --- a/clients/client/php/lib/Model/UpdateRegistrationFlowWithWebAuthnMethod.php +++ b/clients/client/php/lib/Model/UpdateRegistrationFlowWithWebAuthnMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowBody.php b/clients/client/php/lib/Model/UpdateSettingsFlowBody.php index 2bcf73c2aa4..81a9799c40a 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowBody.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowWithLookupMethod.php b/clients/client/php/lib/Model/UpdateSettingsFlowWithLookupMethod.php index 5073b19e412..aae4071725a 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowWithLookupMethod.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowWithLookupMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowWithOidcMethod.php b/clients/client/php/lib/Model/UpdateSettingsFlowWithOidcMethod.php index 22004f2c0f9..7ef5c1d7ff4 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowWithOidcMethod.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowWithOidcMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowWithPasswordMethod.php b/clients/client/php/lib/Model/UpdateSettingsFlowWithPasswordMethod.php index 78e416cb775..25fb7e7d5f3 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowWithPasswordMethod.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowWithPasswordMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowWithProfileMethod.php b/clients/client/php/lib/Model/UpdateSettingsFlowWithProfileMethod.php index 0379b05a07f..1f619f1b166 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowWithProfileMethod.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowWithProfileMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowWithTotpMethod.php b/clients/client/php/lib/Model/UpdateSettingsFlowWithTotpMethod.php index 4fba3a704b2..e8b8049d0ce 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowWithTotpMethod.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowWithTotpMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSettingsFlowWithWebAuthnMethod.php b/clients/client/php/lib/Model/UpdateSettingsFlowWithWebAuthnMethod.php index 1637edc81d9..c90e474421e 100644 --- a/clients/client/php/lib/Model/UpdateSettingsFlowWithWebAuthnMethod.php +++ b/clients/client/php/lib/Model/UpdateSettingsFlowWithWebAuthnMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateSubscriptionBody.php b/clients/client/php/lib/Model/UpdateSubscriptionBody.php index b73f5ed03c5..1392482dd59 100644 --- a/clients/client/php/lib/Model/UpdateSubscriptionBody.php +++ b/clients/client/php/lib/Model/UpdateSubscriptionBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateVerificationFlowBody.php b/clients/client/php/lib/Model/UpdateVerificationFlowBody.php index 3c0225eabb1..e687334f4b9 100644 --- a/clients/client/php/lib/Model/UpdateVerificationFlowBody.php +++ b/clients/client/php/lib/Model/UpdateVerificationFlowBody.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateVerificationFlowWithCodeMethod.php b/clients/client/php/lib/Model/UpdateVerificationFlowWithCodeMethod.php index a8cd1a55ca1..db99d2df97a 100644 --- a/clients/client/php/lib/Model/UpdateVerificationFlowWithCodeMethod.php +++ b/clients/client/php/lib/Model/UpdateVerificationFlowWithCodeMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/UpdateVerificationFlowWithLinkMethod.php b/clients/client/php/lib/Model/UpdateVerificationFlowWithLinkMethod.php index 928202a5099..4856ec0fffd 100644 --- a/clients/client/php/lib/Model/UpdateVerificationFlowWithLinkMethod.php +++ b/clients/client/php/lib/Model/UpdateVerificationFlowWithLinkMethod.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Usage.php b/clients/client/php/lib/Model/Usage.php index 9772c9bcc4d..ca615734c28 100644 --- a/clients/client/php/lib/Model/Usage.php +++ b/clients/client/php/lib/Model/Usage.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/VerifiableCredentialPrimingResponse.php b/clients/client/php/lib/Model/VerifiableCredentialPrimingResponse.php index 21283bf198e..63f22139475 100644 --- a/clients/client/php/lib/Model/VerifiableCredentialPrimingResponse.php +++ b/clients/client/php/lib/Model/VerifiableCredentialPrimingResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/VerifiableCredentialProof.php b/clients/client/php/lib/Model/VerifiableCredentialProof.php index b9fd6cea6cc..0667f696c30 100644 --- a/clients/client/php/lib/Model/VerifiableCredentialProof.php +++ b/clients/client/php/lib/Model/VerifiableCredentialProof.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/VerifiableCredentialResponse.php b/clients/client/php/lib/Model/VerifiableCredentialResponse.php index 9e724780880..aa83f75a351 100644 --- a/clients/client/php/lib/Model/VerifiableCredentialResponse.php +++ b/clients/client/php/lib/Model/VerifiableCredentialResponse.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/VerifiableIdentityAddress.php b/clients/client/php/lib/Model/VerifiableIdentityAddress.php index 2a08e4f9ea1..c9c0ced76de 100644 --- a/clients/client/php/lib/Model/VerifiableIdentityAddress.php +++ b/clients/client/php/lib/Model/VerifiableIdentityAddress.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/VerificationFlow.php b/clients/client/php/lib/Model/VerificationFlow.php index c5cbef0ed51..a1c489d6af1 100644 --- a/clients/client/php/lib/Model/VerificationFlow.php +++ b/clients/client/php/lib/Model/VerificationFlow.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/VerificationFlowState.php b/clients/client/php/lib/Model/VerificationFlowState.php index 295e5bdee1e..cca4dd2d022 100644 --- a/clients/client/php/lib/Model/VerificationFlowState.php +++ b/clients/client/php/lib/Model/VerificationFlowState.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Version.php b/clients/client/php/lib/Model/Version.php index 74319040536..c4a81f2170f 100644 --- a/clients/client/php/lib/Model/Version.php +++ b/clients/client/php/lib/Model/Version.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/Warning.php b/clients/client/php/lib/Model/Warning.php index 5173dfb080d..a38793700c2 100644 --- a/clients/client/php/lib/Model/Warning.php +++ b/clients/client/php/lib/Model/Warning.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/ObjectSerializer.php b/clients/client/php/lib/ObjectSerializer.php index f3c14e6e5eb..b353a5b0978 100644 --- a/clients/client/php/lib/ObjectSerializer.php +++ b/clients/client/php/lib/ObjectSerializer.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/CourierApiTest.php b/clients/client/php/test/Api/CourierApiTest.php index a4e7678474e..a0b7db3c5d0 100644 --- a/clients/client/php/test/Api/CourierApiTest.php +++ b/clients/client/php/test/Api/CourierApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/FrontendApiTest.php b/clients/client/php/test/Api/FrontendApiTest.php index 0c0b213cb7e..006a9537fd4 100644 --- a/clients/client/php/test/Api/FrontendApiTest.php +++ b/clients/client/php/test/Api/FrontendApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/IdentityApiTest.php b/clients/client/php/test/Api/IdentityApiTest.php index bcac3ae176f..07613cfcdd0 100644 --- a/clients/client/php/test/Api/IdentityApiTest.php +++ b/clients/client/php/test/Api/IdentityApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/JwkApiTest.php b/clients/client/php/test/Api/JwkApiTest.php index d02529b513d..c33a66771aa 100644 --- a/clients/client/php/test/Api/JwkApiTest.php +++ b/clients/client/php/test/Api/JwkApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/MetadataApiTest.php b/clients/client/php/test/Api/MetadataApiTest.php index cf2a56827ac..f204af03a1e 100644 --- a/clients/client/php/test/Api/MetadataApiTest.php +++ b/clients/client/php/test/Api/MetadataApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/OAuth2ApiTest.php b/clients/client/php/test/Api/OAuth2ApiTest.php index d9af79457d9..058bb9ca3fd 100644 --- a/clients/client/php/test/Api/OAuth2ApiTest.php +++ b/clients/client/php/test/Api/OAuth2ApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/OidcApiTest.php b/clients/client/php/test/Api/OidcApiTest.php index 85ca1a18e81..b7cf8436f8a 100644 --- a/clients/client/php/test/Api/OidcApiTest.php +++ b/clients/client/php/test/Api/OidcApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/PermissionApiTest.php b/clients/client/php/test/Api/PermissionApiTest.php index e4ca0445fce..db08191db24 100644 --- a/clients/client/php/test/Api/PermissionApiTest.php +++ b/clients/client/php/test/Api/PermissionApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/ProjectApiTest.php b/clients/client/php/test/Api/ProjectApiTest.php index f6f53bd6b2e..f3c462041a3 100644 --- a/clients/client/php/test/Api/ProjectApiTest.php +++ b/clients/client/php/test/Api/ProjectApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/RelationshipApiTest.php b/clients/client/php/test/Api/RelationshipApiTest.php index fde4fb90b08..efb07f42edc 100644 --- a/clients/client/php/test/Api/RelationshipApiTest.php +++ b/clients/client/php/test/Api/RelationshipApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Api/WellknownApiTest.php b/clients/client/php/test/Api/WellknownApiTest.php index edb4d1c1d05..8d6d044d9dc 100644 --- a/clients/client/php/test/Api/WellknownApiTest.php +++ b/clients/client/php/test/Api/WellknownApiTest.php @@ -14,7 +14,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/AcceptOAuth2ConsentRequestSessionTest.php b/clients/client/php/test/Model/AcceptOAuth2ConsentRequestSessionTest.php index 82e7b0bc568..f93d20936b2 100644 --- a/clients/client/php/test/Model/AcceptOAuth2ConsentRequestSessionTest.php +++ b/clients/client/php/test/Model/AcceptOAuth2ConsentRequestSessionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/AcceptOAuth2ConsentRequestTest.php b/clients/client/php/test/Model/AcceptOAuth2ConsentRequestTest.php index edd9d3e5451..a28932374a2 100644 --- a/clients/client/php/test/Model/AcceptOAuth2ConsentRequestTest.php +++ b/clients/client/php/test/Model/AcceptOAuth2ConsentRequestTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/AcceptOAuth2LoginRequestTest.php b/clients/client/php/test/Model/AcceptOAuth2LoginRequestTest.php index 0d2058f88b9..7807e36d3fd 100644 --- a/clients/client/php/test/Model/AcceptOAuth2LoginRequestTest.php +++ b/clients/client/php/test/Model/AcceptOAuth2LoginRequestTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ActiveProjectInConsoleTest.php b/clients/client/php/test/Model/ActiveProjectInConsoleTest.php index a20dbf1110f..55d074e93ce 100644 --- a/clients/client/php/test/Model/ActiveProjectInConsoleTest.php +++ b/clients/client/php/test/Model/ActiveProjectInConsoleTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/AuthenticatorAssuranceLevelTest.php b/clients/client/php/test/Model/AuthenticatorAssuranceLevelTest.php index ced22977f5f..2b55c7b9533 100644 --- a/clients/client/php/test/Model/AuthenticatorAssuranceLevelTest.php +++ b/clients/client/php/test/Model/AuthenticatorAssuranceLevelTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/BatchPatchIdentitiesResponseTest.php b/clients/client/php/test/Model/BatchPatchIdentitiesResponseTest.php index ca7d6235c4c..e9350ad3c7a 100644 --- a/clients/client/php/test/Model/BatchPatchIdentitiesResponseTest.php +++ b/clients/client/php/test/Model/BatchPatchIdentitiesResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CORSTest.php b/clients/client/php/test/Model/CORSTest.php index 3f878a61ea1..d82ff4641b8 100644 --- a/clients/client/php/test/Model/CORSTest.php +++ b/clients/client/php/test/Model/CORSTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CheckOplSyntaxResultTest.php b/clients/client/php/test/Model/CheckOplSyntaxResultTest.php index 705de3ef761..9a961be9dc1 100644 --- a/clients/client/php/test/Model/CheckOplSyntaxResultTest.php +++ b/clients/client/php/test/Model/CheckOplSyntaxResultTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CheckPermissionResultTest.php b/clients/client/php/test/Model/CheckPermissionResultTest.php index 1de5c863126..2a54665728e 100644 --- a/clients/client/php/test/Model/CheckPermissionResultTest.php +++ b/clients/client/php/test/Model/CheckPermissionResultTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CloudAccountTest.php b/clients/client/php/test/Model/CloudAccountTest.php index f609a8af12e..06da0490841 100644 --- a/clients/client/php/test/Model/CloudAccountTest.php +++ b/clients/client/php/test/Model/CloudAccountTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ContinueWithSetOrySessionTokenTest.php b/clients/client/php/test/Model/ContinueWithSetOrySessionTokenTest.php index a49da0068a1..2b1a53f723f 100644 --- a/clients/client/php/test/Model/ContinueWithSetOrySessionTokenTest.php +++ b/clients/client/php/test/Model/ContinueWithSetOrySessionTokenTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ContinueWithTest.php b/clients/client/php/test/Model/ContinueWithTest.php index 89a33c6bdef..6fbc1c9fc1b 100644 --- a/clients/client/php/test/Model/ContinueWithTest.php +++ b/clients/client/php/test/Model/ContinueWithTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ContinueWithVerificationUiFlowTest.php b/clients/client/php/test/Model/ContinueWithVerificationUiFlowTest.php index ffa1da1bcf5..e25414fc661 100644 --- a/clients/client/php/test/Model/ContinueWithVerificationUiFlowTest.php +++ b/clients/client/php/test/Model/ContinueWithVerificationUiFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ContinueWithVerificationUiTest.php b/clients/client/php/test/Model/ContinueWithVerificationUiTest.php index 7230534b170..3f1e8ab4af9 100644 --- a/clients/client/php/test/Model/ContinueWithVerificationUiTest.php +++ b/clients/client/php/test/Model/ContinueWithVerificationUiTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CourierMessageStatusTest.php b/clients/client/php/test/Model/CourierMessageStatusTest.php index 6d2e8626eec..e1dae33df0f 100644 --- a/clients/client/php/test/Model/CourierMessageStatusTest.php +++ b/clients/client/php/test/Model/CourierMessageStatusTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CourierMessageTypeTest.php b/clients/client/php/test/Model/CourierMessageTypeTest.php index 8984639f3bb..8e9821cb276 100644 --- a/clients/client/php/test/Model/CourierMessageTypeTest.php +++ b/clients/client/php/test/Model/CourierMessageTypeTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateCustomDomainBodyTest.php b/clients/client/php/test/Model/CreateCustomDomainBodyTest.php index 8477702ba44..a95e8585e5e 100644 --- a/clients/client/php/test/Model/CreateCustomDomainBodyTest.php +++ b/clients/client/php/test/Model/CreateCustomDomainBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateIdentityBodyTest.php b/clients/client/php/test/Model/CreateIdentityBodyTest.php index debf738599c..40ebbd108c2 100644 --- a/clients/client/php/test/Model/CreateIdentityBodyTest.php +++ b/clients/client/php/test/Model/CreateIdentityBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateInviteResponseTest.php b/clients/client/php/test/Model/CreateInviteResponseTest.php index c9fe3a7c89e..442a214fba5 100644 --- a/clients/client/php/test/Model/CreateInviteResponseTest.php +++ b/clients/client/php/test/Model/CreateInviteResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateJsonWebKeySetTest.php b/clients/client/php/test/Model/CreateJsonWebKeySetTest.php index 8e7f7413b95..17ce2904493 100644 --- a/clients/client/php/test/Model/CreateJsonWebKeySetTest.php +++ b/clients/client/php/test/Model/CreateJsonWebKeySetTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateProjectBodyTest.php b/clients/client/php/test/Model/CreateProjectBodyTest.php index 639e6e7a438..43c8f6b160a 100644 --- a/clients/client/php/test/Model/CreateProjectBodyTest.php +++ b/clients/client/php/test/Model/CreateProjectBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateProjectBrandingTest.php b/clients/client/php/test/Model/CreateProjectBrandingTest.php index 3f8597fdab7..98f1fae38ae 100644 --- a/clients/client/php/test/Model/CreateProjectBrandingTest.php +++ b/clients/client/php/test/Model/CreateProjectBrandingTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateProjectMemberInviteBodyTest.php b/clients/client/php/test/Model/CreateProjectMemberInviteBodyTest.php index fb78af8189d..b9665b4761d 100644 --- a/clients/client/php/test/Model/CreateProjectMemberInviteBodyTest.php +++ b/clients/client/php/test/Model/CreateProjectMemberInviteBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateRecoveryCodeForIdentityBodyTest.php b/clients/client/php/test/Model/CreateRecoveryCodeForIdentityBodyTest.php index adf4a004338..d8acc0fe95f 100644 --- a/clients/client/php/test/Model/CreateRecoveryCodeForIdentityBodyTest.php +++ b/clients/client/php/test/Model/CreateRecoveryCodeForIdentityBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateRecoveryLinkForIdentityBodyTest.php b/clients/client/php/test/Model/CreateRecoveryLinkForIdentityBodyTest.php index 01f51e67be3..708bf4419ca 100644 --- a/clients/client/php/test/Model/CreateRecoveryLinkForIdentityBodyTest.php +++ b/clients/client/php/test/Model/CreateRecoveryLinkForIdentityBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateRelationshipBodyTest.php b/clients/client/php/test/Model/CreateRelationshipBodyTest.php index 83c34f13b2c..a536fbf3ad0 100644 --- a/clients/client/php/test/Model/CreateRelationshipBodyTest.php +++ b/clients/client/php/test/Model/CreateRelationshipBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateSubscriptionBodyTest.php b/clients/client/php/test/Model/CreateSubscriptionBodyTest.php index 6be6a7f24a8..9698f8e5528 100644 --- a/clients/client/php/test/Model/CreateSubscriptionBodyTest.php +++ b/clients/client/php/test/Model/CreateSubscriptionBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateVerifiableCredentialRequestBodyTest.php b/clients/client/php/test/Model/CreateVerifiableCredentialRequestBodyTest.php index 3cd036f8b1e..9110ed2b065 100644 --- a/clients/client/php/test/Model/CreateVerifiableCredentialRequestBodyTest.php +++ b/clients/client/php/test/Model/CreateVerifiableCredentialRequestBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CredentialSupportedDraft00Test.php b/clients/client/php/test/Model/CredentialSupportedDraft00Test.php index 788ba93852c..588595e5ec1 100644 --- a/clients/client/php/test/Model/CredentialSupportedDraft00Test.php +++ b/clients/client/php/test/Model/CredentialSupportedDraft00Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CustomDomainTest.php b/clients/client/php/test/Model/CustomDomainTest.php index b78a05945f4..5d1a284afa9 100644 --- a/clients/client/php/test/Model/CustomDomainTest.php +++ b/clients/client/php/test/Model/CustomDomainTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/DeleteMySessionsCountTest.php b/clients/client/php/test/Model/DeleteMySessionsCountTest.php index a476a6d5716..3b990a89b29 100644 --- a/clients/client/php/test/Model/DeleteMySessionsCountTest.php +++ b/clients/client/php/test/Model/DeleteMySessionsCountTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/EmailTemplateDataBodyTest.php b/clients/client/php/test/Model/EmailTemplateDataBodyTest.php index 06ddf677661..1158d962d15 100644 --- a/clients/client/php/test/Model/EmailTemplateDataBodyTest.php +++ b/clients/client/php/test/Model/EmailTemplateDataBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/EmailTemplateDataTest.php b/clients/client/php/test/Model/EmailTemplateDataTest.php index e0f854cedb2..d270e9ea20e 100644 --- a/clients/client/php/test/Model/EmailTemplateDataTest.php +++ b/clients/client/php/test/Model/EmailTemplateDataTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.php b/clients/client/php/test/Model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.php index a6678bfad07..b4fa15025c9 100644 --- a/clients/client/php/test/Model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.php +++ b/clients/client/php/test/Model/ErrorAuthenticatorAssuranceLevelNotSatisfiedTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ErrorBrowserLocationChangeRequiredTest.php b/clients/client/php/test/Model/ErrorBrowserLocationChangeRequiredTest.php index 8b9babff24a..b8300dfc7a4 100644 --- a/clients/client/php/test/Model/ErrorBrowserLocationChangeRequiredTest.php +++ b/clients/client/php/test/Model/ErrorBrowserLocationChangeRequiredTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ErrorFlowReplacedTest.php b/clients/client/php/test/Model/ErrorFlowReplacedTest.php index 4dc20a64ecd..7834df4e340 100644 --- a/clients/client/php/test/Model/ErrorFlowReplacedTest.php +++ b/clients/client/php/test/Model/ErrorFlowReplacedTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ErrorGenericTest.php b/clients/client/php/test/Model/ErrorGenericTest.php index 3b5b316eead..16f4e6b0213 100644 --- a/clients/client/php/test/Model/ErrorGenericTest.php +++ b/clients/client/php/test/Model/ErrorGenericTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ErrorOAuth2Test.php b/clients/client/php/test/Model/ErrorOAuth2Test.php index 5e548f221bb..fbbaa475216 100644 --- a/clients/client/php/test/Model/ErrorOAuth2Test.php +++ b/clients/client/php/test/Model/ErrorOAuth2Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ExpandedPermissionTreeTest.php b/clients/client/php/test/Model/ExpandedPermissionTreeTest.php index 3b82e579bd6..76dfc01d4b3 100644 --- a/clients/client/php/test/Model/ExpandedPermissionTreeTest.php +++ b/clients/client/php/test/Model/ExpandedPermissionTreeTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/FlowErrorTest.php b/clients/client/php/test/Model/FlowErrorTest.php index 821f75dd8f8..9116906b6d4 100644 --- a/clients/client/php/test/Model/FlowErrorTest.php +++ b/clients/client/php/test/Model/FlowErrorTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/GenericErrorContentTest.php b/clients/client/php/test/Model/GenericErrorContentTest.php index e6387b4a6b5..eb25d45ba83 100644 --- a/clients/client/php/test/Model/GenericErrorContentTest.php +++ b/clients/client/php/test/Model/GenericErrorContentTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/GenericErrorTest.php b/clients/client/php/test/Model/GenericErrorTest.php index 781e5d387cc..4da92f485af 100644 --- a/clients/client/php/test/Model/GenericErrorTest.php +++ b/clients/client/php/test/Model/GenericErrorTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/GenericUsageTest.php b/clients/client/php/test/Model/GenericUsageTest.php index 86584c51578..8f6c37deed9 100644 --- a/clients/client/php/test/Model/GenericUsageTest.php +++ b/clients/client/php/test/Model/GenericUsageTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/GetManagedIdentitySchemaLocationTest.php b/clients/client/php/test/Model/GetManagedIdentitySchemaLocationTest.php index ba677e1e2ab..fe784cc682a 100644 --- a/clients/client/php/test/Model/GetManagedIdentitySchemaLocationTest.php +++ b/clients/client/php/test/Model/GetManagedIdentitySchemaLocationTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/GetProjectMetricsResponseTest.php b/clients/client/php/test/Model/GetProjectMetricsResponseTest.php index 2d2f456dcc0..d48f33ec49c 100644 --- a/clients/client/php/test/Model/GetProjectMetricsResponseTest.php +++ b/clients/client/php/test/Model/GetProjectMetricsResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/HealthNotReadyStatusTest.php b/clients/client/php/test/Model/HealthNotReadyStatusTest.php index e5f4baa7d0c..a9ca004a50a 100644 --- a/clients/client/php/test/Model/HealthNotReadyStatusTest.php +++ b/clients/client/php/test/Model/HealthNotReadyStatusTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/HealthStatusTest.php b/clients/client/php/test/Model/HealthStatusTest.php index 4ac377fed0b..196579e26ca 100644 --- a/clients/client/php/test/Model/HealthStatusTest.php +++ b/clients/client/php/test/Model/HealthStatusTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityCredentialsOidcProviderTest.php b/clients/client/php/test/Model/IdentityCredentialsOidcProviderTest.php index e9aeb8ab19b..81a23e19c90 100644 --- a/clients/client/php/test/Model/IdentityCredentialsOidcProviderTest.php +++ b/clients/client/php/test/Model/IdentityCredentialsOidcProviderTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityCredentialsOidcTest.php b/clients/client/php/test/Model/IdentityCredentialsOidcTest.php index c88f7728117..da1d5db0009 100644 --- a/clients/client/php/test/Model/IdentityCredentialsOidcTest.php +++ b/clients/client/php/test/Model/IdentityCredentialsOidcTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityCredentialsPasswordTest.php b/clients/client/php/test/Model/IdentityCredentialsPasswordTest.php index cf5ef5155c2..d168b1fd36e 100644 --- a/clients/client/php/test/Model/IdentityCredentialsPasswordTest.php +++ b/clients/client/php/test/Model/IdentityCredentialsPasswordTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityCredentialsTest.php b/clients/client/php/test/Model/IdentityCredentialsTest.php index 4bf16c03c45..f5c8fccf702 100644 --- a/clients/client/php/test/Model/IdentityCredentialsTest.php +++ b/clients/client/php/test/Model/IdentityCredentialsTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityCredentialsTypeTest.php b/clients/client/php/test/Model/IdentityCredentialsTypeTest.php index 0b9e949908e..68209732c95 100644 --- a/clients/client/php/test/Model/IdentityCredentialsTypeTest.php +++ b/clients/client/php/test/Model/IdentityCredentialsTypeTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityPatchResponseTest.php b/clients/client/php/test/Model/IdentityPatchResponseTest.php index 52f1fc3ad2a..c81ec980f7b 100644 --- a/clients/client/php/test/Model/IdentityPatchResponseTest.php +++ b/clients/client/php/test/Model/IdentityPatchResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityPatchTest.php b/clients/client/php/test/Model/IdentityPatchTest.php index 64191ebb9b4..e5b996346c2 100644 --- a/clients/client/php/test/Model/IdentityPatchTest.php +++ b/clients/client/php/test/Model/IdentityPatchTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentitySchemaContainerTest.php b/clients/client/php/test/Model/IdentitySchemaContainerTest.php index d918b6fa0b4..f5ffab4d5df 100644 --- a/clients/client/php/test/Model/IdentitySchemaContainerTest.php +++ b/clients/client/php/test/Model/IdentitySchemaContainerTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentitySchemaPresetTest.php b/clients/client/php/test/Model/IdentitySchemaPresetTest.php index 2153211e2e3..dee7f6c3256 100644 --- a/clients/client/php/test/Model/IdentitySchemaPresetTest.php +++ b/clients/client/php/test/Model/IdentitySchemaPresetTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityStateTest.php b/clients/client/php/test/Model/IdentityStateTest.php index 7fb6d277d37..93be79c3e0b 100644 --- a/clients/client/php/test/Model/IdentityStateTest.php +++ b/clients/client/php/test/Model/IdentityStateTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityTest.php b/clients/client/php/test/Model/IdentityTest.php index 16bdc813226..3476eda9f0f 100644 --- a/clients/client/php/test/Model/IdentityTest.php +++ b/clients/client/php/test/Model/IdentityTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigProviderTest.php b/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigProviderTest.php index 91fd9b27c33..469c8be4bac 100644 --- a/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigProviderTest.php +++ b/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigProviderTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigTest.php b/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigTest.php index 72003f38511..53f2e8c5d73 100644 --- a/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigTest.php +++ b/clients/client/php/test/Model/IdentityWithCredentialsOidcConfigTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityWithCredentialsOidcTest.php b/clients/client/php/test/Model/IdentityWithCredentialsOidcTest.php index fcf5a35d474..8444db347f6 100644 --- a/clients/client/php/test/Model/IdentityWithCredentialsOidcTest.php +++ b/clients/client/php/test/Model/IdentityWithCredentialsOidcTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityWithCredentialsPasswordConfigTest.php b/clients/client/php/test/Model/IdentityWithCredentialsPasswordConfigTest.php index 72265452f68..3b7ce28cf68 100644 --- a/clients/client/php/test/Model/IdentityWithCredentialsPasswordConfigTest.php +++ b/clients/client/php/test/Model/IdentityWithCredentialsPasswordConfigTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityWithCredentialsPasswordTest.php b/clients/client/php/test/Model/IdentityWithCredentialsPasswordTest.php index 97f162725f4..e4a91e49a97 100644 --- a/clients/client/php/test/Model/IdentityWithCredentialsPasswordTest.php +++ b/clients/client/php/test/Model/IdentityWithCredentialsPasswordTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IdentityWithCredentialsTest.php b/clients/client/php/test/Model/IdentityWithCredentialsTest.php index 4cb863fd84d..a7c9651f0dc 100644 --- a/clients/client/php/test/Model/IdentityWithCredentialsTest.php +++ b/clients/client/php/test/Model/IdentityWithCredentialsTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InlineObject3Test.php b/clients/client/php/test/Model/InlineObject3Test.php index 4b569383304..8bfd2f6a0d9 100644 --- a/clients/client/php/test/Model/InlineObject3Test.php +++ b/clients/client/php/test/Model/InlineObject3Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InlineResponse2001Test.php b/clients/client/php/test/Model/InlineResponse2001Test.php index 0ef5d0516ec..3a85e0c13a0 100644 --- a/clients/client/php/test/Model/InlineResponse2001Test.php +++ b/clients/client/php/test/Model/InlineResponse2001Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InlineResponse200Test.php b/clients/client/php/test/Model/InlineResponse200Test.php index d218bb1b8ae..6879f3c7914 100644 --- a/clients/client/php/test/Model/InlineResponse200Test.php +++ b/clients/client/php/test/Model/InlineResponse200Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InlineResponse503Test.php b/clients/client/php/test/Model/InlineResponse503Test.php index d12d89067a7..bca608f67aa 100644 --- a/clients/client/php/test/Model/InlineResponse503Test.php +++ b/clients/client/php/test/Model/InlineResponse503Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InternalGetProjectBrandingBodyTest.php b/clients/client/php/test/Model/InternalGetProjectBrandingBodyTest.php index e03020e37ba..ba9e066c60c 100644 --- a/clients/client/php/test/Model/InternalGetProjectBrandingBodyTest.php +++ b/clients/client/php/test/Model/InternalGetProjectBrandingBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.php b/clients/client/php/test/Model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.php index c616cc2958c..2f4d6ba1917 100644 --- a/clients/client/php/test/Model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.php +++ b/clients/client/php/test/Model/InternalIsAXWelcomeScreenEnabledForProjectBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugBodyTest.php b/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugBodyTest.php index a58c25283ea..9440024a458 100644 --- a/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugBodyTest.php +++ b/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugResponseTest.php b/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugResponseTest.php index d4dcb404567..df9a04c5299 100644 --- a/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugResponseTest.php +++ b/clients/client/php/test/Model/InternalIsOwnerForProjectBySlugResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/InternalProvisionMockSubscriptionTest.php b/clients/client/php/test/Model/InternalProvisionMockSubscriptionTest.php index c35a5c09146..e2989834c69 100644 --- a/clients/client/php/test/Model/InternalProvisionMockSubscriptionTest.php +++ b/clients/client/php/test/Model/InternalProvisionMockSubscriptionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IntrospectedOAuth2TokenTest.php b/clients/client/php/test/Model/IntrospectedOAuth2TokenTest.php index 88061cd6df0..f0e1bfad0de 100644 --- a/clients/client/php/test/Model/IntrospectedOAuth2TokenTest.php +++ b/clients/client/php/test/Model/IntrospectedOAuth2TokenTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/IsOwnerForProjectBySlugTest.php b/clients/client/php/test/Model/IsOwnerForProjectBySlugTest.php index 7dacb67a26c..c9061532501 100644 --- a/clients/client/php/test/Model/IsOwnerForProjectBySlugTest.php +++ b/clients/client/php/test/Model/IsOwnerForProjectBySlugTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/JsonPatchTest.php b/clients/client/php/test/Model/JsonPatchTest.php index 6042bd063d2..9cb4dfdfd7a 100644 --- a/clients/client/php/test/Model/JsonPatchTest.php +++ b/clients/client/php/test/Model/JsonPatchTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/JsonWebKeySetTest.php b/clients/client/php/test/Model/JsonWebKeySetTest.php index c68ff418f0a..37865b209bb 100644 --- a/clients/client/php/test/Model/JsonWebKeySetTest.php +++ b/clients/client/php/test/Model/JsonWebKeySetTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/JsonWebKeyTest.php b/clients/client/php/test/Model/JsonWebKeyTest.php index e664fa849ec..d64728791f9 100644 --- a/clients/client/php/test/Model/JsonWebKeyTest.php +++ b/clients/client/php/test/Model/JsonWebKeyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/KetoNamespaceTest.php b/clients/client/php/test/Model/KetoNamespaceTest.php index a82a58315a1..fd1d898f74e 100644 --- a/clients/client/php/test/Model/KetoNamespaceTest.php +++ b/clients/client/php/test/Model/KetoNamespaceTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/LoginFlowTest.php b/clients/client/php/test/Model/LoginFlowTest.php index 4d3ff8856d5..24afed4a7de 100644 --- a/clients/client/php/test/Model/LoginFlowTest.php +++ b/clients/client/php/test/Model/LoginFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/LogoutFlowTest.php b/clients/client/php/test/Model/LogoutFlowTest.php index d2cd21f30d5..08263d695b6 100644 --- a/clients/client/php/test/Model/LogoutFlowTest.php +++ b/clients/client/php/test/Model/LogoutFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ManagedIdentitySchemaTest.php b/clients/client/php/test/Model/ManagedIdentitySchemaTest.php index bba516b90bc..81f5640c587 100644 --- a/clients/client/php/test/Model/ManagedIdentitySchemaTest.php +++ b/clients/client/php/test/Model/ManagedIdentitySchemaTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ManagedIdentitySchemaValidationResultTest.php b/clients/client/php/test/Model/ManagedIdentitySchemaValidationResultTest.php index df56c225be3..f9fd9999b16 100644 --- a/clients/client/php/test/Model/ManagedIdentitySchemaValidationResultTest.php +++ b/clients/client/php/test/Model/ManagedIdentitySchemaValidationResultTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/MemberInviteTest.php b/clients/client/php/test/Model/MemberInviteTest.php index e79b1f34823..7891b10214e 100644 --- a/clients/client/php/test/Model/MemberInviteTest.php +++ b/clients/client/php/test/Model/MemberInviteTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/MessageDispatchTest.php b/clients/client/php/test/Model/MessageDispatchTest.php index 89848fb1044..a47e7b543d4 100644 --- a/clients/client/php/test/Model/MessageDispatchTest.php +++ b/clients/client/php/test/Model/MessageDispatchTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/MessageTest.php b/clients/client/php/test/Model/MessageTest.php index 948d3fe9902..5e41641c58f 100644 --- a/clients/client/php/test/Model/MessageTest.php +++ b/clients/client/php/test/Model/MessageTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/MetricsDatapointTest.php b/clients/client/php/test/Model/MetricsDatapointTest.php index adc79a53481..27e10edc6f7 100644 --- a/clients/client/php/test/Model/MetricsDatapointTest.php +++ b/clients/client/php/test/Model/MetricsDatapointTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ModelNamespaceTest.php b/clients/client/php/test/Model/ModelNamespaceTest.php index 133ca566218..f13373836f4 100644 --- a/clients/client/php/test/Model/ModelNamespaceTest.php +++ b/clients/client/php/test/Model/ModelNamespaceTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/NeedsPrivilegedSessionErrorTest.php b/clients/client/php/test/Model/NeedsPrivilegedSessionErrorTest.php index c2ceb5cfcec..8af921c4583 100644 --- a/clients/client/php/test/Model/NeedsPrivilegedSessionErrorTest.php +++ b/clients/client/php/test/Model/NeedsPrivilegedSessionErrorTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/NormalizedProjectRevisionHookTest.php b/clients/client/php/test/Model/NormalizedProjectRevisionHookTest.php index a2d29322fcf..7ed87b70ab5 100644 --- a/clients/client/php/test/Model/NormalizedProjectRevisionHookTest.php +++ b/clients/client/php/test/Model/NormalizedProjectRevisionHookTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/NormalizedProjectRevisionIdentitySchemaTest.php b/clients/client/php/test/Model/NormalizedProjectRevisionIdentitySchemaTest.php index f209c61806d..7ce56a2eba1 100644 --- a/clients/client/php/test/Model/NormalizedProjectRevisionIdentitySchemaTest.php +++ b/clients/client/php/test/Model/NormalizedProjectRevisionIdentitySchemaTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/NormalizedProjectRevisionTest.php b/clients/client/php/test/Model/NormalizedProjectRevisionTest.php index 8a1f351f774..be81cc99c4a 100644 --- a/clients/client/php/test/Model/NormalizedProjectRevisionTest.php +++ b/clients/client/php/test/Model/NormalizedProjectRevisionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -530,6 +530,15 @@ public function testPropertyKratosCourierSmtpHeaders() $this->markTestIncomplete('Not implemented'); } + /** + * Test attribute "kratosCourierSmtpLocalName" + */ + public function testPropertyKratosCourierSmtpLocalName() + { + // TODO: implement + $this->markTestIncomplete('Not implemented'); + } + /** * Test attribute "kratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml" */ diff --git a/clients/client/php/test/Model/NormalizedProjectRevisionThirdPartyProviderTest.php b/clients/client/php/test/Model/NormalizedProjectRevisionThirdPartyProviderTest.php index 74a8f8af3bc..a9a9b62861c 100644 --- a/clients/client/php/test/Model/NormalizedProjectRevisionThirdPartyProviderTest.php +++ b/clients/client/php/test/Model/NormalizedProjectRevisionThirdPartyProviderTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/NormalizedProjectTest.php b/clients/client/php/test/Model/NormalizedProjectTest.php index 1fb3527eaf9..9f8d8609500 100644 --- a/clients/client/php/test/Model/NormalizedProjectTest.php +++ b/clients/client/php/test/Model/NormalizedProjectTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2ClientTest.php b/clients/client/php/test/Model/OAuth2ClientTest.php index f0d5377fa6a..c055e40eea0 100644 --- a/clients/client/php/test/Model/OAuth2ClientTest.php +++ b/clients/client/php/test/Model/OAuth2ClientTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2ClientTokenLifespansTest.php b/clients/client/php/test/Model/OAuth2ClientTokenLifespansTest.php index 694053198e6..186505cdb4d 100644 --- a/clients/client/php/test/Model/OAuth2ClientTokenLifespansTest.php +++ b/clients/client/php/test/Model/OAuth2ClientTokenLifespansTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2ConsentRequestOpenIDConnectContextTest.php b/clients/client/php/test/Model/OAuth2ConsentRequestOpenIDConnectContextTest.php index 7fb7d46d1fe..889a20865fc 100644 --- a/clients/client/php/test/Model/OAuth2ConsentRequestOpenIDConnectContextTest.php +++ b/clients/client/php/test/Model/OAuth2ConsentRequestOpenIDConnectContextTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2ConsentRequestTest.php b/clients/client/php/test/Model/OAuth2ConsentRequestTest.php index c3d35c2dc16..9a04ef79b17 100644 --- a/clients/client/php/test/Model/OAuth2ConsentRequestTest.php +++ b/clients/client/php/test/Model/OAuth2ConsentRequestTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2ConsentSessionExpiresAtTest.php b/clients/client/php/test/Model/OAuth2ConsentSessionExpiresAtTest.php index d8ea75334a4..2364959f58b 100644 --- a/clients/client/php/test/Model/OAuth2ConsentSessionExpiresAtTest.php +++ b/clients/client/php/test/Model/OAuth2ConsentSessionExpiresAtTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2ConsentSessionTest.php b/clients/client/php/test/Model/OAuth2ConsentSessionTest.php index 619ec206ddb..cac02ee57e1 100644 --- a/clients/client/php/test/Model/OAuth2ConsentSessionTest.php +++ b/clients/client/php/test/Model/OAuth2ConsentSessionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2LoginRequestTest.php b/clients/client/php/test/Model/OAuth2LoginRequestTest.php index 8847bef067c..eead08eb1bc 100644 --- a/clients/client/php/test/Model/OAuth2LoginRequestTest.php +++ b/clients/client/php/test/Model/OAuth2LoginRequestTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2LogoutRequestTest.php b/clients/client/php/test/Model/OAuth2LogoutRequestTest.php index 42fbf5b5a78..efd28b711a5 100644 --- a/clients/client/php/test/Model/OAuth2LogoutRequestTest.php +++ b/clients/client/php/test/Model/OAuth2LogoutRequestTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2RedirectToTest.php b/clients/client/php/test/Model/OAuth2RedirectToTest.php index 445a965a15b..1718b7b515e 100644 --- a/clients/client/php/test/Model/OAuth2RedirectToTest.php +++ b/clients/client/php/test/Model/OAuth2RedirectToTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OAuth2TokenExchangeTest.php b/clients/client/php/test/Model/OAuth2TokenExchangeTest.php index 452f3024df1..9cfaf14ca8a 100644 --- a/clients/client/php/test/Model/OAuth2TokenExchangeTest.php +++ b/clients/client/php/test/Model/OAuth2TokenExchangeTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OidcConfigurationTest.php b/clients/client/php/test/Model/OidcConfigurationTest.php index c17cd1086f6..cc5bf0d2b83 100644 --- a/clients/client/php/test/Model/OidcConfigurationTest.php +++ b/clients/client/php/test/Model/OidcConfigurationTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/OidcUserInfoTest.php b/clients/client/php/test/Model/OidcUserInfoTest.php index 0f9e4319574..7ee489cf9ec 100644 --- a/clients/client/php/test/Model/OidcUserInfoTest.php +++ b/clients/client/php/test/Model/OidcUserInfoTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PaginationHeadersTest.php b/clients/client/php/test/Model/PaginationHeadersTest.php index beb0cd08ed8..fb979d8d28a 100644 --- a/clients/client/php/test/Model/PaginationHeadersTest.php +++ b/clients/client/php/test/Model/PaginationHeadersTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PaginationTest.php b/clients/client/php/test/Model/PaginationTest.php index 39fcd04c751..3dd2e3460c5 100644 --- a/clients/client/php/test/Model/PaginationTest.php +++ b/clients/client/php/test/Model/PaginationTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ParseErrorTest.php b/clients/client/php/test/Model/ParseErrorTest.php index 8a2e647b45a..200bd2e4bf8 100644 --- a/clients/client/php/test/Model/ParseErrorTest.php +++ b/clients/client/php/test/Model/ParseErrorTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PatchIdentitiesBodyTest.php b/clients/client/php/test/Model/PatchIdentitiesBodyTest.php index 4b05894d2c1..b4ec02f3187 100644 --- a/clients/client/php/test/Model/PatchIdentitiesBodyTest.php +++ b/clients/client/php/test/Model/PatchIdentitiesBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PerformNativeLogoutBodyTest.php b/clients/client/php/test/Model/PerformNativeLogoutBodyTest.php index 24aaa44031a..e17d094fbe7 100644 --- a/clients/client/php/test/Model/PerformNativeLogoutBodyTest.php +++ b/clients/client/php/test/Model/PerformNativeLogoutBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PlanDetailsTest.php b/clients/client/php/test/Model/PlanDetailsTest.php index 116c9be7edc..892d8446135 100644 --- a/clients/client/php/test/Model/PlanDetailsTest.php +++ b/clients/client/php/test/Model/PlanDetailsTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PlanTest.php b/clients/client/php/test/Model/PlanTest.php index f5027e96db0..04d9d802e5b 100644 --- a/clients/client/php/test/Model/PlanTest.php +++ b/clients/client/php/test/Model/PlanTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PostCheckPermissionBodyTest.php b/clients/client/php/test/Model/PostCheckPermissionBodyTest.php index 7fe98084f91..96472a6066a 100644 --- a/clients/client/php/test/Model/PostCheckPermissionBodyTest.php +++ b/clients/client/php/test/Model/PostCheckPermissionBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/PostCheckPermissionOrErrorBodyTest.php b/clients/client/php/test/Model/PostCheckPermissionOrErrorBodyTest.php index 4710f8af9ea..2fb8ada290f 100644 --- a/clients/client/php/test/Model/PostCheckPermissionOrErrorBodyTest.php +++ b/clients/client/php/test/Model/PostCheckPermissionOrErrorBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectApiKeyTest.php b/clients/client/php/test/Model/ProjectApiKeyTest.php index 5e5843c1642..c1e80ccf188 100644 --- a/clients/client/php/test/Model/ProjectApiKeyTest.php +++ b/clients/client/php/test/Model/ProjectApiKeyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectBrandingColorsTest.php b/clients/client/php/test/Model/ProjectBrandingColorsTest.php index 96adb193c44..943dfb4614d 100644 --- a/clients/client/php/test/Model/ProjectBrandingColorsTest.php +++ b/clients/client/php/test/Model/ProjectBrandingColorsTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectBrandingTest.php b/clients/client/php/test/Model/ProjectBrandingTest.php index f41ef2c9dff..0bf57e701fa 100644 --- a/clients/client/php/test/Model/ProjectBrandingTest.php +++ b/clients/client/php/test/Model/ProjectBrandingTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectBrandingThemeTest.php b/clients/client/php/test/Model/ProjectBrandingThemeTest.php index ce79343b846..814007d963b 100644 --- a/clients/client/php/test/Model/ProjectBrandingThemeTest.php +++ b/clients/client/php/test/Model/ProjectBrandingThemeTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectHostTest.php b/clients/client/php/test/Model/ProjectHostTest.php index 84a80dfa7bb..2cf1dee9711 100644 --- a/clients/client/php/test/Model/ProjectHostTest.php +++ b/clients/client/php/test/Model/ProjectHostTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectMetadataTest.php b/clients/client/php/test/Model/ProjectMetadataTest.php index de368f17411..56c5b409eeb 100644 --- a/clients/client/php/test/Model/ProjectMetadataTest.php +++ b/clients/client/php/test/Model/ProjectMetadataTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectServiceIdentityTest.php b/clients/client/php/test/Model/ProjectServiceIdentityTest.php index 241fd639457..9c60af67c90 100644 --- a/clients/client/php/test/Model/ProjectServiceIdentityTest.php +++ b/clients/client/php/test/Model/ProjectServiceIdentityTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectServiceOAuth2Test.php b/clients/client/php/test/Model/ProjectServiceOAuth2Test.php index ce89cf72827..059a677610d 100644 --- a/clients/client/php/test/Model/ProjectServiceOAuth2Test.php +++ b/clients/client/php/test/Model/ProjectServiceOAuth2Test.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectServicePermissionTest.php b/clients/client/php/test/Model/ProjectServicePermissionTest.php index 5ff2efbfefd..93646124faa 100644 --- a/clients/client/php/test/Model/ProjectServicePermissionTest.php +++ b/clients/client/php/test/Model/ProjectServicePermissionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectServicesTest.php b/clients/client/php/test/Model/ProjectServicesTest.php index 44fc2e4ad29..22339e1f7e4 100644 --- a/clients/client/php/test/Model/ProjectServicesTest.php +++ b/clients/client/php/test/Model/ProjectServicesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectTest.php b/clients/client/php/test/Model/ProjectTest.php index 37c80ce1506..21aa3931072 100644 --- a/clients/client/php/test/Model/ProjectTest.php +++ b/clients/client/php/test/Model/ProjectTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/QuotaUsageTest.php b/clients/client/php/test/Model/QuotaUsageTest.php index 69a8bc93b21..876429b89dd 100644 --- a/clients/client/php/test/Model/QuotaUsageTest.php +++ b/clients/client/php/test/Model/QuotaUsageTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RFC6749ErrorJsonTest.php b/clients/client/php/test/Model/RFC6749ErrorJsonTest.php index efd74cdbcc7..8466703730e 100644 --- a/clients/client/php/test/Model/RFC6749ErrorJsonTest.php +++ b/clients/client/php/test/Model/RFC6749ErrorJsonTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RecoveryCodeForIdentityTest.php b/clients/client/php/test/Model/RecoveryCodeForIdentityTest.php index 6694cf18622..67880673cdd 100644 --- a/clients/client/php/test/Model/RecoveryCodeForIdentityTest.php +++ b/clients/client/php/test/Model/RecoveryCodeForIdentityTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RecoveryFlowStateTest.php b/clients/client/php/test/Model/RecoveryFlowStateTest.php index 485538f6fb7..6917e936613 100644 --- a/clients/client/php/test/Model/RecoveryFlowStateTest.php +++ b/clients/client/php/test/Model/RecoveryFlowStateTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RecoveryFlowTest.php b/clients/client/php/test/Model/RecoveryFlowTest.php index b2e3b70092b..17f4cd62435 100644 --- a/clients/client/php/test/Model/RecoveryFlowTest.php +++ b/clients/client/php/test/Model/RecoveryFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RecoveryIdentityAddressTest.php b/clients/client/php/test/Model/RecoveryIdentityAddressTest.php index a7ed5051bf4..cc35fe76c24 100644 --- a/clients/client/php/test/Model/RecoveryIdentityAddressTest.php +++ b/clients/client/php/test/Model/RecoveryIdentityAddressTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RecoveryLinkForIdentityTest.php b/clients/client/php/test/Model/RecoveryLinkForIdentityTest.php index c9840831bb0..621d8b73ade 100644 --- a/clients/client/php/test/Model/RecoveryLinkForIdentityTest.php +++ b/clients/client/php/test/Model/RecoveryLinkForIdentityTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RegistrationFlowTest.php b/clients/client/php/test/Model/RegistrationFlowTest.php index f24f50641c9..8d3355fff1c 100644 --- a/clients/client/php/test/Model/RegistrationFlowTest.php +++ b/clients/client/php/test/Model/RegistrationFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RejectOAuth2RequestTest.php b/clients/client/php/test/Model/RejectOAuth2RequestTest.php index 45cce9198da..3028c108a59 100644 --- a/clients/client/php/test/Model/RejectOAuth2RequestTest.php +++ b/clients/client/php/test/Model/RejectOAuth2RequestTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RelationQueryTest.php b/clients/client/php/test/Model/RelationQueryTest.php index bb587282c4f..84ad5493d99 100644 --- a/clients/client/php/test/Model/RelationQueryTest.php +++ b/clients/client/php/test/Model/RelationQueryTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RelationshipNamespacesTest.php b/clients/client/php/test/Model/RelationshipNamespacesTest.php index da582b62d7f..48f232d0959 100644 --- a/clients/client/php/test/Model/RelationshipNamespacesTest.php +++ b/clients/client/php/test/Model/RelationshipNamespacesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RelationshipPatchTest.php b/clients/client/php/test/Model/RelationshipPatchTest.php index 8cfb6b93e87..363e8e7b2af 100644 --- a/clients/client/php/test/Model/RelationshipPatchTest.php +++ b/clients/client/php/test/Model/RelationshipPatchTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RelationshipTest.php b/clients/client/php/test/Model/RelationshipTest.php index 6ca38317e89..8d19a521449 100644 --- a/clients/client/php/test/Model/RelationshipTest.php +++ b/clients/client/php/test/Model/RelationshipTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/RelationshipsTest.php b/clients/client/php/test/Model/RelationshipsTest.php index 586f0a52401..7164889c2e6 100644 --- a/clients/client/php/test/Model/RelationshipsTest.php +++ b/clients/client/php/test/Model/RelationshipsTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SchemaPatchTest.php b/clients/client/php/test/Model/SchemaPatchTest.php index 0462e9f4df0..a6ccf1d842f 100644 --- a/clients/client/php/test/Model/SchemaPatchTest.php +++ b/clients/client/php/test/Model/SchemaPatchTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SelfServiceFlowExpiredErrorTest.php b/clients/client/php/test/Model/SelfServiceFlowExpiredErrorTest.php index 6a9bbcbc4ba..d5c2e9e6ea9 100644 --- a/clients/client/php/test/Model/SelfServiceFlowExpiredErrorTest.php +++ b/clients/client/php/test/Model/SelfServiceFlowExpiredErrorTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SessionAuthenticationMethodTest.php b/clients/client/php/test/Model/SessionAuthenticationMethodTest.php index b67f93f924e..c337487184b 100644 --- a/clients/client/php/test/Model/SessionAuthenticationMethodTest.php +++ b/clients/client/php/test/Model/SessionAuthenticationMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SessionDeviceTest.php b/clients/client/php/test/Model/SessionDeviceTest.php index 54e744ebb46..5adc8451df6 100644 --- a/clients/client/php/test/Model/SessionDeviceTest.php +++ b/clients/client/php/test/Model/SessionDeviceTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SessionTest.php b/clients/client/php/test/Model/SessionTest.php index 5f1429c3899..b66e6ad0729 100644 --- a/clients/client/php/test/Model/SessionTest.php +++ b/clients/client/php/test/Model/SessionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SetActiveProjectInConsoleBodyTest.php b/clients/client/php/test/Model/SetActiveProjectInConsoleBodyTest.php index 50a0ede9dbf..613b8d53ee8 100644 --- a/clients/client/php/test/Model/SetActiveProjectInConsoleBodyTest.php +++ b/clients/client/php/test/Model/SetActiveProjectInConsoleBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SetCustomDomainBodyTest.php b/clients/client/php/test/Model/SetCustomDomainBodyTest.php index 1dc282ddd32..741ecca0b25 100644 --- a/clients/client/php/test/Model/SetCustomDomainBodyTest.php +++ b/clients/client/php/test/Model/SetCustomDomainBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SetProjectBrandingThemeBodyTest.php b/clients/client/php/test/Model/SetProjectBrandingThemeBodyTest.php index d54b78477a1..6b2b1d02e7c 100644 --- a/clients/client/php/test/Model/SetProjectBrandingThemeBodyTest.php +++ b/clients/client/php/test/Model/SetProjectBrandingThemeBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SetProjectTest.php b/clients/client/php/test/Model/SetProjectTest.php index b51a5528396..8b1f78813de 100644 --- a/clients/client/php/test/Model/SetProjectTest.php +++ b/clients/client/php/test/Model/SetProjectTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SettingsFlowStateTest.php b/clients/client/php/test/Model/SettingsFlowStateTest.php index 0b92d650e12..5f522460400 100644 --- a/clients/client/php/test/Model/SettingsFlowStateTest.php +++ b/clients/client/php/test/Model/SettingsFlowStateTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SettingsFlowTest.php b/clients/client/php/test/Model/SettingsFlowTest.php index 9284d1f3263..71d9f98090e 100644 --- a/clients/client/php/test/Model/SettingsFlowTest.php +++ b/clients/client/php/test/Model/SettingsFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SourcePositionTest.php b/clients/client/php/test/Model/SourcePositionTest.php index e6b4812ffdf..76b5d94ffa4 100644 --- a/clients/client/php/test/Model/SourcePositionTest.php +++ b/clients/client/php/test/Model/SourcePositionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/StripeCustomerTest.php b/clients/client/php/test/Model/StripeCustomerTest.php index 72969382dce..1f89ee6b5da 100644 --- a/clients/client/php/test/Model/StripeCustomerTest.php +++ b/clients/client/php/test/Model/StripeCustomerTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SubjectSetTest.php b/clients/client/php/test/Model/SubjectSetTest.php index 1ea4e5945bb..428d86a7b7f 100644 --- a/clients/client/php/test/Model/SubjectSetTest.php +++ b/clients/client/php/test/Model/SubjectSetTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SubscriptionTest.php b/clients/client/php/test/Model/SubscriptionTest.php index 204fbb95a40..7ba88cfed76 100644 --- a/clients/client/php/test/Model/SubscriptionTest.php +++ b/clients/client/php/test/Model/SubscriptionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SuccessfulCodeExchangeResponseTest.php b/clients/client/php/test/Model/SuccessfulCodeExchangeResponseTest.php index 0aeb8601742..7999f0634aa 100644 --- a/clients/client/php/test/Model/SuccessfulCodeExchangeResponseTest.php +++ b/clients/client/php/test/Model/SuccessfulCodeExchangeResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SuccessfulNativeLoginTest.php b/clients/client/php/test/Model/SuccessfulNativeLoginTest.php index 0f7842768e7..9187362ed14 100644 --- a/clients/client/php/test/Model/SuccessfulNativeLoginTest.php +++ b/clients/client/php/test/Model/SuccessfulNativeLoginTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SuccessfulNativeRegistrationTest.php b/clients/client/php/test/Model/SuccessfulNativeRegistrationTest.php index f56dfdba9ba..0191f2f6924 100644 --- a/clients/client/php/test/Model/SuccessfulNativeRegistrationTest.php +++ b/clients/client/php/test/Model/SuccessfulNativeRegistrationTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/SuccessfulProjectUpdateTest.php b/clients/client/php/test/Model/SuccessfulProjectUpdateTest.php index d37bdd787ae..724dc222a36 100644 --- a/clients/client/php/test/Model/SuccessfulProjectUpdateTest.php +++ b/clients/client/php/test/Model/SuccessfulProjectUpdateTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TokenPaginationHeadersTest.php b/clients/client/php/test/Model/TokenPaginationHeadersTest.php index b3eeda857c8..bb85586d6c9 100644 --- a/clients/client/php/test/Model/TokenPaginationHeadersTest.php +++ b/clients/client/php/test/Model/TokenPaginationHeadersTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TokenPaginationRequestParametersTest.php b/clients/client/php/test/Model/TokenPaginationRequestParametersTest.php index 71704f5c9d1..2dad45e5923 100644 --- a/clients/client/php/test/Model/TokenPaginationRequestParametersTest.php +++ b/clients/client/php/test/Model/TokenPaginationRequestParametersTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TokenPaginationResponseHeadersTest.php b/clients/client/php/test/Model/TokenPaginationResponseHeadersTest.php index 9154ad0771f..63950219f3f 100644 --- a/clients/client/php/test/Model/TokenPaginationResponseHeadersTest.php +++ b/clients/client/php/test/Model/TokenPaginationResponseHeadersTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TokenPaginationTest.php b/clients/client/php/test/Model/TokenPaginationTest.php index 04456f3ccdd..c1e99693a4e 100644 --- a/clients/client/php/test/Model/TokenPaginationTest.php +++ b/clients/client/php/test/Model/TokenPaginationTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TrustOAuth2JwtGrantIssuerTest.php b/clients/client/php/test/Model/TrustOAuth2JwtGrantIssuerTest.php index 76603646619..a113f748b71 100644 --- a/clients/client/php/test/Model/TrustOAuth2JwtGrantIssuerTest.php +++ b/clients/client/php/test/Model/TrustOAuth2JwtGrantIssuerTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TrustedOAuth2JwtGrantIssuerTest.php b/clients/client/php/test/Model/TrustedOAuth2JwtGrantIssuerTest.php index f421d372682..5848c5315c3 100644 --- a/clients/client/php/test/Model/TrustedOAuth2JwtGrantIssuerTest.php +++ b/clients/client/php/test/Model/TrustedOAuth2JwtGrantIssuerTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/TrustedOAuth2JwtGrantJsonWebKeyTest.php b/clients/client/php/test/Model/TrustedOAuth2JwtGrantJsonWebKeyTest.php index da7c8ae98c9..5d27c36d8d4 100644 --- a/clients/client/php/test/Model/TrustedOAuth2JwtGrantJsonWebKeyTest.php +++ b/clients/client/php/test/Model/TrustedOAuth2JwtGrantJsonWebKeyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiContainerTest.php b/clients/client/php/test/Model/UiContainerTest.php index 11a51fe3e88..c5cc552f50d 100644 --- a/clients/client/php/test/Model/UiContainerTest.php +++ b/clients/client/php/test/Model/UiContainerTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeAnchorAttributesTest.php b/clients/client/php/test/Model/UiNodeAnchorAttributesTest.php index 268911c4031..ebbd94fa4c8 100644 --- a/clients/client/php/test/Model/UiNodeAnchorAttributesTest.php +++ b/clients/client/php/test/Model/UiNodeAnchorAttributesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeAttributesTest.php b/clients/client/php/test/Model/UiNodeAttributesTest.php index e013dd964d9..8afdc978a9f 100644 --- a/clients/client/php/test/Model/UiNodeAttributesTest.php +++ b/clients/client/php/test/Model/UiNodeAttributesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeImageAttributesTest.php b/clients/client/php/test/Model/UiNodeImageAttributesTest.php index 6939db18c75..e202f50deec 100644 --- a/clients/client/php/test/Model/UiNodeImageAttributesTest.php +++ b/clients/client/php/test/Model/UiNodeImageAttributesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeInputAttributesTest.php b/clients/client/php/test/Model/UiNodeInputAttributesTest.php index 93f77acbb07..bc24f06f858 100644 --- a/clients/client/php/test/Model/UiNodeInputAttributesTest.php +++ b/clients/client/php/test/Model/UiNodeInputAttributesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeMetaTest.php b/clients/client/php/test/Model/UiNodeMetaTest.php index 62ef79e8bd8..4d4f38050e9 100644 --- a/clients/client/php/test/Model/UiNodeMetaTest.php +++ b/clients/client/php/test/Model/UiNodeMetaTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeScriptAttributesTest.php b/clients/client/php/test/Model/UiNodeScriptAttributesTest.php index 33f35f75d7f..7b20a6acf11 100644 --- a/clients/client/php/test/Model/UiNodeScriptAttributesTest.php +++ b/clients/client/php/test/Model/UiNodeScriptAttributesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeTest.php b/clients/client/php/test/Model/UiNodeTest.php index 9815aaf1fc7..d9c64da3348 100644 --- a/clients/client/php/test/Model/UiNodeTest.php +++ b/clients/client/php/test/Model/UiNodeTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiNodeTextAttributesTest.php b/clients/client/php/test/Model/UiNodeTextAttributesTest.php index aeb32a03800..180b1e67f6d 100644 --- a/clients/client/php/test/Model/UiNodeTextAttributesTest.php +++ b/clients/client/php/test/Model/UiNodeTextAttributesTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UiTextTest.php b/clients/client/php/test/Model/UiTextTest.php index f92110fff50..2cae15e71da 100644 --- a/clients/client/php/test/Model/UiTextTest.php +++ b/clients/client/php/test/Model/UiTextTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateIdentityBodyTest.php b/clients/client/php/test/Model/UpdateIdentityBodyTest.php index 24cd1c6e8a1..a2c2c1bd72a 100644 --- a/clients/client/php/test/Model/UpdateIdentityBodyTest.php +++ b/clients/client/php/test/Model/UpdateIdentityBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateLoginFlowBodyTest.php b/clients/client/php/test/Model/UpdateLoginFlowBodyTest.php index 21c003e398b..963230870d9 100644 --- a/clients/client/php/test/Model/UpdateLoginFlowBodyTest.php +++ b/clients/client/php/test/Model/UpdateLoginFlowBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateLoginFlowWithLookupSecretMethodTest.php b/clients/client/php/test/Model/UpdateLoginFlowWithLookupSecretMethodTest.php index f076e122881..e19da270334 100644 --- a/clients/client/php/test/Model/UpdateLoginFlowWithLookupSecretMethodTest.php +++ b/clients/client/php/test/Model/UpdateLoginFlowWithLookupSecretMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateLoginFlowWithOidcMethodTest.php b/clients/client/php/test/Model/UpdateLoginFlowWithOidcMethodTest.php index 539ec080f5c..6f894e7888d 100644 --- a/clients/client/php/test/Model/UpdateLoginFlowWithOidcMethodTest.php +++ b/clients/client/php/test/Model/UpdateLoginFlowWithOidcMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateLoginFlowWithPasswordMethodTest.php b/clients/client/php/test/Model/UpdateLoginFlowWithPasswordMethodTest.php index 25e6964f4c5..8ba15dd699c 100644 --- a/clients/client/php/test/Model/UpdateLoginFlowWithPasswordMethodTest.php +++ b/clients/client/php/test/Model/UpdateLoginFlowWithPasswordMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateLoginFlowWithTotpMethodTest.php b/clients/client/php/test/Model/UpdateLoginFlowWithTotpMethodTest.php index a954a9c7608..c4cfedcaf40 100644 --- a/clients/client/php/test/Model/UpdateLoginFlowWithTotpMethodTest.php +++ b/clients/client/php/test/Model/UpdateLoginFlowWithTotpMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateLoginFlowWithWebAuthnMethodTest.php b/clients/client/php/test/Model/UpdateLoginFlowWithWebAuthnMethodTest.php index 4b2d76c5435..ca59a48b0a1 100644 --- a/clients/client/php/test/Model/UpdateLoginFlowWithWebAuthnMethodTest.php +++ b/clients/client/php/test/Model/UpdateLoginFlowWithWebAuthnMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRecoveryFlowBodyTest.php b/clients/client/php/test/Model/UpdateRecoveryFlowBodyTest.php index a6f6dd03ed4..235d43c2dfb 100644 --- a/clients/client/php/test/Model/UpdateRecoveryFlowBodyTest.php +++ b/clients/client/php/test/Model/UpdateRecoveryFlowBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRecoveryFlowWithCodeMethodTest.php b/clients/client/php/test/Model/UpdateRecoveryFlowWithCodeMethodTest.php index 445d9404764..b2152d889e4 100644 --- a/clients/client/php/test/Model/UpdateRecoveryFlowWithCodeMethodTest.php +++ b/clients/client/php/test/Model/UpdateRecoveryFlowWithCodeMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRecoveryFlowWithLinkMethodTest.php b/clients/client/php/test/Model/UpdateRecoveryFlowWithLinkMethodTest.php index 3b661bf7d12..0ca9af85fdb 100644 --- a/clients/client/php/test/Model/UpdateRecoveryFlowWithLinkMethodTest.php +++ b/clients/client/php/test/Model/UpdateRecoveryFlowWithLinkMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRegistrationFlowBodyTest.php b/clients/client/php/test/Model/UpdateRegistrationFlowBodyTest.php index 135365c2f1e..c7e7edca2bf 100644 --- a/clients/client/php/test/Model/UpdateRegistrationFlowBodyTest.php +++ b/clients/client/php/test/Model/UpdateRegistrationFlowBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRegistrationFlowWithOidcMethodTest.php b/clients/client/php/test/Model/UpdateRegistrationFlowWithOidcMethodTest.php index 3a75c0377b0..fa2855708c4 100644 --- a/clients/client/php/test/Model/UpdateRegistrationFlowWithOidcMethodTest.php +++ b/clients/client/php/test/Model/UpdateRegistrationFlowWithOidcMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRegistrationFlowWithPasswordMethodTest.php b/clients/client/php/test/Model/UpdateRegistrationFlowWithPasswordMethodTest.php index 2a2648b04d1..ed1a6c2d165 100644 --- a/clients/client/php/test/Model/UpdateRegistrationFlowWithPasswordMethodTest.php +++ b/clients/client/php/test/Model/UpdateRegistrationFlowWithPasswordMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateRegistrationFlowWithWebAuthnMethodTest.php b/clients/client/php/test/Model/UpdateRegistrationFlowWithWebAuthnMethodTest.php index 01874743fb9..735f037ff07 100644 --- a/clients/client/php/test/Model/UpdateRegistrationFlowWithWebAuthnMethodTest.php +++ b/clients/client/php/test/Model/UpdateRegistrationFlowWithWebAuthnMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowBodyTest.php b/clients/client/php/test/Model/UpdateSettingsFlowBodyTest.php index 54f1013ce9d..4aa97adbeb2 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowBodyTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowWithLookupMethodTest.php b/clients/client/php/test/Model/UpdateSettingsFlowWithLookupMethodTest.php index 54e8bf64682..0e5fd40ae58 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowWithLookupMethodTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowWithLookupMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowWithOidcMethodTest.php b/clients/client/php/test/Model/UpdateSettingsFlowWithOidcMethodTest.php index 8ee19b14d1b..16a1c241651 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowWithOidcMethodTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowWithOidcMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowWithPasswordMethodTest.php b/clients/client/php/test/Model/UpdateSettingsFlowWithPasswordMethodTest.php index ff604aad4f5..f37745be1d3 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowWithPasswordMethodTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowWithPasswordMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowWithProfileMethodTest.php b/clients/client/php/test/Model/UpdateSettingsFlowWithProfileMethodTest.php index c6b9ece9edf..70509ab4aa7 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowWithProfileMethodTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowWithProfileMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowWithTotpMethodTest.php b/clients/client/php/test/Model/UpdateSettingsFlowWithTotpMethodTest.php index d252df93b72..865f38a91b6 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowWithTotpMethodTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowWithTotpMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSettingsFlowWithWebAuthnMethodTest.php b/clients/client/php/test/Model/UpdateSettingsFlowWithWebAuthnMethodTest.php index 94036b459ed..ca569e738b7 100644 --- a/clients/client/php/test/Model/UpdateSettingsFlowWithWebAuthnMethodTest.php +++ b/clients/client/php/test/Model/UpdateSettingsFlowWithWebAuthnMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateSubscriptionBodyTest.php b/clients/client/php/test/Model/UpdateSubscriptionBodyTest.php index eacc7527908..d16b9bca3cd 100644 --- a/clients/client/php/test/Model/UpdateSubscriptionBodyTest.php +++ b/clients/client/php/test/Model/UpdateSubscriptionBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateVerificationFlowBodyTest.php b/clients/client/php/test/Model/UpdateVerificationFlowBodyTest.php index cd6ade7adf0..faa5346391e 100644 --- a/clients/client/php/test/Model/UpdateVerificationFlowBodyTest.php +++ b/clients/client/php/test/Model/UpdateVerificationFlowBodyTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateVerificationFlowWithCodeMethodTest.php b/clients/client/php/test/Model/UpdateVerificationFlowWithCodeMethodTest.php index 82374cf0acf..a729bdbc3b0 100644 --- a/clients/client/php/test/Model/UpdateVerificationFlowWithCodeMethodTest.php +++ b/clients/client/php/test/Model/UpdateVerificationFlowWithCodeMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UpdateVerificationFlowWithLinkMethodTest.php b/clients/client/php/test/Model/UpdateVerificationFlowWithLinkMethodTest.php index 605474d9897..92c3fe4d186 100644 --- a/clients/client/php/test/Model/UpdateVerificationFlowWithLinkMethodTest.php +++ b/clients/client/php/test/Model/UpdateVerificationFlowWithLinkMethodTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/UsageTest.php b/clients/client/php/test/Model/UsageTest.php index 7ed4121cd9d..1b44e582d15 100644 --- a/clients/client/php/test/Model/UsageTest.php +++ b/clients/client/php/test/Model/UsageTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VerifiableCredentialPrimingResponseTest.php b/clients/client/php/test/Model/VerifiableCredentialPrimingResponseTest.php index cfecb4056dd..ee524112ee2 100644 --- a/clients/client/php/test/Model/VerifiableCredentialPrimingResponseTest.php +++ b/clients/client/php/test/Model/VerifiableCredentialPrimingResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VerifiableCredentialProofTest.php b/clients/client/php/test/Model/VerifiableCredentialProofTest.php index ae046f0397c..4ebcfb640cc 100644 --- a/clients/client/php/test/Model/VerifiableCredentialProofTest.php +++ b/clients/client/php/test/Model/VerifiableCredentialProofTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VerifiableCredentialResponseTest.php b/clients/client/php/test/Model/VerifiableCredentialResponseTest.php index 1da3bb21c07..48f1b0006a7 100644 --- a/clients/client/php/test/Model/VerifiableCredentialResponseTest.php +++ b/clients/client/php/test/Model/VerifiableCredentialResponseTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VerifiableIdentityAddressTest.php b/clients/client/php/test/Model/VerifiableIdentityAddressTest.php index ea2feca2735..44050114cb3 100644 --- a/clients/client/php/test/Model/VerifiableIdentityAddressTest.php +++ b/clients/client/php/test/Model/VerifiableIdentityAddressTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VerificationFlowStateTest.php b/clients/client/php/test/Model/VerificationFlowStateTest.php index 8de72b85c4b..2f0c232d07f 100644 --- a/clients/client/php/test/Model/VerificationFlowStateTest.php +++ b/clients/client/php/test/Model/VerificationFlowStateTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VerificationFlowTest.php b/clients/client/php/test/Model/VerificationFlowTest.php index 49c4a770594..8c49077297f 100644 --- a/clients/client/php/test/Model/VerificationFlowTest.php +++ b/clients/client/php/test/Model/VerificationFlowTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/VersionTest.php b/clients/client/php/test/Model/VersionTest.php index ed8dacfc4e4..468ccf5b60e 100644 --- a/clients/client/php/test/Model/VersionTest.php +++ b/clients/client/php/test/Model/VersionTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/WarningTest.php b/clients/client/php/test/Model/WarningTest.php index a614c56a453..25bdfbe9550 100644 --- a/clients/client/php/test/Model/WarningTest.php +++ b/clients/client/php/test/Model/WarningTest.php @@ -15,7 +15,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/python/README.md b/clients/client/python/README.md index dedfcf7bcde..99987a3949e 100644 --- a/clients/client/python/README.md +++ b/clients/client/python/README.md @@ -5,8 +5,8 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: v1.1.44 -- Package version: v1.1.44 +- API version: v1.1.45 +- Package version: v1.1.45 - Build package: org.openapitools.codegen.languages.PythonClientCodegen ## Requirements. diff --git a/clients/client/python/docs/NormalizedProjectRevision.md b/clients/client/python/docs/NormalizedProjectRevision.md index 871412e3cf0..e064f0ffb05 100644 --- a/clients/client/python/docs/NormalizedProjectRevision.md +++ b/clients/client/python/docs/NormalizedProjectRevision.md @@ -55,6 +55,7 @@ Name | Type | Description | Notes **kratos_courier_smtp_from_address** | **str** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] **kratos_courier_smtp_from_name** | **str** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] **kratos_courier_smtp_headers** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] +**kratos_courier_smtp_local_name** | **str** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] **kratos_courier_templates_recovery_code_invalid_email_body_html** | **str** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] **kratos_courier_templates_recovery_code_invalid_email_body_plaintext** | **str** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] **kratos_courier_templates_recovery_code_invalid_email_subject** | **str** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] diff --git a/clients/client/python/ory_client/__init__.py b/clients/client/python/ory_client/__init__.py index 1b5ab204807..0cbb1afb871 100644 --- a/clients/client/python/ory_client/__init__.py +++ b/clients/client/python/ory_client/__init__.py @@ -5,13 +5,13 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ -__version__ = "v1.1.44" +__version__ = "v1.1.45" # import ApiClient from ory_client.api_client import ApiClient diff --git a/clients/client/python/ory_client/api/courier_api.py b/clients/client/python/ory_client/api/courier_api.py index 1f5eb164ab5..894d96e8857 100644 --- a/clients/client/python/ory_client/api/courier_api.py +++ b/clients/client/python/ory_client/api/courier_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/frontend_api.py b/clients/client/python/ory_client/api/frontend_api.py index 151432ecabc..1f9ede099ba 100644 --- a/clients/client/python/ory_client/api/frontend_api.py +++ b/clients/client/python/ory_client/api/frontend_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/identity_api.py b/clients/client/python/ory_client/api/identity_api.py index 7ef1aa84074..7188a148b63 100644 --- a/clients/client/python/ory_client/api/identity_api.py +++ b/clients/client/python/ory_client/api/identity_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/jwk_api.py b/clients/client/python/ory_client/api/jwk_api.py index 5293979dc68..493fd4d4878 100644 --- a/clients/client/python/ory_client/api/jwk_api.py +++ b/clients/client/python/ory_client/api/jwk_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/metadata_api.py b/clients/client/python/ory_client/api/metadata_api.py index 56ffca9217e..2e86db08095 100644 --- a/clients/client/python/ory_client/api/metadata_api.py +++ b/clients/client/python/ory_client/api/metadata_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/o_auth2_api.py b/clients/client/python/ory_client/api/o_auth2_api.py index d5a6c1e3f14..d75c0f1d0b1 100644 --- a/clients/client/python/ory_client/api/o_auth2_api.py +++ b/clients/client/python/ory_client/api/o_auth2_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/oidc_api.py b/clients/client/python/ory_client/api/oidc_api.py index e951c6eb9c1..af60162fede 100644 --- a/clients/client/python/ory_client/api/oidc_api.py +++ b/clients/client/python/ory_client/api/oidc_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/permission_api.py b/clients/client/python/ory_client/api/permission_api.py index 99f19f35d93..255924d7435 100644 --- a/clients/client/python/ory_client/api/permission_api.py +++ b/clients/client/python/ory_client/api/permission_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/project_api.py b/clients/client/python/ory_client/api/project_api.py index baaad32ab90..c77fc64037f 100644 --- a/clients/client/python/ory_client/api/project_api.py +++ b/clients/client/python/ory_client/api/project_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/relationship_api.py b/clients/client/python/ory_client/api/relationship_api.py index 295d1f45981..a28135ed42f 100644 --- a/clients/client/python/ory_client/api/relationship_api.py +++ b/clients/client/python/ory_client/api/relationship_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api/wellknown_api.py b/clients/client/python/ory_client/api/wellknown_api.py index cae4f4aa9c1..02e6199d6d7 100644 --- a/clients/client/python/ory_client/api/wellknown_api.py +++ b/clients/client/python/ory_client/api/wellknown_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/api_client.py b/clients/client/python/ory_client/api_client.py index 360afb73765..c94bcb05e58 100644 --- a/clients/client/python/ory_client/api_client.py +++ b/clients/client/python/ory_client/api_client.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/v1.1.44/python' + self.user_agent = 'OpenAPI-Generator/v1.1.45/python' def __enter__(self): return self diff --git a/clients/client/python/ory_client/configuration.py b/clients/client/python/ory_client/configuration.py index 3ccf408cf95..c2ee8dd03b1 100644 --- a/clients/client/python/ory_client/configuration.py +++ b/clients/client/python/ory_client/configuration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -425,8 +425,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: v1.1.44\n"\ - "SDK Package Version: v1.1.44".\ + "Version of the API: v1.1.45\n"\ + "SDK Package Version: v1.1.45".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/clients/client/python/ory_client/exceptions.py b/clients/client/python/ory_client/exceptions.py index cd27bdd4f31..83dd6d3d456 100644 --- a/clients/client/python/ory_client/exceptions.py +++ b/clients/client/python/ory_client/exceptions.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/accept_o_auth2_consent_request.py b/clients/client/python/ory_client/model/accept_o_auth2_consent_request.py index fba35d6a62a..b5a4e0da780 100644 --- a/clients/client/python/ory_client/model/accept_o_auth2_consent_request.py +++ b/clients/client/python/ory_client/model/accept_o_auth2_consent_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/accept_o_auth2_consent_request_session.py b/clients/client/python/ory_client/model/accept_o_auth2_consent_request_session.py index d994f5c866d..e3558116bc7 100644 --- a/clients/client/python/ory_client/model/accept_o_auth2_consent_request_session.py +++ b/clients/client/python/ory_client/model/accept_o_auth2_consent_request_session.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/accept_o_auth2_login_request.py b/clients/client/python/ory_client/model/accept_o_auth2_login_request.py index 349424532ee..6ff565b7dfe 100644 --- a/clients/client/python/ory_client/model/accept_o_auth2_login_request.py +++ b/clients/client/python/ory_client/model/accept_o_auth2_login_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/active_project_in_console.py b/clients/client/python/ory_client/model/active_project_in_console.py index 11901721247..b64786df52e 100644 --- a/clients/client/python/ory_client/model/active_project_in_console.py +++ b/clients/client/python/ory_client/model/active_project_in_console.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/authenticator_assurance_level.py b/clients/client/python/ory_client/model/authenticator_assurance_level.py index 48a9429469a..96644bc0f85 100644 --- a/clients/client/python/ory_client/model/authenticator_assurance_level.py +++ b/clients/client/python/ory_client/model/authenticator_assurance_level.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/batch_patch_identities_response.py b/clients/client/python/ory_client/model/batch_patch_identities_response.py index cce8c92e992..4897d0708f5 100644 --- a/clients/client/python/ory_client/model/batch_patch_identities_response.py +++ b/clients/client/python/ory_client/model/batch_patch_identities_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/check_opl_syntax_result.py b/clients/client/python/ory_client/model/check_opl_syntax_result.py index c51a3edd10b..d5746f62118 100644 --- a/clients/client/python/ory_client/model/check_opl_syntax_result.py +++ b/clients/client/python/ory_client/model/check_opl_syntax_result.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/check_permission_result.py b/clients/client/python/ory_client/model/check_permission_result.py index 5cde818ed56..4cc4fb1fb45 100644 --- a/clients/client/python/ory_client/model/check_permission_result.py +++ b/clients/client/python/ory_client/model/check_permission_result.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/cloud_account.py b/clients/client/python/ory_client/model/cloud_account.py index e48dc39f5c2..80e165844ac 100644 --- a/clients/client/python/ory_client/model/cloud_account.py +++ b/clients/client/python/ory_client/model/cloud_account.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/continue_with.py b/clients/client/python/ory_client/model/continue_with.py index 7752a33cec8..a32cd5d9d20 100644 --- a/clients/client/python/ory_client/model/continue_with.py +++ b/clients/client/python/ory_client/model/continue_with.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/continue_with_set_ory_session_token.py b/clients/client/python/ory_client/model/continue_with_set_ory_session_token.py index c4266def2d4..e09240036c8 100644 --- a/clients/client/python/ory_client/model/continue_with_set_ory_session_token.py +++ b/clients/client/python/ory_client/model/continue_with_set_ory_session_token.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/continue_with_verification_ui.py b/clients/client/python/ory_client/model/continue_with_verification_ui.py index 0fd9a087bda..fa337e83584 100644 --- a/clients/client/python/ory_client/model/continue_with_verification_ui.py +++ b/clients/client/python/ory_client/model/continue_with_verification_ui.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/continue_with_verification_ui_flow.py b/clients/client/python/ory_client/model/continue_with_verification_ui_flow.py index 9258b47a53c..d9a1cb0f709 100644 --- a/clients/client/python/ory_client/model/continue_with_verification_ui_flow.py +++ b/clients/client/python/ory_client/model/continue_with_verification_ui_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/cors.py b/clients/client/python/ory_client/model/cors.py index 25781875b03..db17dd19e58 100644 --- a/clients/client/python/ory_client/model/cors.py +++ b/clients/client/python/ory_client/model/cors.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/courier_message_status.py b/clients/client/python/ory_client/model/courier_message_status.py index 62c07af2806..1b42653ed0a 100644 --- a/clients/client/python/ory_client/model/courier_message_status.py +++ b/clients/client/python/ory_client/model/courier_message_status.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/courier_message_type.py b/clients/client/python/ory_client/model/courier_message_type.py index b8d9c93598d..179eab8398e 100644 --- a/clients/client/python/ory_client/model/courier_message_type.py +++ b/clients/client/python/ory_client/model/courier_message_type.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_custom_domain_body.py b/clients/client/python/ory_client/model/create_custom_domain_body.py index 3eee8635ee4..f32c3123fbd 100644 --- a/clients/client/python/ory_client/model/create_custom_domain_body.py +++ b/clients/client/python/ory_client/model/create_custom_domain_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_identity_body.py b/clients/client/python/ory_client/model/create_identity_body.py index d2cecf84b2f..9a435342876 100644 --- a/clients/client/python/ory_client/model/create_identity_body.py +++ b/clients/client/python/ory_client/model/create_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_invite_response.py b/clients/client/python/ory_client/model/create_invite_response.py index 26f0acf56f4..d62fb5c4580 100644 --- a/clients/client/python/ory_client/model/create_invite_response.py +++ b/clients/client/python/ory_client/model/create_invite_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_json_web_key_set.py b/clients/client/python/ory_client/model/create_json_web_key_set.py index 5a83e293d7a..3c7e2585a9f 100644 --- a/clients/client/python/ory_client/model/create_json_web_key_set.py +++ b/clients/client/python/ory_client/model/create_json_web_key_set.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_api_key_request.py b/clients/client/python/ory_client/model/create_project_api_key_request.py index 881aec978f0..c37de61b7fe 100644 --- a/clients/client/python/ory_client/model/create_project_api_key_request.py +++ b/clients/client/python/ory_client/model/create_project_api_key_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_body.py b/clients/client/python/ory_client/model/create_project_body.py index 934ec5db24e..448d6d6cd57 100644 --- a/clients/client/python/ory_client/model/create_project_body.py +++ b/clients/client/python/ory_client/model/create_project_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_branding.py b/clients/client/python/ory_client/model/create_project_branding.py index 3d710581a35..0972e163445 100644 --- a/clients/client/python/ory_client/model/create_project_branding.py +++ b/clients/client/python/ory_client/model/create_project_branding.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_member_invite_body.py b/clients/client/python/ory_client/model/create_project_member_invite_body.py index f74599f259c..7a973be0efc 100644 --- a/clients/client/python/ory_client/model/create_project_member_invite_body.py +++ b/clients/client/python/ory_client/model/create_project_member_invite_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_member_invite_response.py b/clients/client/python/ory_client/model/create_project_member_invite_response.py index 4f26219273a..70451883b68 100644 --- a/clients/client/python/ory_client/model/create_project_member_invite_response.py +++ b/clients/client/python/ory_client/model/create_project_member_invite_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_recovery_code_for_identity_body.py b/clients/client/python/ory_client/model/create_recovery_code_for_identity_body.py index 5e6d962ffb2..af1b4c661a6 100644 --- a/clients/client/python/ory_client/model/create_recovery_code_for_identity_body.py +++ b/clients/client/python/ory_client/model/create_recovery_code_for_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_recovery_link_for_identity_body.py b/clients/client/python/ory_client/model/create_recovery_link_for_identity_body.py index e5bebc7172a..bb4e027beba 100644 --- a/clients/client/python/ory_client/model/create_recovery_link_for_identity_body.py +++ b/clients/client/python/ory_client/model/create_recovery_link_for_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_relationship_body.py b/clients/client/python/ory_client/model/create_relationship_body.py index 521b81aca8d..d83d53bcfc0 100644 --- a/clients/client/python/ory_client/model/create_relationship_body.py +++ b/clients/client/python/ory_client/model/create_relationship_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_subscription_body.py b/clients/client/python/ory_client/model/create_subscription_body.py index adbe55452cb..0b2597d0415 100644 --- a/clients/client/python/ory_client/model/create_subscription_body.py +++ b/clients/client/python/ory_client/model/create_subscription_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_verifiable_credential_request_body.py b/clients/client/python/ory_client/model/create_verifiable_credential_request_body.py index 4a8b750d500..f0c9670fd5e 100644 --- a/clients/client/python/ory_client/model/create_verifiable_credential_request_body.py +++ b/clients/client/python/ory_client/model/create_verifiable_credential_request_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/credential_supported_draft00.py b/clients/client/python/ory_client/model/credential_supported_draft00.py index 5988117e1ec..788db946564 100644 --- a/clients/client/python/ory_client/model/credential_supported_draft00.py +++ b/clients/client/python/ory_client/model/credential_supported_draft00.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/custom_domain.py b/clients/client/python/ory_client/model/custom_domain.py index 83fe1bb7c9b..405af1f0033 100644 --- a/clients/client/python/ory_client/model/custom_domain.py +++ b/clients/client/python/ory_client/model/custom_domain.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/delete_my_sessions_count.py b/clients/client/python/ory_client/model/delete_my_sessions_count.py index 756ed533047..f12a1d3d13b 100644 --- a/clients/client/python/ory_client/model/delete_my_sessions_count.py +++ b/clients/client/python/ory_client/model/delete_my_sessions_count.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/email_template_data.py b/clients/client/python/ory_client/model/email_template_data.py index 7485f98446b..7372b271a62 100644 --- a/clients/client/python/ory_client/model/email_template_data.py +++ b/clients/client/python/ory_client/model/email_template_data.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/email_template_data_body.py b/clients/client/python/ory_client/model/email_template_data_body.py index b3193ae5087..bc1b526736c 100644 --- a/clients/client/python/ory_client/model/email_template_data_body.py +++ b/clients/client/python/ory_client/model/email_template_data_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/error_authenticator_assurance_level_not_satisfied.py b/clients/client/python/ory_client/model/error_authenticator_assurance_level_not_satisfied.py index 4c78f16c847..e0ac1786557 100644 --- a/clients/client/python/ory_client/model/error_authenticator_assurance_level_not_satisfied.py +++ b/clients/client/python/ory_client/model/error_authenticator_assurance_level_not_satisfied.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/error_browser_location_change_required.py b/clients/client/python/ory_client/model/error_browser_location_change_required.py index c40089e0b4d..ce7129b0ffc 100644 --- a/clients/client/python/ory_client/model/error_browser_location_change_required.py +++ b/clients/client/python/ory_client/model/error_browser_location_change_required.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/error_flow_replaced.py b/clients/client/python/ory_client/model/error_flow_replaced.py index 55a91abaf3e..5605cfa063e 100644 --- a/clients/client/python/ory_client/model/error_flow_replaced.py +++ b/clients/client/python/ory_client/model/error_flow_replaced.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/error_generic.py b/clients/client/python/ory_client/model/error_generic.py index 01042c45174..c5f4eafae95 100644 --- a/clients/client/python/ory_client/model/error_generic.py +++ b/clients/client/python/ory_client/model/error_generic.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/error_o_auth2.py b/clients/client/python/ory_client/model/error_o_auth2.py index 6a0e55eb91f..ef67acc735f 100644 --- a/clients/client/python/ory_client/model/error_o_auth2.py +++ b/clients/client/python/ory_client/model/error_o_auth2.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/expanded_permission_tree.py b/clients/client/python/ory_client/model/expanded_permission_tree.py index 924a8024579..4ae6bf94440 100644 --- a/clients/client/python/ory_client/model/expanded_permission_tree.py +++ b/clients/client/python/ory_client/model/expanded_permission_tree.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/flow_error.py b/clients/client/python/ory_client/model/flow_error.py index 7cb63b55a5a..34c338c8ca7 100644 --- a/clients/client/python/ory_client/model/flow_error.py +++ b/clients/client/python/ory_client/model/flow_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/generic_error.py b/clients/client/python/ory_client/model/generic_error.py index 54cd889708a..2782111c117 100644 --- a/clients/client/python/ory_client/model/generic_error.py +++ b/clients/client/python/ory_client/model/generic_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/generic_error_content.py b/clients/client/python/ory_client/model/generic_error_content.py index 75d264238e6..d1b47daf1cc 100644 --- a/clients/client/python/ory_client/model/generic_error_content.py +++ b/clients/client/python/ory_client/model/generic_error_content.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/generic_usage.py b/clients/client/python/ory_client/model/generic_usage.py index d8bb28a62ea..d385d8b4443 100644 --- a/clients/client/python/ory_client/model/generic_usage.py +++ b/clients/client/python/ory_client/model/generic_usage.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/get_managed_identity_schema_location.py b/clients/client/python/ory_client/model/get_managed_identity_schema_location.py index a79a4bb5fbb..da354e2a2e4 100644 --- a/clients/client/python/ory_client/model/get_managed_identity_schema_location.py +++ b/clients/client/python/ory_client/model/get_managed_identity_schema_location.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/get_project_metrics_response.py b/clients/client/python/ory_client/model/get_project_metrics_response.py index 486227f25f8..3e060db8654 100644 --- a/clients/client/python/ory_client/model/get_project_metrics_response.py +++ b/clients/client/python/ory_client/model/get_project_metrics_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/get_version200_response.py b/clients/client/python/ory_client/model/get_version200_response.py index b9744508eb5..1e262dd272a 100644 --- a/clients/client/python/ory_client/model/get_version200_response.py +++ b/clients/client/python/ory_client/model/get_version200_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/health_not_ready_status.py b/clients/client/python/ory_client/model/health_not_ready_status.py index 31cc373570d..49691521d1f 100644 --- a/clients/client/python/ory_client/model/health_not_ready_status.py +++ b/clients/client/python/ory_client/model/health_not_ready_status.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/health_status.py b/clients/client/python/ory_client/model/health_status.py index 4c130743ce4..ae3bca29f2c 100644 --- a/clients/client/python/ory_client/model/health_status.py +++ b/clients/client/python/ory_client/model/health_status.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity.py b/clients/client/python/ory_client/model/identity.py index 9831e7535b1..f53dafc41e1 100644 --- a/clients/client/python/ory_client/model/identity.py +++ b/clients/client/python/ory_client/model/identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_credentials.py b/clients/client/python/ory_client/model/identity_credentials.py index 328d3704ed2..bae47d757c3 100644 --- a/clients/client/python/ory_client/model/identity_credentials.py +++ b/clients/client/python/ory_client/model/identity_credentials.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_credentials_oidc.py b/clients/client/python/ory_client/model/identity_credentials_oidc.py index 25334d6d9ea..d23c5086550 100644 --- a/clients/client/python/ory_client/model/identity_credentials_oidc.py +++ b/clients/client/python/ory_client/model/identity_credentials_oidc.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_credentials_oidc_provider.py b/clients/client/python/ory_client/model/identity_credentials_oidc_provider.py index 4b23c7298f0..3cd302c3f29 100644 --- a/clients/client/python/ory_client/model/identity_credentials_oidc_provider.py +++ b/clients/client/python/ory_client/model/identity_credentials_oidc_provider.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_credentials_password.py b/clients/client/python/ory_client/model/identity_credentials_password.py index 22d411be412..b765356599e 100644 --- a/clients/client/python/ory_client/model/identity_credentials_password.py +++ b/clients/client/python/ory_client/model/identity_credentials_password.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_credentials_type.py b/clients/client/python/ory_client/model/identity_credentials_type.py index 93a66167d5f..d54482d9e85 100644 --- a/clients/client/python/ory_client/model/identity_credentials_type.py +++ b/clients/client/python/ory_client/model/identity_credentials_type.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_patch.py b/clients/client/python/ory_client/model/identity_patch.py index f84fc153a6f..d97aaa750f9 100644 --- a/clients/client/python/ory_client/model/identity_patch.py +++ b/clients/client/python/ory_client/model/identity_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_patch_response.py b/clients/client/python/ory_client/model/identity_patch_response.py index 6459337ff58..08e5909b702 100644 --- a/clients/client/python/ory_client/model/identity_patch_response.py +++ b/clients/client/python/ory_client/model/identity_patch_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_schema_container.py b/clients/client/python/ory_client/model/identity_schema_container.py index 937f9be2772..b7bef834622 100644 --- a/clients/client/python/ory_client/model/identity_schema_container.py +++ b/clients/client/python/ory_client/model/identity_schema_container.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_schema_preset.py b/clients/client/python/ory_client/model/identity_schema_preset.py index 2f706a4e300..1bd18674def 100644 --- a/clients/client/python/ory_client/model/identity_schema_preset.py +++ b/clients/client/python/ory_client/model/identity_schema_preset.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_schema_presets.py b/clients/client/python/ory_client/model/identity_schema_presets.py index 27745660701..276a4fcb6e4 100644 --- a/clients/client/python/ory_client/model/identity_schema_presets.py +++ b/clients/client/python/ory_client/model/identity_schema_presets.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_schemas.py b/clients/client/python/ory_client/model/identity_schemas.py index 698ec02fe45..7f531c8ec9d 100644 --- a/clients/client/python/ory_client/model/identity_schemas.py +++ b/clients/client/python/ory_client/model/identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_state.py b/clients/client/python/ory_client/model/identity_state.py index 435c437b7b9..0eefd21bd27 100644 --- a/clients/client/python/ory_client/model/identity_state.py +++ b/clients/client/python/ory_client/model/identity_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_with_credentials.py b/clients/client/python/ory_client/model/identity_with_credentials.py index f68be9e3518..842f362eda5 100644 --- a/clients/client/python/ory_client/model/identity_with_credentials.py +++ b/clients/client/python/ory_client/model/identity_with_credentials.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_with_credentials_oidc.py b/clients/client/python/ory_client/model/identity_with_credentials_oidc.py index e9011f3c181..fdbca61b2c0 100644 --- a/clients/client/python/ory_client/model/identity_with_credentials_oidc.py +++ b/clients/client/python/ory_client/model/identity_with_credentials_oidc.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_with_credentials_oidc_config.py b/clients/client/python/ory_client/model/identity_with_credentials_oidc_config.py index 4a9bbc364ac..bea866b55df 100644 --- a/clients/client/python/ory_client/model/identity_with_credentials_oidc_config.py +++ b/clients/client/python/ory_client/model/identity_with_credentials_oidc_config.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_with_credentials_oidc_config_provider.py b/clients/client/python/ory_client/model/identity_with_credentials_oidc_config_provider.py index fb7b2dda69b..6210d6ca188 100644 --- a/clients/client/python/ory_client/model/identity_with_credentials_oidc_config_provider.py +++ b/clients/client/python/ory_client/model/identity_with_credentials_oidc_config_provider.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_with_credentials_password.py b/clients/client/python/ory_client/model/identity_with_credentials_password.py index 609ca90ddab..f076a13c443 100644 --- a/clients/client/python/ory_client/model/identity_with_credentials_password.py +++ b/clients/client/python/ory_client/model/identity_with_credentials_password.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/identity_with_credentials_password_config.py b/clients/client/python/ory_client/model/identity_with_credentials_password_config.py index 400f25508e2..355b497c07a 100644 --- a/clients/client/python/ory_client/model/identity_with_credentials_password_config.py +++ b/clients/client/python/ory_client/model/identity_with_credentials_password_config.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/internal_get_project_branding_body.py b/clients/client/python/ory_client/model/internal_get_project_branding_body.py index 16377aac4c0..6faed537562 100644 --- a/clients/client/python/ory_client/model/internal_get_project_branding_body.py +++ b/clients/client/python/ory_client/model/internal_get_project_branding_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py b/clients/client/python/ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py index 0fd044582f8..be4c0fa13b0 100644 --- a/clients/client/python/ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py +++ b/clients/client/python/ory_client/model/internal_is_ax_welcome_screen_enabled_for_project_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_body.py b/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_body.py index ac6da2403fb..ff9053b65d4 100644 --- a/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_body.py +++ b/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_response.py b/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_response.py index 851f7351920..cedb012a700 100644 --- a/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_response.py +++ b/clients/client/python/ory_client/model/internal_is_owner_for_project_by_slug_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/internal_provision_mock_subscription.py b/clients/client/python/ory_client/model/internal_provision_mock_subscription.py index 639baece3ce..ccf4ebd2da6 100644 --- a/clients/client/python/ory_client/model/internal_provision_mock_subscription.py +++ b/clients/client/python/ory_client/model/internal_provision_mock_subscription.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/introspected_o_auth2_token.py b/clients/client/python/ory_client/model/introspected_o_auth2_token.py index 05a6000b023..94fc68f8d2f 100644 --- a/clients/client/python/ory_client/model/introspected_o_auth2_token.py +++ b/clients/client/python/ory_client/model/introspected_o_auth2_token.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/is_owner_for_project_by_slug.py b/clients/client/python/ory_client/model/is_owner_for_project_by_slug.py index 58757a2fa11..8f867372b13 100644 --- a/clients/client/python/ory_client/model/is_owner_for_project_by_slug.py +++ b/clients/client/python/ory_client/model/is_owner_for_project_by_slug.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/is_ready200_response.py b/clients/client/python/ory_client/model/is_ready200_response.py index 3913cc93b76..8d1990409b5 100644 --- a/clients/client/python/ory_client/model/is_ready200_response.py +++ b/clients/client/python/ory_client/model/is_ready200_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/is_ready503_response.py b/clients/client/python/ory_client/model/is_ready503_response.py index b66d47d2ba8..bb780d0347e 100644 --- a/clients/client/python/ory_client/model/is_ready503_response.py +++ b/clients/client/python/ory_client/model/is_ready503_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/json_patch.py b/clients/client/python/ory_client/model/json_patch.py index 4442c556dd2..851ec9e0300 100644 --- a/clients/client/python/ory_client/model/json_patch.py +++ b/clients/client/python/ory_client/model/json_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/json_patch_document.py b/clients/client/python/ory_client/model/json_patch_document.py index 94c0a5e2b73..118aef76eb1 100644 --- a/clients/client/python/ory_client/model/json_patch_document.py +++ b/clients/client/python/ory_client/model/json_patch_document.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/json_web_key.py b/clients/client/python/ory_client/model/json_web_key.py index 8b235405e59..1d65878e614 100644 --- a/clients/client/python/ory_client/model/json_web_key.py +++ b/clients/client/python/ory_client/model/json_web_key.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/json_web_key_set.py b/clients/client/python/ory_client/model/json_web_key_set.py index ab75df62c9d..39f82fd51a0 100644 --- a/clients/client/python/ory_client/model/json_web_key_set.py +++ b/clients/client/python/ory_client/model/json_web_key_set.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/keto_namespace.py b/clients/client/python/ory_client/model/keto_namespace.py index 0fde026950f..0e6469d5697 100644 --- a/clients/client/python/ory_client/model/keto_namespace.py +++ b/clients/client/python/ory_client/model/keto_namespace.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/keto_namespaces.py b/clients/client/python/ory_client/model/keto_namespaces.py index a9c2f516c32..e1db17ccff9 100644 --- a/clients/client/python/ory_client/model/keto_namespaces.py +++ b/clients/client/python/ory_client/model/keto_namespaces.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/list_custom_domains.py b/clients/client/python/ory_client/model/list_custom_domains.py index 456e5e72b07..b36e4eb9145 100644 --- a/clients/client/python/ory_client/model/list_custom_domains.py +++ b/clients/client/python/ory_client/model/list_custom_domains.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/login_flow.py b/clients/client/python/ory_client/model/login_flow.py index 198ce781e57..01073c0197d 100644 --- a/clients/client/python/ory_client/model/login_flow.py +++ b/clients/client/python/ory_client/model/login_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/logout_flow.py b/clients/client/python/ory_client/model/logout_flow.py index 2325ac860d2..622aaecaeed 100644 --- a/clients/client/python/ory_client/model/logout_flow.py +++ b/clients/client/python/ory_client/model/logout_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/managed_identity_schema.py b/clients/client/python/ory_client/model/managed_identity_schema.py index 39f3021c765..6a1d3f84a12 100644 --- a/clients/client/python/ory_client/model/managed_identity_schema.py +++ b/clients/client/python/ory_client/model/managed_identity_schema.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/managed_identity_schema_validation_result.py b/clients/client/python/ory_client/model/managed_identity_schema_validation_result.py index c5feb91351c..6ff4943b2da 100644 --- a/clients/client/python/ory_client/model/managed_identity_schema_validation_result.py +++ b/clients/client/python/ory_client/model/managed_identity_schema_validation_result.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/managed_identity_schemas.py b/clients/client/python/ory_client/model/managed_identity_schemas.py index 1f4f60c0215..27809891dd4 100644 --- a/clients/client/python/ory_client/model/managed_identity_schemas.py +++ b/clients/client/python/ory_client/model/managed_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/member_invite.py b/clients/client/python/ory_client/model/member_invite.py index d1c569ed966..9e63c9d7d41 100644 --- a/clients/client/python/ory_client/model/member_invite.py +++ b/clients/client/python/ory_client/model/member_invite.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/member_invites.py b/clients/client/python/ory_client/model/member_invites.py index 78c9acf63b9..0867aefa37b 100644 --- a/clients/client/python/ory_client/model/member_invites.py +++ b/clients/client/python/ory_client/model/member_invites.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/message.py b/clients/client/python/ory_client/model/message.py index 834e4e7c921..c61611fb808 100644 --- a/clients/client/python/ory_client/model/message.py +++ b/clients/client/python/ory_client/model/message.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/message_dispatch.py b/clients/client/python/ory_client/model/message_dispatch.py index 51e84b94d52..f743ba4534b 100644 --- a/clients/client/python/ory_client/model/message_dispatch.py +++ b/clients/client/python/ory_client/model/message_dispatch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/metrics_datapoint.py b/clients/client/python/ory_client/model/metrics_datapoint.py index 8c761095efd..4bdacac22a9 100644 --- a/clients/client/python/ory_client/model/metrics_datapoint.py +++ b/clients/client/python/ory_client/model/metrics_datapoint.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/namespace.py b/clients/client/python/ory_client/model/namespace.py index f4979d523d3..98eb3250899 100644 --- a/clients/client/python/ory_client/model/namespace.py +++ b/clients/client/python/ory_client/model/namespace.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/needs_privileged_session_error.py b/clients/client/python/ory_client/model/needs_privileged_session_error.py index 6ec754a2024..d340da5dda8 100644 --- a/clients/client/python/ory_client/model/needs_privileged_session_error.py +++ b/clients/client/python/ory_client/model/needs_privileged_session_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/normalized_project.py b/clients/client/python/ory_client/model/normalized_project.py index 3a45a0ffcb2..d5a6dc40496 100644 --- a/clients/client/python/ory_client/model/normalized_project.py +++ b/clients/client/python/ory_client/model/normalized_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/normalized_project_revision.py b/clients/client/python/ory_client/model/normalized_project_revision.py index 9c7d095f23f..9a90eeedd85 100644 --- a/clients/client/python/ory_client/model/normalized_project_revision.py +++ b/clients/client/python/ory_client/model/normalized_project_revision.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -193,6 +193,7 @@ def openapi_types(): 'kratos_courier_smtp_from_address': (str,), # noqa: E501 'kratos_courier_smtp_from_name': (str,), # noqa: E501 'kratos_courier_smtp_headers': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501 + 'kratos_courier_smtp_local_name': (str,), # noqa: E501 'kratos_courier_templates_recovery_code_invalid_email_body_html': (str,), # noqa: E501 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext': (str,), # noqa: E501 'kratos_courier_templates_recovery_code_invalid_email_subject': (str,), # noqa: E501 @@ -356,6 +357,7 @@ def discriminator(): 'kratos_courier_smtp_from_address': 'kratos_courier_smtp_from_address', # noqa: E501 'kratos_courier_smtp_from_name': 'kratos_courier_smtp_from_name', # noqa: E501 'kratos_courier_smtp_headers': 'kratos_courier_smtp_headers', # noqa: E501 + 'kratos_courier_smtp_local_name': 'kratos_courier_smtp_local_name', # noqa: E501 'kratos_courier_templates_recovery_code_invalid_email_body_html': 'kratos_courier_templates_recovery_code_invalid_email_body_html', # noqa: E501 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext': 'kratos_courier_templates_recovery_code_invalid_email_body_plaintext', # noqa: E501 'kratos_courier_templates_recovery_code_invalid_email_subject': 'kratos_courier_templates_recovery_code_invalid_email_subject', # noqa: E501 @@ -559,6 +561,7 @@ def _from_openapi_data(cls, name, *args, **kwargs): # noqa: E501 kratos_courier_smtp_from_address (str): Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting.. [optional] # noqa: E501 kratos_courier_smtp_from_name (str): Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting.. [optional] # noqa: E501 kratos_courier_smtp_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501 + kratos_courier_smtp_local_name (str): Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting.. [optional] # noqa: E501 kratos_courier_templates_recovery_code_invalid_email_body_html (str): Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501 kratos_courier_templates_recovery_code_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501 kratos_courier_templates_recovery_code_invalid_email_subject (str): Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501 @@ -802,6 +805,7 @@ def __init__(self, name, *args, **kwargs): # noqa: E501 kratos_courier_smtp_from_address (str): Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting.. [optional] # noqa: E501 kratos_courier_smtp_from_name (str): Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting.. [optional] # noqa: E501 kratos_courier_smtp_headers ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-. [optional] # noqa: E501 + kratos_courier_smtp_local_name (str): Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting.. [optional] # noqa: E501 kratos_courier_templates_recovery_code_invalid_email_body_html (str): Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501 kratos_courier_templates_recovery_code_invalid_email_body_plaintext (str): Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.. [optional] # noqa: E501 kratos_courier_templates_recovery_code_invalid_email_subject (str): Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.. [optional] # noqa: E501 diff --git a/clients/client/python/ory_client/model/normalized_project_revision_hook.py b/clients/client/python/ory_client/model/normalized_project_revision_hook.py index f9e6aa438ea..3d20139f83f 100644 --- a/clients/client/python/ory_client/model/normalized_project_revision_hook.py +++ b/clients/client/python/ory_client/model/normalized_project_revision_hook.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/normalized_project_revision_identity_schema.py b/clients/client/python/ory_client/model/normalized_project_revision_identity_schema.py index 146cc67c4d7..3e867785063 100644 --- a/clients/client/python/ory_client/model/normalized_project_revision_identity_schema.py +++ b/clients/client/python/ory_client/model/normalized_project_revision_identity_schema.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/normalized_project_revision_identity_schemas.py b/clients/client/python/ory_client/model/normalized_project_revision_identity_schemas.py index f83a01d4dd4..86e291075e7 100644 --- a/clients/client/python/ory_client/model/normalized_project_revision_identity_schemas.py +++ b/clients/client/python/ory_client/model/normalized_project_revision_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/normalized_project_revision_third_party_provider.py b/clients/client/python/ory_client/model/normalized_project_revision_third_party_provider.py index 5b7ac96642f..f3fd0f45490 100644 --- a/clients/client/python/ory_client/model/normalized_project_revision_third_party_provider.py +++ b/clients/client/python/ory_client/model/normalized_project_revision_third_party_provider.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/normalized_projects.py b/clients/client/python/ory_client/model/normalized_projects.py index 3f23fa5e5ba..1d0155afe0c 100644 --- a/clients/client/python/ory_client/model/normalized_projects.py +++ b/clients/client/python/ory_client/model/normalized_projects.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/null_duration.py b/clients/client/python/ory_client/model/null_duration.py index 76e54fb1907..79204e38e30 100644 --- a/clients/client/python/ory_client/model/null_duration.py +++ b/clients/client/python/ory_client/model/null_duration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_client.py b/clients/client/python/ory_client/model/o_auth2_client.py index ed6ff8b4a9d..8321c25e82b 100644 --- a/clients/client/python/ory_client/model/o_auth2_client.py +++ b/clients/client/python/ory_client/model/o_auth2_client.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_client_token_lifespans.py b/clients/client/python/ory_client/model/o_auth2_client_token_lifespans.py index dc9d4c19b53..5beef25356f 100644 --- a/clients/client/python/ory_client/model/o_auth2_client_token_lifespans.py +++ b/clients/client/python/ory_client/model/o_auth2_client_token_lifespans.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_consent_request.py b/clients/client/python/ory_client/model/o_auth2_consent_request.py index 9966eac71a1..c9bd12118ca 100644 --- a/clients/client/python/ory_client/model/o_auth2_consent_request.py +++ b/clients/client/python/ory_client/model/o_auth2_consent_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_consent_request_open_id_connect_context.py b/clients/client/python/ory_client/model/o_auth2_consent_request_open_id_connect_context.py index 27f2d70a2af..40dee99c2c1 100644 --- a/clients/client/python/ory_client/model/o_auth2_consent_request_open_id_connect_context.py +++ b/clients/client/python/ory_client/model/o_auth2_consent_request_open_id_connect_context.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_consent_session.py b/clients/client/python/ory_client/model/o_auth2_consent_session.py index d9fb662614b..0c3387ab03a 100644 --- a/clients/client/python/ory_client/model/o_auth2_consent_session.py +++ b/clients/client/python/ory_client/model/o_auth2_consent_session.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_consent_session_expires_at.py b/clients/client/python/ory_client/model/o_auth2_consent_session_expires_at.py index 4aee32fc4cb..bb9f39f95bc 100644 --- a/clients/client/python/ory_client/model/o_auth2_consent_session_expires_at.py +++ b/clients/client/python/ory_client/model/o_auth2_consent_session_expires_at.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_consent_sessions.py b/clients/client/python/ory_client/model/o_auth2_consent_sessions.py index 8a510de3a8a..855b615bd71 100644 --- a/clients/client/python/ory_client/model/o_auth2_consent_sessions.py +++ b/clients/client/python/ory_client/model/o_auth2_consent_sessions.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_login_request.py b/clients/client/python/ory_client/model/o_auth2_login_request.py index 6228ebb3a53..a902e6af206 100644 --- a/clients/client/python/ory_client/model/o_auth2_login_request.py +++ b/clients/client/python/ory_client/model/o_auth2_login_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_logout_request.py b/clients/client/python/ory_client/model/o_auth2_logout_request.py index f16e86c9971..920cec9f1fa 100644 --- a/clients/client/python/ory_client/model/o_auth2_logout_request.py +++ b/clients/client/python/ory_client/model/o_auth2_logout_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_redirect_to.py b/clients/client/python/ory_client/model/o_auth2_redirect_to.py index c56add6735e..1d62fd18df0 100644 --- a/clients/client/python/ory_client/model/o_auth2_redirect_to.py +++ b/clients/client/python/ory_client/model/o_auth2_redirect_to.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/o_auth2_token_exchange.py b/clients/client/python/ory_client/model/o_auth2_token_exchange.py index 7119684b66a..3a2c561e7f0 100644 --- a/clients/client/python/ory_client/model/o_auth2_token_exchange.py +++ b/clients/client/python/ory_client/model/o_auth2_token_exchange.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/oidc_configuration.py b/clients/client/python/ory_client/model/oidc_configuration.py index 996f4d69a6f..5e2ebd58140 100644 --- a/clients/client/python/ory_client/model/oidc_configuration.py +++ b/clients/client/python/ory_client/model/oidc_configuration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/oidc_user_info.py b/clients/client/python/ory_client/model/oidc_user_info.py index 4e26d470db1..62c1dddaa5f 100644 --- a/clients/client/python/ory_client/model/oidc_user_info.py +++ b/clients/client/python/ory_client/model/oidc_user_info.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/pagination.py b/clients/client/python/ory_client/model/pagination.py index 359ae95a2ed..bef37ee32a8 100644 --- a/clients/client/python/ory_client/model/pagination.py +++ b/clients/client/python/ory_client/model/pagination.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/pagination_headers.py b/clients/client/python/ory_client/model/pagination_headers.py index 904d9c5f768..211ec5b6496 100644 --- a/clients/client/python/ory_client/model/pagination_headers.py +++ b/clients/client/python/ory_client/model/pagination_headers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/parse_error.py b/clients/client/python/ory_client/model/parse_error.py index 8a32ed3bd42..1f339631548 100644 --- a/clients/client/python/ory_client/model/parse_error.py +++ b/clients/client/python/ory_client/model/parse_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/patch_identities_body.py b/clients/client/python/ory_client/model/patch_identities_body.py index 818953ed830..93b01eb2250 100644 --- a/clients/client/python/ory_client/model/patch_identities_body.py +++ b/clients/client/python/ory_client/model/patch_identities_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/perform_native_logout_body.py b/clients/client/python/ory_client/model/perform_native_logout_body.py index a35b1f98845..894ed6f4ecc 100644 --- a/clients/client/python/ory_client/model/perform_native_logout_body.py +++ b/clients/client/python/ory_client/model/perform_native_logout_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/permissions_on_project.py b/clients/client/python/ory_client/model/permissions_on_project.py index 49354a655a3..be9acc9abaf 100644 --- a/clients/client/python/ory_client/model/permissions_on_project.py +++ b/clients/client/python/ory_client/model/permissions_on_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/plan.py b/clients/client/python/ory_client/model/plan.py index f5b349963d1..9a25869e70f 100644 --- a/clients/client/python/ory_client/model/plan.py +++ b/clients/client/python/ory_client/model/plan.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/plan_details.py b/clients/client/python/ory_client/model/plan_details.py index fb50bd6178f..7d217045508 100644 --- a/clients/client/python/ory_client/model/plan_details.py +++ b/clients/client/python/ory_client/model/plan_details.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/plans.py b/clients/client/python/ory_client/model/plans.py index 371057958e3..5532c3062b7 100644 --- a/clients/client/python/ory_client/model/plans.py +++ b/clients/client/python/ory_client/model/plans.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/post_check_permission_body.py b/clients/client/python/ory_client/model/post_check_permission_body.py index 01a4f051bd5..dbd254b8824 100644 --- a/clients/client/python/ory_client/model/post_check_permission_body.py +++ b/clients/client/python/ory_client/model/post_check_permission_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/post_check_permission_or_error_body.py b/clients/client/python/ory_client/model/post_check_permission_or_error_body.py index fb5e5d6f523..a3e618aefb7 100644 --- a/clients/client/python/ory_client/model/post_check_permission_or_error_body.py +++ b/clients/client/python/ory_client/model/post_check_permission_or_error_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/pricing.py b/clients/client/python/ory_client/model/pricing.py index 00c6e18c4d4..fd65f968f5c 100644 --- a/clients/client/python/ory_client/model/pricing.py +++ b/clients/client/python/ory_client/model/pricing.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project.py b/clients/client/python/ory_client/model/project.py index db515f3b476..dd3933f02e1 100644 --- a/clients/client/python/ory_client/model/project.py +++ b/clients/client/python/ory_client/model/project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_api_key.py b/clients/client/python/ory_client/model/project_api_key.py index d6fd919945c..efebcd1ae3e 100644 --- a/clients/client/python/ory_client/model/project_api_key.py +++ b/clients/client/python/ory_client/model/project_api_key.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_api_keys.py b/clients/client/python/ory_client/model/project_api_keys.py index ab2fcd0a8f4..c3d925588c1 100644 --- a/clients/client/python/ory_client/model/project_api_keys.py +++ b/clients/client/python/ory_client/model/project_api_keys.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_branding.py b/clients/client/python/ory_client/model/project_branding.py index d5740118b70..53b89e7e73b 100644 --- a/clients/client/python/ory_client/model/project_branding.py +++ b/clients/client/python/ory_client/model/project_branding.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_branding_colors.py b/clients/client/python/ory_client/model/project_branding_colors.py index 0c67ef14979..3df6dab2773 100644 --- a/clients/client/python/ory_client/model/project_branding_colors.py +++ b/clients/client/python/ory_client/model/project_branding_colors.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_branding_theme.py b/clients/client/python/ory_client/model/project_branding_theme.py index 46177a3e1ad..9cedd3a73ad 100644 --- a/clients/client/python/ory_client/model/project_branding_theme.py +++ b/clients/client/python/ory_client/model/project_branding_theme.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_branding_themes.py b/clients/client/python/ory_client/model/project_branding_themes.py index 06878195977..7b15b93c6e7 100644 --- a/clients/client/python/ory_client/model/project_branding_themes.py +++ b/clients/client/python/ory_client/model/project_branding_themes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_host.py b/clients/client/python/ory_client/model/project_host.py index 6df9a1442ec..bd250141749 100644 --- a/clients/client/python/ory_client/model/project_host.py +++ b/clients/client/python/ory_client/model/project_host.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_member.py b/clients/client/python/ory_client/model/project_member.py index 3c1248ef25a..47eec5a238a 100644 --- a/clients/client/python/ory_client/model/project_member.py +++ b/clients/client/python/ory_client/model/project_member.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_members.py b/clients/client/python/ory_client/model/project_members.py index e92fe6eba53..407478da8f5 100644 --- a/clients/client/python/ory_client/model/project_members.py +++ b/clients/client/python/ory_client/model/project_members.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_metadata.py b/clients/client/python/ory_client/model/project_metadata.py index 7e920e9ee94..e062d7e02a6 100644 --- a/clients/client/python/ory_client/model/project_metadata.py +++ b/clients/client/python/ory_client/model/project_metadata.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_metadata_list.py b/clients/client/python/ory_client/model/project_metadata_list.py index 08bed9478b8..27a6b35d07e 100644 --- a/clients/client/python/ory_client/model/project_metadata_list.py +++ b/clients/client/python/ory_client/model/project_metadata_list.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_revision_hooks.py b/clients/client/python/ory_client/model/project_revision_hooks.py index f42d204183f..6505cc19c0c 100644 --- a/clients/client/python/ory_client/model/project_revision_hooks.py +++ b/clients/client/python/ory_client/model/project_revision_hooks.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_revision_identity_schemas.py b/clients/client/python/ory_client/model/project_revision_identity_schemas.py index 2031f76e67d..914c0780414 100644 --- a/clients/client/python/ory_client/model/project_revision_identity_schemas.py +++ b/clients/client/python/ory_client/model/project_revision_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_revision_third_party_login_providers.py b/clients/client/python/ory_client/model/project_revision_third_party_login_providers.py index 2867f71bdcc..607d9d7438a 100644 --- a/clients/client/python/ory_client/model/project_revision_third_party_login_providers.py +++ b/clients/client/python/ory_client/model/project_revision_third_party_login_providers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_revisions.py b/clients/client/python/ory_client/model/project_revisions.py index ffc1b7606eb..0fdb3d4fa76 100644 --- a/clients/client/python/ory_client/model/project_revisions.py +++ b/clients/client/python/ory_client/model/project_revisions.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_service_identity.py b/clients/client/python/ory_client/model/project_service_identity.py index 6ebf9e9390f..aa1701ae5dd 100644 --- a/clients/client/python/ory_client/model/project_service_identity.py +++ b/clients/client/python/ory_client/model/project_service_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_service_o_auth2.py b/clients/client/python/ory_client/model/project_service_o_auth2.py index a168787d214..ebd1d829185 100644 --- a/clients/client/python/ory_client/model/project_service_o_auth2.py +++ b/clients/client/python/ory_client/model/project_service_o_auth2.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_service_permission.py b/clients/client/python/ory_client/model/project_service_permission.py index 3301c1cbca1..7c6cbc9799b 100644 --- a/clients/client/python/ory_client/model/project_service_permission.py +++ b/clients/client/python/ory_client/model/project_service_permission.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_services.py b/clients/client/python/ory_client/model/project_services.py index 6f812f2557c..04ea1a305e0 100644 --- a/clients/client/python/ory_client/model/project_services.py +++ b/clients/client/python/ory_client/model/project_services.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/projects.py b/clients/client/python/ory_client/model/projects.py index 91ccf4a0710..bd055991d27 100644 --- a/clients/client/python/ory_client/model/projects.py +++ b/clients/client/python/ory_client/model/projects.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/quota_usage.py b/clients/client/python/ory_client/model/quota_usage.py index 12c0f543fb8..df9cf98771d 100644 --- a/clients/client/python/ory_client/model/quota_usage.py +++ b/clients/client/python/ory_client/model/quota_usage.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/recovery_code_for_identity.py b/clients/client/python/ory_client/model/recovery_code_for_identity.py index 8e3b78788d7..8da7e27f9ba 100644 --- a/clients/client/python/ory_client/model/recovery_code_for_identity.py +++ b/clients/client/python/ory_client/model/recovery_code_for_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/recovery_flow.py b/clients/client/python/ory_client/model/recovery_flow.py index 2bec71dbbf7..1ee683c0f38 100644 --- a/clients/client/python/ory_client/model/recovery_flow.py +++ b/clients/client/python/ory_client/model/recovery_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/recovery_flow_state.py b/clients/client/python/ory_client/model/recovery_flow_state.py index a242fd3ff57..79971eeab4a 100644 --- a/clients/client/python/ory_client/model/recovery_flow_state.py +++ b/clients/client/python/ory_client/model/recovery_flow_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/recovery_identity_address.py b/clients/client/python/ory_client/model/recovery_identity_address.py index c8150ebce01..270d6969413 100644 --- a/clients/client/python/ory_client/model/recovery_identity_address.py +++ b/clients/client/python/ory_client/model/recovery_identity_address.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/recovery_link_for_identity.py b/clients/client/python/ory_client/model/recovery_link_for_identity.py index 8e860e826c9..5fd18b4c4b6 100644 --- a/clients/client/python/ory_client/model/recovery_link_for_identity.py +++ b/clients/client/python/ory_client/model/recovery_link_for_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/registration_flow.py b/clients/client/python/ory_client/model/registration_flow.py index 0b2c76c05f9..7a5a85bfb71 100644 --- a/clients/client/python/ory_client/model/registration_flow.py +++ b/clients/client/python/ory_client/model/registration_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/reject_o_auth2_request.py b/clients/client/python/ory_client/model/reject_o_auth2_request.py index c12aedfbe89..3089bbe81a1 100644 --- a/clients/client/python/ory_client/model/reject_o_auth2_request.py +++ b/clients/client/python/ory_client/model/reject_o_auth2_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/relation_query.py b/clients/client/python/ory_client/model/relation_query.py index 7454e76ac35..3766e72cff1 100644 --- a/clients/client/python/ory_client/model/relation_query.py +++ b/clients/client/python/ory_client/model/relation_query.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/relationship.py b/clients/client/python/ory_client/model/relationship.py index c9a774889ca..cf7932bd38b 100644 --- a/clients/client/python/ory_client/model/relationship.py +++ b/clients/client/python/ory_client/model/relationship.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/relationship_namespaces.py b/clients/client/python/ory_client/model/relationship_namespaces.py index fc0ba32aa91..a6c571c2844 100644 --- a/clients/client/python/ory_client/model/relationship_namespaces.py +++ b/clients/client/python/ory_client/model/relationship_namespaces.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/relationship_patch.py b/clients/client/python/ory_client/model/relationship_patch.py index 24c9a8e9e7f..17368ccd7df 100644 --- a/clients/client/python/ory_client/model/relationship_patch.py +++ b/clients/client/python/ory_client/model/relationship_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/relationships.py b/clients/client/python/ory_client/model/relationships.py index 260f7aabe2d..823814eb3c0 100644 --- a/clients/client/python/ory_client/model/relationships.py +++ b/clients/client/python/ory_client/model/relationships.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/rfc6749_error_json.py b/clients/client/python/ory_client/model/rfc6749_error_json.py index 2fa8eb543c2..b6fd7c8fa1d 100644 --- a/clients/client/python/ory_client/model/rfc6749_error_json.py +++ b/clients/client/python/ory_client/model/rfc6749_error_json.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/schema_patch.py b/clients/client/python/ory_client/model/schema_patch.py index 14bb0d99688..c7d12278590 100644 --- a/clients/client/python/ory_client/model/schema_patch.py +++ b/clients/client/python/ory_client/model/schema_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/self_service_flow_expired_error.py b/clients/client/python/ory_client/model/self_service_flow_expired_error.py index aecda5f3b20..f8cf8eb1bb1 100644 --- a/clients/client/python/ory_client/model/self_service_flow_expired_error.py +++ b/clients/client/python/ory_client/model/self_service_flow_expired_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/session.py b/clients/client/python/ory_client/model/session.py index eb7894445bd..36198c74fce 100644 --- a/clients/client/python/ory_client/model/session.py +++ b/clients/client/python/ory_client/model/session.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/session_authentication_method.py b/clients/client/python/ory_client/model/session_authentication_method.py index 1d61cd480ed..da66b707c81 100644 --- a/clients/client/python/ory_client/model/session_authentication_method.py +++ b/clients/client/python/ory_client/model/session_authentication_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/session_authentication_methods.py b/clients/client/python/ory_client/model/session_authentication_methods.py index d16f135a9ea..bb67a6bb528 100644 --- a/clients/client/python/ory_client/model/session_authentication_methods.py +++ b/clients/client/python/ory_client/model/session_authentication_methods.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/session_device.py b/clients/client/python/ory_client/model/session_device.py index 93c578dcbbf..ffe147ef6be 100644 --- a/clients/client/python/ory_client/model/session_device.py +++ b/clients/client/python/ory_client/model/session_device.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/set_active_project_in_console_body.py b/clients/client/python/ory_client/model/set_active_project_in_console_body.py index bacb6126860..f40bc1ae3c2 100644 --- a/clients/client/python/ory_client/model/set_active_project_in_console_body.py +++ b/clients/client/python/ory_client/model/set_active_project_in_console_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/set_custom_domain_body.py b/clients/client/python/ory_client/model/set_custom_domain_body.py index d85cabc3216..9ec3bf66373 100644 --- a/clients/client/python/ory_client/model/set_custom_domain_body.py +++ b/clients/client/python/ory_client/model/set_custom_domain_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/set_project.py b/clients/client/python/ory_client/model/set_project.py index a8e0cdf914f..134d23be2b6 100644 --- a/clients/client/python/ory_client/model/set_project.py +++ b/clients/client/python/ory_client/model/set_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/set_project_branding_theme_body.py b/clients/client/python/ory_client/model/set_project_branding_theme_body.py index d01afdbbf35..78f4f3f035e 100644 --- a/clients/client/python/ory_client/model/set_project_branding_theme_body.py +++ b/clients/client/python/ory_client/model/set_project_branding_theme_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/settings_flow.py b/clients/client/python/ory_client/model/settings_flow.py index c05f2074ec8..27c69524875 100644 --- a/clients/client/python/ory_client/model/settings_flow.py +++ b/clients/client/python/ory_client/model/settings_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/settings_flow_state.py b/clients/client/python/ory_client/model/settings_flow_state.py index 82581e6629f..217ae9c7616 100644 --- a/clients/client/python/ory_client/model/settings_flow_state.py +++ b/clients/client/python/ory_client/model/settings_flow_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/source_position.py b/clients/client/python/ory_client/model/source_position.py index c3896a93703..e281d78e7db 100644 --- a/clients/client/python/ory_client/model/source_position.py +++ b/clients/client/python/ory_client/model/source_position.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/string_slice_json_format.py b/clients/client/python/ory_client/model/string_slice_json_format.py index 435f17d336e..c62f31e028d 100644 --- a/clients/client/python/ory_client/model/string_slice_json_format.py +++ b/clients/client/python/ory_client/model/string_slice_json_format.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/stripe_customer.py b/clients/client/python/ory_client/model/stripe_customer.py index 32ff6549359..104d91f3a5d 100644 --- a/clients/client/python/ory_client/model/stripe_customer.py +++ b/clients/client/python/ory_client/model/stripe_customer.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/subject_set.py b/clients/client/python/ory_client/model/subject_set.py index 014c02b2abe..f0ff5acf1b0 100644 --- a/clients/client/python/ory_client/model/subject_set.py +++ b/clients/client/python/ory_client/model/subject_set.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/subscription.py b/clients/client/python/ory_client/model/subscription.py index dd3b4dc0728..17c5b3f4947 100644 --- a/clients/client/python/ory_client/model/subscription.py +++ b/clients/client/python/ory_client/model/subscription.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/successful_code_exchange_response.py b/clients/client/python/ory_client/model/successful_code_exchange_response.py index 980979e9308..5349dde1a8d 100644 --- a/clients/client/python/ory_client/model/successful_code_exchange_response.py +++ b/clients/client/python/ory_client/model/successful_code_exchange_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/successful_native_login.py b/clients/client/python/ory_client/model/successful_native_login.py index 5290df5d64a..fbc8ab71b62 100644 --- a/clients/client/python/ory_client/model/successful_native_login.py +++ b/clients/client/python/ory_client/model/successful_native_login.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/successful_native_registration.py b/clients/client/python/ory_client/model/successful_native_registration.py index f0252473965..5b322dc9960 100644 --- a/clients/client/python/ory_client/model/successful_native_registration.py +++ b/clients/client/python/ory_client/model/successful_native_registration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/successful_project_update.py b/clients/client/python/ory_client/model/successful_project_update.py index 9c7285e2ba0..f4c182c23ef 100644 --- a/clients/client/python/ory_client/model/successful_project_update.py +++ b/clients/client/python/ory_client/model/successful_project_update.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/token_pagination.py b/clients/client/python/ory_client/model/token_pagination.py index 760a7e587ec..204239d4f25 100644 --- a/clients/client/python/ory_client/model/token_pagination.py +++ b/clients/client/python/ory_client/model/token_pagination.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/token_pagination_headers.py b/clients/client/python/ory_client/model/token_pagination_headers.py index f4c13d0862d..7cf8f3272b9 100644 --- a/clients/client/python/ory_client/model/token_pagination_headers.py +++ b/clients/client/python/ory_client/model/token_pagination_headers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/token_pagination_request_parameters.py b/clients/client/python/ory_client/model/token_pagination_request_parameters.py index 5b696c39284..0e8fd2c04b7 100644 --- a/clients/client/python/ory_client/model/token_pagination_request_parameters.py +++ b/clients/client/python/ory_client/model/token_pagination_request_parameters.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/token_pagination_response_headers.py b/clients/client/python/ory_client/model/token_pagination_response_headers.py index 909ac8697a6..14c3a398a73 100644 --- a/clients/client/python/ory_client/model/token_pagination_response_headers.py +++ b/clients/client/python/ory_client/model/token_pagination_response_headers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/trust_o_auth2_jwt_grant_issuer.py b/clients/client/python/ory_client/model/trust_o_auth2_jwt_grant_issuer.py index 38977d3a373..d86c144555a 100644 --- a/clients/client/python/ory_client/model/trust_o_auth2_jwt_grant_issuer.py +++ b/clients/client/python/ory_client/model/trust_o_auth2_jwt_grant_issuer.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuer.py b/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuer.py index daa4a642345..ab404ba219e 100644 --- a/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuer.py +++ b/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuer.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuers.py b/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuers.py index 525ee58d127..ef35865678e 100644 --- a/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuers.py +++ b/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_issuers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py b/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py index f487800bcea..6928370b47d 100644 --- a/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py +++ b/clients/client/python/ory_client/model/trusted_o_auth2_jwt_grant_json_web_key.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_container.py b/clients/client/python/ory_client/model/ui_container.py index 424fc5bb57e..fe29d26e905 100644 --- a/clients/client/python/ory_client/model/ui_container.py +++ b/clients/client/python/ory_client/model/ui_container.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node.py b/clients/client/python/ory_client/model/ui_node.py index d2845280c0f..d3e40777b0d 100644 --- a/clients/client/python/ory_client/model/ui_node.py +++ b/clients/client/python/ory_client/model/ui_node.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_anchor_attributes.py b/clients/client/python/ory_client/model/ui_node_anchor_attributes.py index dd2e2db9b6e..c3232204f48 100644 --- a/clients/client/python/ory_client/model/ui_node_anchor_attributes.py +++ b/clients/client/python/ory_client/model/ui_node_anchor_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_attributes.py b/clients/client/python/ory_client/model/ui_node_attributes.py index 7cadf4313c7..19bdbaa64f5 100644 --- a/clients/client/python/ory_client/model/ui_node_attributes.py +++ b/clients/client/python/ory_client/model/ui_node_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_image_attributes.py b/clients/client/python/ory_client/model/ui_node_image_attributes.py index f295f0763d7..1fdb6d59f98 100644 --- a/clients/client/python/ory_client/model/ui_node_image_attributes.py +++ b/clients/client/python/ory_client/model/ui_node_image_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_input_attributes.py b/clients/client/python/ory_client/model/ui_node_input_attributes.py index 300f0503285..0657ad32d8c 100644 --- a/clients/client/python/ory_client/model/ui_node_input_attributes.py +++ b/clients/client/python/ory_client/model/ui_node_input_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_meta.py b/clients/client/python/ory_client/model/ui_node_meta.py index 7b19f39313c..38847db9a81 100644 --- a/clients/client/python/ory_client/model/ui_node_meta.py +++ b/clients/client/python/ory_client/model/ui_node_meta.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_script_attributes.py b/clients/client/python/ory_client/model/ui_node_script_attributes.py index 457f7274096..0a7d4dda806 100644 --- a/clients/client/python/ory_client/model/ui_node_script_attributes.py +++ b/clients/client/python/ory_client/model/ui_node_script_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_node_text_attributes.py b/clients/client/python/ory_client/model/ui_node_text_attributes.py index 1bc4a5dc762..7d98cb59544 100644 --- a/clients/client/python/ory_client/model/ui_node_text_attributes.py +++ b/clients/client/python/ory_client/model/ui_node_text_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_nodes.py b/clients/client/python/ory_client/model/ui_nodes.py index 18a84bb8a17..eda78236749 100644 --- a/clients/client/python/ory_client/model/ui_nodes.py +++ b/clients/client/python/ory_client/model/ui_nodes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_text.py b/clients/client/python/ory_client/model/ui_text.py index fa2d6b7cc4f..d0aaa5138cb 100644 --- a/clients/client/python/ory_client/model/ui_text.py +++ b/clients/client/python/ory_client/model/ui_text.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/ui_texts.py b/clients/client/python/ory_client/model/ui_texts.py index 2f05af5a895..3f748a0bc3b 100644 --- a/clients/client/python/ory_client/model/ui_texts.py +++ b/clients/client/python/ory_client/model/ui_texts.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_identity_body.py b/clients/client/python/ory_client/model/update_identity_body.py index 3dd8956bf80..9c39fc98410 100644 --- a/clients/client/python/ory_client/model/update_identity_body.py +++ b/clients/client/python/ory_client/model/update_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_login_flow_body.py b/clients/client/python/ory_client/model/update_login_flow_body.py index 514e1e4a939..830bce804a0 100644 --- a/clients/client/python/ory_client/model/update_login_flow_body.py +++ b/clients/client/python/ory_client/model/update_login_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_login_flow_with_lookup_secret_method.py b/clients/client/python/ory_client/model/update_login_flow_with_lookup_secret_method.py index 6491bbcfba0..80505097564 100644 --- a/clients/client/python/ory_client/model/update_login_flow_with_lookup_secret_method.py +++ b/clients/client/python/ory_client/model/update_login_flow_with_lookup_secret_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_login_flow_with_oidc_method.py b/clients/client/python/ory_client/model/update_login_flow_with_oidc_method.py index 59b90929deb..335e9feca94 100644 --- a/clients/client/python/ory_client/model/update_login_flow_with_oidc_method.py +++ b/clients/client/python/ory_client/model/update_login_flow_with_oidc_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_login_flow_with_password_method.py b/clients/client/python/ory_client/model/update_login_flow_with_password_method.py index da17a671f5a..d8c5fbd659f 100644 --- a/clients/client/python/ory_client/model/update_login_flow_with_password_method.py +++ b/clients/client/python/ory_client/model/update_login_flow_with_password_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_login_flow_with_totp_method.py b/clients/client/python/ory_client/model/update_login_flow_with_totp_method.py index e6affa8f969..1e237028d6a 100644 --- a/clients/client/python/ory_client/model/update_login_flow_with_totp_method.py +++ b/clients/client/python/ory_client/model/update_login_flow_with_totp_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_login_flow_with_web_authn_method.py b/clients/client/python/ory_client/model/update_login_flow_with_web_authn_method.py index 1a5c9b9fc5a..15f28e95799 100644 --- a/clients/client/python/ory_client/model/update_login_flow_with_web_authn_method.py +++ b/clients/client/python/ory_client/model/update_login_flow_with_web_authn_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_recovery_flow_body.py b/clients/client/python/ory_client/model/update_recovery_flow_body.py index f9680ba6549..5b294d264f5 100644 --- a/clients/client/python/ory_client/model/update_recovery_flow_body.py +++ b/clients/client/python/ory_client/model/update_recovery_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_recovery_flow_with_code_method.py b/clients/client/python/ory_client/model/update_recovery_flow_with_code_method.py index fa023b3d0ba..63774021636 100644 --- a/clients/client/python/ory_client/model/update_recovery_flow_with_code_method.py +++ b/clients/client/python/ory_client/model/update_recovery_flow_with_code_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_recovery_flow_with_link_method.py b/clients/client/python/ory_client/model/update_recovery_flow_with_link_method.py index e7fe6dcfd87..cc8af18a5d1 100644 --- a/clients/client/python/ory_client/model/update_recovery_flow_with_link_method.py +++ b/clients/client/python/ory_client/model/update_recovery_flow_with_link_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_registration_flow_body.py b/clients/client/python/ory_client/model/update_registration_flow_body.py index 7c97a9dd50f..5a8ba6c723e 100644 --- a/clients/client/python/ory_client/model/update_registration_flow_body.py +++ b/clients/client/python/ory_client/model/update_registration_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_registration_flow_with_oidc_method.py b/clients/client/python/ory_client/model/update_registration_flow_with_oidc_method.py index 75e66310ecf..b0b9e0ea4a7 100644 --- a/clients/client/python/ory_client/model/update_registration_flow_with_oidc_method.py +++ b/clients/client/python/ory_client/model/update_registration_flow_with_oidc_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_registration_flow_with_password_method.py b/clients/client/python/ory_client/model/update_registration_flow_with_password_method.py index 6c3b9d36bd6..75d208792aa 100644 --- a/clients/client/python/ory_client/model/update_registration_flow_with_password_method.py +++ b/clients/client/python/ory_client/model/update_registration_flow_with_password_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_registration_flow_with_web_authn_method.py b/clients/client/python/ory_client/model/update_registration_flow_with_web_authn_method.py index 3a9e4167993..9a34c14b21e 100644 --- a/clients/client/python/ory_client/model/update_registration_flow_with_web_authn_method.py +++ b/clients/client/python/ory_client/model/update_registration_flow_with_web_authn_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_body.py b/clients/client/python/ory_client/model/update_settings_flow_body.py index c150c8aea54..2ac210e8a18 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_body.py +++ b/clients/client/python/ory_client/model/update_settings_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_with_lookup_method.py b/clients/client/python/ory_client/model/update_settings_flow_with_lookup_method.py index 6784716f4ba..02664cadfe0 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_with_lookup_method.py +++ b/clients/client/python/ory_client/model/update_settings_flow_with_lookup_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_with_oidc_method.py b/clients/client/python/ory_client/model/update_settings_flow_with_oidc_method.py index 08c053d30e2..c020b5bbb34 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_with_oidc_method.py +++ b/clients/client/python/ory_client/model/update_settings_flow_with_oidc_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_with_password_method.py b/clients/client/python/ory_client/model/update_settings_flow_with_password_method.py index 5980f48be04..6691756cfd8 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_with_password_method.py +++ b/clients/client/python/ory_client/model/update_settings_flow_with_password_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_with_profile_method.py b/clients/client/python/ory_client/model/update_settings_flow_with_profile_method.py index 24e08fd09ae..8e9b45c7b46 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_with_profile_method.py +++ b/clients/client/python/ory_client/model/update_settings_flow_with_profile_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_with_totp_method.py b/clients/client/python/ory_client/model/update_settings_flow_with_totp_method.py index 563942f83be..e820ec67555 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_with_totp_method.py +++ b/clients/client/python/ory_client/model/update_settings_flow_with_totp_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_settings_flow_with_web_authn_method.py b/clients/client/python/ory_client/model/update_settings_flow_with_web_authn_method.py index b9ebef1bd11..50a9c9cebdf 100644 --- a/clients/client/python/ory_client/model/update_settings_flow_with_web_authn_method.py +++ b/clients/client/python/ory_client/model/update_settings_flow_with_web_authn_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_subscription_body.py b/clients/client/python/ory_client/model/update_subscription_body.py index f1ed145043b..b6a89cf44b4 100644 --- a/clients/client/python/ory_client/model/update_subscription_body.py +++ b/clients/client/python/ory_client/model/update_subscription_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_verification_flow_body.py b/clients/client/python/ory_client/model/update_verification_flow_body.py index 70c240cd992..34b5f136c52 100644 --- a/clients/client/python/ory_client/model/update_verification_flow_body.py +++ b/clients/client/python/ory_client/model/update_verification_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_verification_flow_with_code_method.py b/clients/client/python/ory_client/model/update_verification_flow_with_code_method.py index bc4879f7519..d10f48832b4 100644 --- a/clients/client/python/ory_client/model/update_verification_flow_with_code_method.py +++ b/clients/client/python/ory_client/model/update_verification_flow_with_code_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/update_verification_flow_with_link_method.py b/clients/client/python/ory_client/model/update_verification_flow_with_link_method.py index 15a4896f03e..5c8075fbc60 100644 --- a/clients/client/python/ory_client/model/update_verification_flow_with_link_method.py +++ b/clients/client/python/ory_client/model/update_verification_flow_with_link_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/usage.py b/clients/client/python/ory_client/model/usage.py index 6ac089a7735..cdf9a743b30 100644 --- a/clients/client/python/ory_client/model/usage.py +++ b/clients/client/python/ory_client/model/usage.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/verifiable_credential_priming_response.py b/clients/client/python/ory_client/model/verifiable_credential_priming_response.py index fb90d0064eb..701de23af21 100644 --- a/clients/client/python/ory_client/model/verifiable_credential_priming_response.py +++ b/clients/client/python/ory_client/model/verifiable_credential_priming_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/verifiable_credential_proof.py b/clients/client/python/ory_client/model/verifiable_credential_proof.py index b9442ee11d5..20ec3baf380 100644 --- a/clients/client/python/ory_client/model/verifiable_credential_proof.py +++ b/clients/client/python/ory_client/model/verifiable_credential_proof.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/verifiable_credential_response.py b/clients/client/python/ory_client/model/verifiable_credential_response.py index d5718aa7fb1..0ab910d0b1d 100644 --- a/clients/client/python/ory_client/model/verifiable_credential_response.py +++ b/clients/client/python/ory_client/model/verifiable_credential_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/verifiable_identity_address.py b/clients/client/python/ory_client/model/verifiable_identity_address.py index 28647936d86..85ca8c55608 100644 --- a/clients/client/python/ory_client/model/verifiable_identity_address.py +++ b/clients/client/python/ory_client/model/verifiable_identity_address.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/verification_flow.py b/clients/client/python/ory_client/model/verification_flow.py index a1880cfcca5..7c6fbc633e0 100644 --- a/clients/client/python/ory_client/model/verification_flow.py +++ b/clients/client/python/ory_client/model/verification_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/verification_flow_state.py b/clients/client/python/ory_client/model/verification_flow_state.py index 9df04c65e00..8b0707a39d7 100644 --- a/clients/client/python/ory_client/model/verification_flow_state.py +++ b/clients/client/python/ory_client/model/verification_flow_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/version.py b/clients/client/python/ory_client/model/version.py index 9990a135dfa..3eb792111f0 100644 --- a/clients/client/python/ory_client/model/version.py +++ b/clients/client/python/ory_client/model/version.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/warning.py b/clients/client/python/ory_client/model/warning.py index e1759c2d008..99ab3631012 100644 --- a/clients/client/python/ory_client/model/warning.py +++ b/clients/client/python/ory_client/model/warning.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model_utils.py b/clients/client/python/ory_client/model_utils.py index c726864c40d..4899ede8d2f 100644 --- a/clients/client/python/ory_client/model_utils.py +++ b/clients/client/python/ory_client/model_utils.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/rest.py b/clients/client/python/ory_client/rest.py index d81325d123e..4e6d068a941 100644 --- a/clients/client/python/ory_client/rest.py +++ b/clients/client/python/ory_client/rest.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/setup.py b/clients/client/python/setup.py index 001f502a8e1..b4cfc2af269 100644 --- a/clients/client/python/setup.py +++ b/clients/client/python/setup.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "ory-client" -VERSION = "v1.1.44" +VERSION = "v1.1.45" # To install the library, run the following # # python setup.py install diff --git a/clients/client/python/test/test_accept_o_auth2_consent_request.py b/clients/client/python/test/test_accept_o_auth2_consent_request.py index 7f7ee97384e..7430a3c77c8 100644 --- a/clients/client/python/test/test_accept_o_auth2_consent_request.py +++ b/clients/client/python/test/test_accept_o_auth2_consent_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_accept_o_auth2_consent_request_session.py b/clients/client/python/test/test_accept_o_auth2_consent_request_session.py index 94aaaaf9344..9f8f95b5d9e 100644 --- a/clients/client/python/test/test_accept_o_auth2_consent_request_session.py +++ b/clients/client/python/test/test_accept_o_auth2_consent_request_session.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_accept_o_auth2_login_request.py b/clients/client/python/test/test_accept_o_auth2_login_request.py index 0a92d279f93..12316c3f795 100644 --- a/clients/client/python/test/test_accept_o_auth2_login_request.py +++ b/clients/client/python/test/test_accept_o_auth2_login_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_active_project_in_console.py b/clients/client/python/test/test_active_project_in_console.py index fcdfceb4f41..b8a73af552f 100644 --- a/clients/client/python/test/test_active_project_in_console.py +++ b/clients/client/python/test/test_active_project_in_console.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_authenticator_assurance_level.py b/clients/client/python/test/test_authenticator_assurance_level.py index 966a061fdf5..774d005ebc7 100644 --- a/clients/client/python/test/test_authenticator_assurance_level.py +++ b/clients/client/python/test/test_authenticator_assurance_level.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_batch_patch_identities_response.py b/clients/client/python/test/test_batch_patch_identities_response.py index 4778b38e519..6cbffeb6af0 100644 --- a/clients/client/python/test/test_batch_patch_identities_response.py +++ b/clients/client/python/test/test_batch_patch_identities_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_check_opl_syntax_result.py b/clients/client/python/test/test_check_opl_syntax_result.py index a7730b06a4b..2b973ff8d12 100644 --- a/clients/client/python/test/test_check_opl_syntax_result.py +++ b/clients/client/python/test/test_check_opl_syntax_result.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_check_permission_result.py b/clients/client/python/test/test_check_permission_result.py index 286c4f69477..acc18837ee6 100644 --- a/clients/client/python/test/test_check_permission_result.py +++ b/clients/client/python/test/test_check_permission_result.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_cloud_account.py b/clients/client/python/test/test_cloud_account.py index eda0b20ac89..9df4087fb9c 100644 --- a/clients/client/python/test/test_cloud_account.py +++ b/clients/client/python/test/test_cloud_account.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_continue_with.py b/clients/client/python/test/test_continue_with.py index 607a811feff..5150fd1c760 100644 --- a/clients/client/python/test/test_continue_with.py +++ b/clients/client/python/test/test_continue_with.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_continue_with_set_ory_session_token.py b/clients/client/python/test/test_continue_with_set_ory_session_token.py index 30e4c0cbf9e..b0004910f7d 100644 --- a/clients/client/python/test/test_continue_with_set_ory_session_token.py +++ b/clients/client/python/test/test_continue_with_set_ory_session_token.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_continue_with_verification_ui.py b/clients/client/python/test/test_continue_with_verification_ui.py index d63289e8799..ba185241e54 100644 --- a/clients/client/python/test/test_continue_with_verification_ui.py +++ b/clients/client/python/test/test_continue_with_verification_ui.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_continue_with_verification_ui_flow.py b/clients/client/python/test/test_continue_with_verification_ui_flow.py index 6cabe39d0d5..aec51d7fa0d 100644 --- a/clients/client/python/test/test_continue_with_verification_ui_flow.py +++ b/clients/client/python/test/test_continue_with_verification_ui_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_cors.py b/clients/client/python/test/test_cors.py index 7ea318263da..47f52b84488 100644 --- a/clients/client/python/test/test_cors.py +++ b/clients/client/python/test/test_cors.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_courier_api.py b/clients/client/python/test/test_courier_api.py index aa57d9aa44a..2e7a2bca11a 100644 --- a/clients/client/python/test/test_courier_api.py +++ b/clients/client/python/test/test_courier_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_courier_message_status.py b/clients/client/python/test/test_courier_message_status.py index 42ffe0c82dd..583a028ee8e 100644 --- a/clients/client/python/test/test_courier_message_status.py +++ b/clients/client/python/test/test_courier_message_status.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_courier_message_type.py b/clients/client/python/test/test_courier_message_type.py index 210c33cce28..e4f38a5c9b8 100644 --- a/clients/client/python/test/test_courier_message_type.py +++ b/clients/client/python/test/test_courier_message_type.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_custom_domain_body.py b/clients/client/python/test/test_create_custom_domain_body.py index 8445a11c1e9..84f53b337d0 100644 --- a/clients/client/python/test/test_create_custom_domain_body.py +++ b/clients/client/python/test/test_create_custom_domain_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_identity_body.py b/clients/client/python/test/test_create_identity_body.py index ee90a751c4b..869dd48b561 100644 --- a/clients/client/python/test/test_create_identity_body.py +++ b/clients/client/python/test/test_create_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_invite_response.py b/clients/client/python/test/test_create_invite_response.py index c5e424ccf5e..bb541aeaffd 100644 --- a/clients/client/python/test/test_create_invite_response.py +++ b/clients/client/python/test/test_create_invite_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_json_web_key_set.py b/clients/client/python/test/test_create_json_web_key_set.py index 64c05744017..5c4ded002ba 100644 --- a/clients/client/python/test/test_create_json_web_key_set.py +++ b/clients/client/python/test/test_create_json_web_key_set.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_api_key_request.py b/clients/client/python/test/test_create_project_api_key_request.py index aa69112968b..0a718d21511 100644 --- a/clients/client/python/test/test_create_project_api_key_request.py +++ b/clients/client/python/test/test_create_project_api_key_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_body.py b/clients/client/python/test/test_create_project_body.py index 88c890688cf..82583aa6bdd 100644 --- a/clients/client/python/test/test_create_project_body.py +++ b/clients/client/python/test/test_create_project_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_branding.py b/clients/client/python/test/test_create_project_branding.py index 8efa0d6688c..c7e455781f7 100644 --- a/clients/client/python/test/test_create_project_branding.py +++ b/clients/client/python/test/test_create_project_branding.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_member_invite_body.py b/clients/client/python/test/test_create_project_member_invite_body.py index 7cbd9e1242b..05269310081 100644 --- a/clients/client/python/test/test_create_project_member_invite_body.py +++ b/clients/client/python/test/test_create_project_member_invite_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_member_invite_response.py b/clients/client/python/test/test_create_project_member_invite_response.py index 504160b41c2..36abdccfd3d 100644 --- a/clients/client/python/test/test_create_project_member_invite_response.py +++ b/clients/client/python/test/test_create_project_member_invite_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_recovery_code_for_identity_body.py b/clients/client/python/test/test_create_recovery_code_for_identity_body.py index 7ef0c748157..1e674ddf871 100644 --- a/clients/client/python/test/test_create_recovery_code_for_identity_body.py +++ b/clients/client/python/test/test_create_recovery_code_for_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_recovery_link_for_identity_body.py b/clients/client/python/test/test_create_recovery_link_for_identity_body.py index 20e232d3891..c7104636b23 100644 --- a/clients/client/python/test/test_create_recovery_link_for_identity_body.py +++ b/clients/client/python/test/test_create_recovery_link_for_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_relationship_body.py b/clients/client/python/test/test_create_relationship_body.py index 9b76ecb14f1..38704c07e97 100644 --- a/clients/client/python/test/test_create_relationship_body.py +++ b/clients/client/python/test/test_create_relationship_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_subscription_body.py b/clients/client/python/test/test_create_subscription_body.py index 3ff204ac05c..b2af2804820 100644 --- a/clients/client/python/test/test_create_subscription_body.py +++ b/clients/client/python/test/test_create_subscription_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_verifiable_credential_request_body.py b/clients/client/python/test/test_create_verifiable_credential_request_body.py index 4294baac57b..02902b0e016 100644 --- a/clients/client/python/test/test_create_verifiable_credential_request_body.py +++ b/clients/client/python/test/test_create_verifiable_credential_request_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_credential_supported_draft00.py b/clients/client/python/test/test_credential_supported_draft00.py index d7666532436..d3b27fef26b 100644 --- a/clients/client/python/test/test_credential_supported_draft00.py +++ b/clients/client/python/test/test_credential_supported_draft00.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_custom_domain.py b/clients/client/python/test/test_custom_domain.py index 0a88524a60c..647d98ac9db 100644 --- a/clients/client/python/test/test_custom_domain.py +++ b/clients/client/python/test/test_custom_domain.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_delete_my_sessions_count.py b/clients/client/python/test/test_delete_my_sessions_count.py index 7981317f6ef..6569e37de29 100644 --- a/clients/client/python/test/test_delete_my_sessions_count.py +++ b/clients/client/python/test/test_delete_my_sessions_count.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_email_template_data.py b/clients/client/python/test/test_email_template_data.py index 4479731e98b..dc4e2cb823b 100644 --- a/clients/client/python/test/test_email_template_data.py +++ b/clients/client/python/test/test_email_template_data.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_email_template_data_body.py b/clients/client/python/test/test_email_template_data_body.py index 15f949bb5ea..420de9c3240 100644 --- a/clients/client/python/test/test_email_template_data_body.py +++ b/clients/client/python/test/test_email_template_data_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_error_authenticator_assurance_level_not_satisfied.py b/clients/client/python/test/test_error_authenticator_assurance_level_not_satisfied.py index b177dddfa36..3d64f0b8575 100644 --- a/clients/client/python/test/test_error_authenticator_assurance_level_not_satisfied.py +++ b/clients/client/python/test/test_error_authenticator_assurance_level_not_satisfied.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_error_browser_location_change_required.py b/clients/client/python/test/test_error_browser_location_change_required.py index b506d364807..38335009622 100644 --- a/clients/client/python/test/test_error_browser_location_change_required.py +++ b/clients/client/python/test/test_error_browser_location_change_required.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_error_flow_replaced.py b/clients/client/python/test/test_error_flow_replaced.py index 9a3280f7cb0..6b62e5304bf 100644 --- a/clients/client/python/test/test_error_flow_replaced.py +++ b/clients/client/python/test/test_error_flow_replaced.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_error_generic.py b/clients/client/python/test/test_error_generic.py index 877c7ac19cc..7dc0828866e 100644 --- a/clients/client/python/test/test_error_generic.py +++ b/clients/client/python/test/test_error_generic.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_error_o_auth2.py b/clients/client/python/test/test_error_o_auth2.py index 29316bbbf4a..9e8c751fe2e 100644 --- a/clients/client/python/test/test_error_o_auth2.py +++ b/clients/client/python/test/test_error_o_auth2.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_expanded_permission_tree.py b/clients/client/python/test/test_expanded_permission_tree.py index 94ec0e3972f..2137e5cf6a9 100644 --- a/clients/client/python/test/test_expanded_permission_tree.py +++ b/clients/client/python/test/test_expanded_permission_tree.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_flow_error.py b/clients/client/python/test/test_flow_error.py index b6e0e1cbba6..3871a605726 100644 --- a/clients/client/python/test/test_flow_error.py +++ b/clients/client/python/test/test_flow_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_frontend_api.py b/clients/client/python/test/test_frontend_api.py index cae8698656a..c9b4e7e1e00 100644 --- a/clients/client/python/test/test_frontend_api.py +++ b/clients/client/python/test/test_frontend_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_generic_error.py b/clients/client/python/test/test_generic_error.py index a143d7b955a..501bcd46df2 100644 --- a/clients/client/python/test/test_generic_error.py +++ b/clients/client/python/test/test_generic_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_generic_error_content.py b/clients/client/python/test/test_generic_error_content.py index c92abb8c25b..96bd0554b44 100644 --- a/clients/client/python/test/test_generic_error_content.py +++ b/clients/client/python/test/test_generic_error_content.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_generic_usage.py b/clients/client/python/test/test_generic_usage.py index 83b61151a2e..b2700b26b01 100644 --- a/clients/client/python/test/test_generic_usage.py +++ b/clients/client/python/test/test_generic_usage.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_get_managed_identity_schema_location.py b/clients/client/python/test/test_get_managed_identity_schema_location.py index 42fc8abb892..d076f31391b 100644 --- a/clients/client/python/test/test_get_managed_identity_schema_location.py +++ b/clients/client/python/test/test_get_managed_identity_schema_location.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_get_project_metrics_response.py b/clients/client/python/test/test_get_project_metrics_response.py index b7bf07ac25c..ec140c0d98b 100644 --- a/clients/client/python/test/test_get_project_metrics_response.py +++ b/clients/client/python/test/test_get_project_metrics_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_get_version200_response.py b/clients/client/python/test/test_get_version200_response.py index 6eda4f0e377..56ae19efc27 100644 --- a/clients/client/python/test/test_get_version200_response.py +++ b/clients/client/python/test/test_get_version200_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_health_not_ready_status.py b/clients/client/python/test/test_health_not_ready_status.py index 5540fadb7cb..f8d9546f29e 100644 --- a/clients/client/python/test/test_health_not_ready_status.py +++ b/clients/client/python/test/test_health_not_ready_status.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_health_status.py b/clients/client/python/test/test_health_status.py index d2ecca6bf9d..be1344611d8 100644 --- a/clients/client/python/test/test_health_status.py +++ b/clients/client/python/test/test_health_status.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity.py b/clients/client/python/test/test_identity.py index 4b2b0c172fc..d15c57f5dcf 100644 --- a/clients/client/python/test/test_identity.py +++ b/clients/client/python/test/test_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_api.py b/clients/client/python/test/test_identity_api.py index 5508fd63f29..dbdd165c081 100644 --- a/clients/client/python/test/test_identity_api.py +++ b/clients/client/python/test/test_identity_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_credentials.py b/clients/client/python/test/test_identity_credentials.py index ca8288c903a..19081453e7f 100644 --- a/clients/client/python/test/test_identity_credentials.py +++ b/clients/client/python/test/test_identity_credentials.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_credentials_oidc.py b/clients/client/python/test/test_identity_credentials_oidc.py index c5f22ca2535..0623d4e1c59 100644 --- a/clients/client/python/test/test_identity_credentials_oidc.py +++ b/clients/client/python/test/test_identity_credentials_oidc.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_credentials_oidc_provider.py b/clients/client/python/test/test_identity_credentials_oidc_provider.py index e95d683ca3d..617dc4216fc 100644 --- a/clients/client/python/test/test_identity_credentials_oidc_provider.py +++ b/clients/client/python/test/test_identity_credentials_oidc_provider.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_credentials_password.py b/clients/client/python/test/test_identity_credentials_password.py index a3f288ea1dd..f1839f82e8c 100644 --- a/clients/client/python/test/test_identity_credentials_password.py +++ b/clients/client/python/test/test_identity_credentials_password.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_credentials_type.py b/clients/client/python/test/test_identity_credentials_type.py index 9a868b45705..f69e2775bf4 100644 --- a/clients/client/python/test/test_identity_credentials_type.py +++ b/clients/client/python/test/test_identity_credentials_type.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_patch.py b/clients/client/python/test/test_identity_patch.py index 543336cd570..dc504ee1daa 100644 --- a/clients/client/python/test/test_identity_patch.py +++ b/clients/client/python/test/test_identity_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_patch_response.py b/clients/client/python/test/test_identity_patch_response.py index d5d81e445c3..7da13c04f7b 100644 --- a/clients/client/python/test/test_identity_patch_response.py +++ b/clients/client/python/test/test_identity_patch_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_schema_container.py b/clients/client/python/test/test_identity_schema_container.py index a5aff44520b..4d3adc6ebea 100644 --- a/clients/client/python/test/test_identity_schema_container.py +++ b/clients/client/python/test/test_identity_schema_container.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_schema_preset.py b/clients/client/python/test/test_identity_schema_preset.py index 5ce3547a906..bef4c6de768 100644 --- a/clients/client/python/test/test_identity_schema_preset.py +++ b/clients/client/python/test/test_identity_schema_preset.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_schema_presets.py b/clients/client/python/test/test_identity_schema_presets.py index d4f175c18f9..5e8bdc7bff6 100644 --- a/clients/client/python/test/test_identity_schema_presets.py +++ b/clients/client/python/test/test_identity_schema_presets.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_schemas.py b/clients/client/python/test/test_identity_schemas.py index babd107b57a..d482e01be2e 100644 --- a/clients/client/python/test/test_identity_schemas.py +++ b/clients/client/python/test/test_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_state.py b/clients/client/python/test/test_identity_state.py index 7da9d969400..2b6a66777ce 100644 --- a/clients/client/python/test/test_identity_state.py +++ b/clients/client/python/test/test_identity_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_with_credentials.py b/clients/client/python/test/test_identity_with_credentials.py index 06b24762274..67df985cd2e 100644 --- a/clients/client/python/test/test_identity_with_credentials.py +++ b/clients/client/python/test/test_identity_with_credentials.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_with_credentials_oidc.py b/clients/client/python/test/test_identity_with_credentials_oidc.py index 0e28aaae78f..93f90d1d8a8 100644 --- a/clients/client/python/test/test_identity_with_credentials_oidc.py +++ b/clients/client/python/test/test_identity_with_credentials_oidc.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_with_credentials_oidc_config.py b/clients/client/python/test/test_identity_with_credentials_oidc_config.py index 0db5cef5f79..53af6be5481 100644 --- a/clients/client/python/test/test_identity_with_credentials_oidc_config.py +++ b/clients/client/python/test/test_identity_with_credentials_oidc_config.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_with_credentials_oidc_config_provider.py b/clients/client/python/test/test_identity_with_credentials_oidc_config_provider.py index 20ad3aff776..e4e3a2801c2 100644 --- a/clients/client/python/test/test_identity_with_credentials_oidc_config_provider.py +++ b/clients/client/python/test/test_identity_with_credentials_oidc_config_provider.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_with_credentials_password.py b/clients/client/python/test/test_identity_with_credentials_password.py index f4a40ddc824..d83d5cc2d50 100644 --- a/clients/client/python/test/test_identity_with_credentials_password.py +++ b/clients/client/python/test/test_identity_with_credentials_password.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_identity_with_credentials_password_config.py b/clients/client/python/test/test_identity_with_credentials_password_config.py index 0520f877315..cd52e0e851d 100644 --- a/clients/client/python/test/test_identity_with_credentials_password_config.py +++ b/clients/client/python/test/test_identity_with_credentials_password_config.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_internal_get_project_branding_body.py b/clients/client/python/test/test_internal_get_project_branding_body.py index 43579e57918..19b33aba58f 100644 --- a/clients/client/python/test/test_internal_get_project_branding_body.py +++ b/clients/client/python/test/test_internal_get_project_branding_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py b/clients/client/python/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py index 89774dd8449..236bd95da36 100644 --- a/clients/client/python/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +++ b/clients/client/python/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_internal_is_owner_for_project_by_slug_body.py b/clients/client/python/test/test_internal_is_owner_for_project_by_slug_body.py index dc994fbcec0..64ef9fdaa72 100644 --- a/clients/client/python/test/test_internal_is_owner_for_project_by_slug_body.py +++ b/clients/client/python/test/test_internal_is_owner_for_project_by_slug_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_internal_is_owner_for_project_by_slug_response.py b/clients/client/python/test/test_internal_is_owner_for_project_by_slug_response.py index 2df99622d86..3427c8c6df4 100644 --- a/clients/client/python/test/test_internal_is_owner_for_project_by_slug_response.py +++ b/clients/client/python/test/test_internal_is_owner_for_project_by_slug_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_internal_provision_mock_subscription.py b/clients/client/python/test/test_internal_provision_mock_subscription.py index 4b971c478c8..a66c1d7e09e 100644 --- a/clients/client/python/test/test_internal_provision_mock_subscription.py +++ b/clients/client/python/test/test_internal_provision_mock_subscription.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_introspected_o_auth2_token.py b/clients/client/python/test/test_introspected_o_auth2_token.py index 61f778a2e86..cb3ead7b7ef 100644 --- a/clients/client/python/test/test_introspected_o_auth2_token.py +++ b/clients/client/python/test/test_introspected_o_auth2_token.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_is_owner_for_project_by_slug.py b/clients/client/python/test/test_is_owner_for_project_by_slug.py index 80051b22b60..05167837203 100644 --- a/clients/client/python/test/test_is_owner_for_project_by_slug.py +++ b/clients/client/python/test/test_is_owner_for_project_by_slug.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_is_ready200_response.py b/clients/client/python/test/test_is_ready200_response.py index d69a4bf1a9b..d509a8914ff 100644 --- a/clients/client/python/test/test_is_ready200_response.py +++ b/clients/client/python/test/test_is_ready200_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_is_ready503_response.py b/clients/client/python/test/test_is_ready503_response.py index b5ba9a528fa..865662659b5 100644 --- a/clients/client/python/test/test_is_ready503_response.py +++ b/clients/client/python/test/test_is_ready503_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_json_patch.py b/clients/client/python/test/test_json_patch.py index ab85fd3e3b7..cdb80e4a1d9 100644 --- a/clients/client/python/test/test_json_patch.py +++ b/clients/client/python/test/test_json_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_json_patch_document.py b/clients/client/python/test/test_json_patch_document.py index 790d143290d..743d36d3267 100644 --- a/clients/client/python/test/test_json_patch_document.py +++ b/clients/client/python/test/test_json_patch_document.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_json_web_key.py b/clients/client/python/test/test_json_web_key.py index e145204d7f6..23d6e691dfc 100644 --- a/clients/client/python/test/test_json_web_key.py +++ b/clients/client/python/test/test_json_web_key.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_json_web_key_set.py b/clients/client/python/test/test_json_web_key_set.py index 8a114ef2bec..92d21a91aa5 100644 --- a/clients/client/python/test/test_json_web_key_set.py +++ b/clients/client/python/test/test_json_web_key_set.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_jwk_api.py b/clients/client/python/test/test_jwk_api.py index 6914701248c..327338aee31 100644 --- a/clients/client/python/test/test_jwk_api.py +++ b/clients/client/python/test/test_jwk_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_keto_namespace.py b/clients/client/python/test/test_keto_namespace.py index 2c7330e6a8a..b45318073a4 100644 --- a/clients/client/python/test/test_keto_namespace.py +++ b/clients/client/python/test/test_keto_namespace.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_keto_namespaces.py b/clients/client/python/test/test_keto_namespaces.py index 07b4d3bc716..4f5797fb650 100644 --- a/clients/client/python/test/test_keto_namespaces.py +++ b/clients/client/python/test/test_keto_namespaces.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_list_custom_domains.py b/clients/client/python/test/test_list_custom_domains.py index e4b43e3d5d2..be319031501 100644 --- a/clients/client/python/test/test_list_custom_domains.py +++ b/clients/client/python/test/test_list_custom_domains.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_login_flow.py b/clients/client/python/test/test_login_flow.py index f94e564b29a..a157889ff48 100644 --- a/clients/client/python/test/test_login_flow.py +++ b/clients/client/python/test/test_login_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_logout_flow.py b/clients/client/python/test/test_logout_flow.py index f5aec15cecd..e86c5d19df1 100644 --- a/clients/client/python/test/test_logout_flow.py +++ b/clients/client/python/test/test_logout_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_managed_identity_schema.py b/clients/client/python/test/test_managed_identity_schema.py index c35749dbebb..a37285d8f36 100644 --- a/clients/client/python/test/test_managed_identity_schema.py +++ b/clients/client/python/test/test_managed_identity_schema.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_managed_identity_schema_validation_result.py b/clients/client/python/test/test_managed_identity_schema_validation_result.py index c408322f090..fbfa943275f 100644 --- a/clients/client/python/test/test_managed_identity_schema_validation_result.py +++ b/clients/client/python/test/test_managed_identity_schema_validation_result.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_managed_identity_schemas.py b/clients/client/python/test/test_managed_identity_schemas.py index f6136fed8dd..a50dacd257d 100644 --- a/clients/client/python/test/test_managed_identity_schemas.py +++ b/clients/client/python/test/test_managed_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_member_invite.py b/clients/client/python/test/test_member_invite.py index 02993772d36..005f744ef32 100644 --- a/clients/client/python/test/test_member_invite.py +++ b/clients/client/python/test/test_member_invite.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_member_invites.py b/clients/client/python/test/test_member_invites.py index 22af9d0b993..08e68ee2c9a 100644 --- a/clients/client/python/test/test_member_invites.py +++ b/clients/client/python/test/test_member_invites.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_message.py b/clients/client/python/test/test_message.py index 230273068b2..beb885d3d0e 100644 --- a/clients/client/python/test/test_message.py +++ b/clients/client/python/test/test_message.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_message_dispatch.py b/clients/client/python/test/test_message_dispatch.py index 61f5f1e0d84..2e436195770 100644 --- a/clients/client/python/test/test_message_dispatch.py +++ b/clients/client/python/test/test_message_dispatch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_metadata_api.py b/clients/client/python/test/test_metadata_api.py index 35a921a96d5..9e76d9fdc91 100644 --- a/clients/client/python/test/test_metadata_api.py +++ b/clients/client/python/test/test_metadata_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_metrics_datapoint.py b/clients/client/python/test/test_metrics_datapoint.py index 1ae7656f500..3a5c9bb0e60 100644 --- a/clients/client/python/test/test_metrics_datapoint.py +++ b/clients/client/python/test/test_metrics_datapoint.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_namespace.py b/clients/client/python/test/test_namespace.py index 7cfcfe3ca7e..360648f0fd7 100644 --- a/clients/client/python/test/test_namespace.py +++ b/clients/client/python/test/test_namespace.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_needs_privileged_session_error.py b/clients/client/python/test/test_needs_privileged_session_error.py index b487b8dc347..32f47748221 100644 --- a/clients/client/python/test/test_needs_privileged_session_error.py +++ b/clients/client/python/test/test_needs_privileged_session_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_project.py b/clients/client/python/test/test_normalized_project.py index a810f433485..ee6af8f0917 100644 --- a/clients/client/python/test/test_normalized_project.py +++ b/clients/client/python/test/test_normalized_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_project_revision.py b/clients/client/python/test/test_normalized_project_revision.py index c467d6642e2..d7fb79a1eae 100644 --- a/clients/client/python/test/test_normalized_project_revision.py +++ b/clients/client/python/test/test_normalized_project_revision.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_project_revision_hook.py b/clients/client/python/test/test_normalized_project_revision_hook.py index 34bf9399ec5..3bec3884d27 100644 --- a/clients/client/python/test/test_normalized_project_revision_hook.py +++ b/clients/client/python/test/test_normalized_project_revision_hook.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_project_revision_identity_schema.py b/clients/client/python/test/test_normalized_project_revision_identity_schema.py index 0e14ce30df5..dd828554d8a 100644 --- a/clients/client/python/test/test_normalized_project_revision_identity_schema.py +++ b/clients/client/python/test/test_normalized_project_revision_identity_schema.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_project_revision_identity_schemas.py b/clients/client/python/test/test_normalized_project_revision_identity_schemas.py index f79b3c7d5cc..2a80a634a2a 100644 --- a/clients/client/python/test/test_normalized_project_revision_identity_schemas.py +++ b/clients/client/python/test/test_normalized_project_revision_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_project_revision_third_party_provider.py b/clients/client/python/test/test_normalized_project_revision_third_party_provider.py index b00b2d555ac..e199f40d8bc 100644 --- a/clients/client/python/test/test_normalized_project_revision_third_party_provider.py +++ b/clients/client/python/test/test_normalized_project_revision_third_party_provider.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_normalized_projects.py b/clients/client/python/test/test_normalized_projects.py index fe5f95bba05..976d1432bdc 100644 --- a/clients/client/python/test/test_normalized_projects.py +++ b/clients/client/python/test/test_normalized_projects.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_null_duration.py b/clients/client/python/test/test_null_duration.py index fbc5ce10caf..31880ef851c 100644 --- a/clients/client/python/test/test_null_duration.py +++ b/clients/client/python/test/test_null_duration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_api.py b/clients/client/python/test/test_o_auth2_api.py index 434283fcef5..c8cb79e9f9f 100644 --- a/clients/client/python/test/test_o_auth2_api.py +++ b/clients/client/python/test/test_o_auth2_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_client.py b/clients/client/python/test/test_o_auth2_client.py index 456cf54fd3a..e93bd76fe9b 100644 --- a/clients/client/python/test/test_o_auth2_client.py +++ b/clients/client/python/test/test_o_auth2_client.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_client_token_lifespans.py b/clients/client/python/test/test_o_auth2_client_token_lifespans.py index f8878e17467..ddfe1cf7815 100644 --- a/clients/client/python/test/test_o_auth2_client_token_lifespans.py +++ b/clients/client/python/test/test_o_auth2_client_token_lifespans.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_consent_request.py b/clients/client/python/test/test_o_auth2_consent_request.py index abbf69b4ff0..a124c963f6c 100644 --- a/clients/client/python/test/test_o_auth2_consent_request.py +++ b/clients/client/python/test/test_o_auth2_consent_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_consent_request_open_id_connect_context.py b/clients/client/python/test/test_o_auth2_consent_request_open_id_connect_context.py index 13723647ccc..09e7a259cc5 100644 --- a/clients/client/python/test/test_o_auth2_consent_request_open_id_connect_context.py +++ b/clients/client/python/test/test_o_auth2_consent_request_open_id_connect_context.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_consent_session.py b/clients/client/python/test/test_o_auth2_consent_session.py index 36f704e372f..99f148e2b37 100644 --- a/clients/client/python/test/test_o_auth2_consent_session.py +++ b/clients/client/python/test/test_o_auth2_consent_session.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_consent_session_expires_at.py b/clients/client/python/test/test_o_auth2_consent_session_expires_at.py index 9e494226be5..80d44817a04 100644 --- a/clients/client/python/test/test_o_auth2_consent_session_expires_at.py +++ b/clients/client/python/test/test_o_auth2_consent_session_expires_at.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_consent_sessions.py b/clients/client/python/test/test_o_auth2_consent_sessions.py index ae62b2d9c64..184904198e3 100644 --- a/clients/client/python/test/test_o_auth2_consent_sessions.py +++ b/clients/client/python/test/test_o_auth2_consent_sessions.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_login_request.py b/clients/client/python/test/test_o_auth2_login_request.py index 3dd31fb1e3b..ab90b3d6951 100644 --- a/clients/client/python/test/test_o_auth2_login_request.py +++ b/clients/client/python/test/test_o_auth2_login_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_logout_request.py b/clients/client/python/test/test_o_auth2_logout_request.py index 7d54d80e2ef..0305c6d673a 100644 --- a/clients/client/python/test/test_o_auth2_logout_request.py +++ b/clients/client/python/test/test_o_auth2_logout_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_redirect_to.py b/clients/client/python/test/test_o_auth2_redirect_to.py index 5a5f690e046..fb74dc6c879 100644 --- a/clients/client/python/test/test_o_auth2_redirect_to.py +++ b/clients/client/python/test/test_o_auth2_redirect_to.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_o_auth2_token_exchange.py b/clients/client/python/test/test_o_auth2_token_exchange.py index fedc4171e85..84834aee360 100644 --- a/clients/client/python/test/test_o_auth2_token_exchange.py +++ b/clients/client/python/test/test_o_auth2_token_exchange.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_oidc_api.py b/clients/client/python/test/test_oidc_api.py index dfbe305a047..376b478f343 100644 --- a/clients/client/python/test/test_oidc_api.py +++ b/clients/client/python/test/test_oidc_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_oidc_configuration.py b/clients/client/python/test/test_oidc_configuration.py index 27957cef1ce..7c10212f3d5 100644 --- a/clients/client/python/test/test_oidc_configuration.py +++ b/clients/client/python/test/test_oidc_configuration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_oidc_user_info.py b/clients/client/python/test/test_oidc_user_info.py index 29e847755b5..c3c6ec71232 100644 --- a/clients/client/python/test/test_oidc_user_info.py +++ b/clients/client/python/test/test_oidc_user_info.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_pagination.py b/clients/client/python/test/test_pagination.py index b4a5b1346c0..ee7b7983e53 100644 --- a/clients/client/python/test/test_pagination.py +++ b/clients/client/python/test/test_pagination.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_pagination_headers.py b/clients/client/python/test/test_pagination_headers.py index bce5fe9ff3e..64457d0e89f 100644 --- a/clients/client/python/test/test_pagination_headers.py +++ b/clients/client/python/test/test_pagination_headers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_parse_error.py b/clients/client/python/test/test_parse_error.py index de53c460314..0defb992d75 100644 --- a/clients/client/python/test/test_parse_error.py +++ b/clients/client/python/test/test_parse_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_patch_identities_body.py b/clients/client/python/test/test_patch_identities_body.py index 60952c5a434..3675eae11e5 100644 --- a/clients/client/python/test/test_patch_identities_body.py +++ b/clients/client/python/test/test_patch_identities_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_perform_native_logout_body.py b/clients/client/python/test/test_perform_native_logout_body.py index 473264ea8d9..e9084364e16 100644 --- a/clients/client/python/test/test_perform_native_logout_body.py +++ b/clients/client/python/test/test_perform_native_logout_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_permission_api.py b/clients/client/python/test/test_permission_api.py index 716fb66f84a..1c28177884c 100644 --- a/clients/client/python/test/test_permission_api.py +++ b/clients/client/python/test/test_permission_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_permissions_on_project.py b/clients/client/python/test/test_permissions_on_project.py index 22eaa14146f..3d1c748291a 100644 --- a/clients/client/python/test/test_permissions_on_project.py +++ b/clients/client/python/test/test_permissions_on_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_plan.py b/clients/client/python/test/test_plan.py index 1db0b1f361b..8bf11d2df34 100644 --- a/clients/client/python/test/test_plan.py +++ b/clients/client/python/test/test_plan.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_plan_details.py b/clients/client/python/test/test_plan_details.py index 1658afea322..f9209482fe7 100644 --- a/clients/client/python/test/test_plan_details.py +++ b/clients/client/python/test/test_plan_details.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_plans.py b/clients/client/python/test/test_plans.py index f8e9a5ac1d7..7b8c74fa44e 100644 --- a/clients/client/python/test/test_plans.py +++ b/clients/client/python/test/test_plans.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_post_check_permission_body.py b/clients/client/python/test/test_post_check_permission_body.py index 94373ba60af..1e090ad0644 100644 --- a/clients/client/python/test/test_post_check_permission_body.py +++ b/clients/client/python/test/test_post_check_permission_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_post_check_permission_or_error_body.py b/clients/client/python/test/test_post_check_permission_or_error_body.py index 6236e26f311..c3f4401c620 100644 --- a/clients/client/python/test/test_post_check_permission_or_error_body.py +++ b/clients/client/python/test/test_post_check_permission_or_error_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_pricing.py b/clients/client/python/test/test_pricing.py index 2328b75593f..cb6b035cb7b 100644 --- a/clients/client/python/test/test_pricing.py +++ b/clients/client/python/test/test_pricing.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project.py b/clients/client/python/test/test_project.py index 7346efe4fc8..f14247383c2 100644 --- a/clients/client/python/test/test_project.py +++ b/clients/client/python/test/test_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_api.py b/clients/client/python/test/test_project_api.py index 37df367e0fd..147407de9ef 100644 --- a/clients/client/python/test/test_project_api.py +++ b/clients/client/python/test/test_project_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_api_key.py b/clients/client/python/test/test_project_api_key.py index 298f2f12ba9..5d86dc1a439 100644 --- a/clients/client/python/test/test_project_api_key.py +++ b/clients/client/python/test/test_project_api_key.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_api_keys.py b/clients/client/python/test/test_project_api_keys.py index d523167cdcf..92da45f71a4 100644 --- a/clients/client/python/test/test_project_api_keys.py +++ b/clients/client/python/test/test_project_api_keys.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_branding.py b/clients/client/python/test/test_project_branding.py index 9220c8e46cb..926c8701a8a 100644 --- a/clients/client/python/test/test_project_branding.py +++ b/clients/client/python/test/test_project_branding.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_branding_colors.py b/clients/client/python/test/test_project_branding_colors.py index 3ddea1d2059..536b28fec12 100644 --- a/clients/client/python/test/test_project_branding_colors.py +++ b/clients/client/python/test/test_project_branding_colors.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_branding_theme.py b/clients/client/python/test/test_project_branding_theme.py index 3edd337fac0..8416163a9fa 100644 --- a/clients/client/python/test/test_project_branding_theme.py +++ b/clients/client/python/test/test_project_branding_theme.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_branding_themes.py b/clients/client/python/test/test_project_branding_themes.py index 04a0a3c677b..a05964cb12d 100644 --- a/clients/client/python/test/test_project_branding_themes.py +++ b/clients/client/python/test/test_project_branding_themes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_host.py b/clients/client/python/test/test_project_host.py index 8fbe780ec65..70fa366cf8b 100644 --- a/clients/client/python/test/test_project_host.py +++ b/clients/client/python/test/test_project_host.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_member.py b/clients/client/python/test/test_project_member.py index 5dacd1c4ec9..2c321de9037 100644 --- a/clients/client/python/test/test_project_member.py +++ b/clients/client/python/test/test_project_member.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_members.py b/clients/client/python/test/test_project_members.py index 158464e984d..2d027e415d2 100644 --- a/clients/client/python/test/test_project_members.py +++ b/clients/client/python/test/test_project_members.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_metadata.py b/clients/client/python/test/test_project_metadata.py index 8feb6c9575c..e2c1e658e17 100644 --- a/clients/client/python/test/test_project_metadata.py +++ b/clients/client/python/test/test_project_metadata.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_metadata_list.py b/clients/client/python/test/test_project_metadata_list.py index 2b6d7690b2f..341aaca26e9 100644 --- a/clients/client/python/test/test_project_metadata_list.py +++ b/clients/client/python/test/test_project_metadata_list.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_revision_hooks.py b/clients/client/python/test/test_project_revision_hooks.py index e572233766e..38087ec6a88 100644 --- a/clients/client/python/test/test_project_revision_hooks.py +++ b/clients/client/python/test/test_project_revision_hooks.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_revision_identity_schemas.py b/clients/client/python/test/test_project_revision_identity_schemas.py index d58951ef2a4..428c8f1a906 100644 --- a/clients/client/python/test/test_project_revision_identity_schemas.py +++ b/clients/client/python/test/test_project_revision_identity_schemas.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_revision_third_party_login_providers.py b/clients/client/python/test/test_project_revision_third_party_login_providers.py index f1e1c0ad587..2632b6c5548 100644 --- a/clients/client/python/test/test_project_revision_third_party_login_providers.py +++ b/clients/client/python/test/test_project_revision_third_party_login_providers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_revisions.py b/clients/client/python/test/test_project_revisions.py index 6dabfb4624b..8ed54e97b91 100644 --- a/clients/client/python/test/test_project_revisions.py +++ b/clients/client/python/test/test_project_revisions.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_service_identity.py b/clients/client/python/test/test_project_service_identity.py index 08af8de18a0..290d39bfbe5 100644 --- a/clients/client/python/test/test_project_service_identity.py +++ b/clients/client/python/test/test_project_service_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_service_o_auth2.py b/clients/client/python/test/test_project_service_o_auth2.py index 40740be6ada..d48e687c6ec 100644 --- a/clients/client/python/test/test_project_service_o_auth2.py +++ b/clients/client/python/test/test_project_service_o_auth2.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_service_permission.py b/clients/client/python/test/test_project_service_permission.py index 8b8410cf235..0274bf9837f 100644 --- a/clients/client/python/test/test_project_service_permission.py +++ b/clients/client/python/test/test_project_service_permission.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_services.py b/clients/client/python/test/test_project_services.py index 5d66adb8907..16c08ff8e14 100644 --- a/clients/client/python/test/test_project_services.py +++ b/clients/client/python/test/test_project_services.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_projects.py b/clients/client/python/test/test_projects.py index 4f44d04ea26..ecd57d7d215 100644 --- a/clients/client/python/test/test_projects.py +++ b/clients/client/python/test/test_projects.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_quota_usage.py b/clients/client/python/test/test_quota_usage.py index a6b9f7f2e86..dfa875d3215 100644 --- a/clients/client/python/test/test_quota_usage.py +++ b/clients/client/python/test/test_quota_usage.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_recovery_code_for_identity.py b/clients/client/python/test/test_recovery_code_for_identity.py index 260e9ab9140..9ea995dabcf 100644 --- a/clients/client/python/test/test_recovery_code_for_identity.py +++ b/clients/client/python/test/test_recovery_code_for_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_recovery_flow.py b/clients/client/python/test/test_recovery_flow.py index d9121cecf6e..3b72dc264b2 100644 --- a/clients/client/python/test/test_recovery_flow.py +++ b/clients/client/python/test/test_recovery_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_recovery_flow_state.py b/clients/client/python/test/test_recovery_flow_state.py index 531bc09aab1..be5df527d58 100644 --- a/clients/client/python/test/test_recovery_flow_state.py +++ b/clients/client/python/test/test_recovery_flow_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_recovery_identity_address.py b/clients/client/python/test/test_recovery_identity_address.py index 9ef9b1d5aa4..68f8d7301bf 100644 --- a/clients/client/python/test/test_recovery_identity_address.py +++ b/clients/client/python/test/test_recovery_identity_address.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_recovery_link_for_identity.py b/clients/client/python/test/test_recovery_link_for_identity.py index 5a732f42e21..8b48266b16e 100644 --- a/clients/client/python/test/test_recovery_link_for_identity.py +++ b/clients/client/python/test/test_recovery_link_for_identity.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_registration_flow.py b/clients/client/python/test/test_registration_flow.py index 27ec2aa58f2..a058ebe0b3b 100644 --- a/clients/client/python/test/test_registration_flow.py +++ b/clients/client/python/test/test_registration_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_reject_o_auth2_request.py b/clients/client/python/test/test_reject_o_auth2_request.py index 822e56ef65d..09a9e884f41 100644 --- a/clients/client/python/test/test_reject_o_auth2_request.py +++ b/clients/client/python/test/test_reject_o_auth2_request.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_relation_query.py b/clients/client/python/test/test_relation_query.py index a13219e37d1..b9787e196cf 100644 --- a/clients/client/python/test/test_relation_query.py +++ b/clients/client/python/test/test_relation_query.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_relationship.py b/clients/client/python/test/test_relationship.py index 8bb6fdf8813..8327b2fb72f 100644 --- a/clients/client/python/test/test_relationship.py +++ b/clients/client/python/test/test_relationship.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_relationship_api.py b/clients/client/python/test/test_relationship_api.py index 537bc96155c..a13af75420e 100644 --- a/clients/client/python/test/test_relationship_api.py +++ b/clients/client/python/test/test_relationship_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_relationship_namespaces.py b/clients/client/python/test/test_relationship_namespaces.py index 29bb92b895e..9a2a1829555 100644 --- a/clients/client/python/test/test_relationship_namespaces.py +++ b/clients/client/python/test/test_relationship_namespaces.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_relationship_patch.py b/clients/client/python/test/test_relationship_patch.py index 33c497ab1ec..d1da78fadc6 100644 --- a/clients/client/python/test/test_relationship_patch.py +++ b/clients/client/python/test/test_relationship_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_relationships.py b/clients/client/python/test/test_relationships.py index c14b1f2eef6..f2c1b97e88e 100644 --- a/clients/client/python/test/test_relationships.py +++ b/clients/client/python/test/test_relationships.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_rfc6749_error_json.py b/clients/client/python/test/test_rfc6749_error_json.py index 23aa3c8ea6d..1f04749bf3b 100644 --- a/clients/client/python/test/test_rfc6749_error_json.py +++ b/clients/client/python/test/test_rfc6749_error_json.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_schema_patch.py b/clients/client/python/test/test_schema_patch.py index 58946f661a8..ae61ab06e7f 100644 --- a/clients/client/python/test/test_schema_patch.py +++ b/clients/client/python/test/test_schema_patch.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_self_service_flow_expired_error.py b/clients/client/python/test/test_self_service_flow_expired_error.py index edd4601a50c..33a5df1a003 100644 --- a/clients/client/python/test/test_self_service_flow_expired_error.py +++ b/clients/client/python/test/test_self_service_flow_expired_error.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_session.py b/clients/client/python/test/test_session.py index 691d2ce29c0..18a7d9f82c2 100644 --- a/clients/client/python/test/test_session.py +++ b/clients/client/python/test/test_session.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_session_authentication_method.py b/clients/client/python/test/test_session_authentication_method.py index e925900f7f1..d0e491eb48e 100644 --- a/clients/client/python/test/test_session_authentication_method.py +++ b/clients/client/python/test/test_session_authentication_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_session_authentication_methods.py b/clients/client/python/test/test_session_authentication_methods.py index dcf69cddb52..cd05d8cd6c3 100644 --- a/clients/client/python/test/test_session_authentication_methods.py +++ b/clients/client/python/test/test_session_authentication_methods.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_session_device.py b/clients/client/python/test/test_session_device.py index d88ab3f6ab7..eff6cff95aa 100644 --- a/clients/client/python/test/test_session_device.py +++ b/clients/client/python/test/test_session_device.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_set_active_project_in_console_body.py b/clients/client/python/test/test_set_active_project_in_console_body.py index 6264ad0a647..53a193e433d 100644 --- a/clients/client/python/test/test_set_active_project_in_console_body.py +++ b/clients/client/python/test/test_set_active_project_in_console_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_set_custom_domain_body.py b/clients/client/python/test/test_set_custom_domain_body.py index 150fec18cc7..62228279f8a 100644 --- a/clients/client/python/test/test_set_custom_domain_body.py +++ b/clients/client/python/test/test_set_custom_domain_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_set_project.py b/clients/client/python/test/test_set_project.py index f4a13b00bc7..64745645db0 100644 --- a/clients/client/python/test/test_set_project.py +++ b/clients/client/python/test/test_set_project.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_set_project_branding_theme_body.py b/clients/client/python/test/test_set_project_branding_theme_body.py index 51c925934ab..a89220f3886 100644 --- a/clients/client/python/test/test_set_project_branding_theme_body.py +++ b/clients/client/python/test/test_set_project_branding_theme_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_settings_flow.py b/clients/client/python/test/test_settings_flow.py index c5ea43848d3..c9fc1a1f461 100644 --- a/clients/client/python/test/test_settings_flow.py +++ b/clients/client/python/test/test_settings_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_settings_flow_state.py b/clients/client/python/test/test_settings_flow_state.py index e69798a58b3..564aea5a2bc 100644 --- a/clients/client/python/test/test_settings_flow_state.py +++ b/clients/client/python/test/test_settings_flow_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_source_position.py b/clients/client/python/test/test_source_position.py index 4ee546c2797..334f70151b8 100644 --- a/clients/client/python/test/test_source_position.py +++ b/clients/client/python/test/test_source_position.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_string_slice_json_format.py b/clients/client/python/test/test_string_slice_json_format.py index 15b1536cafc..3e089e5851d 100644 --- a/clients/client/python/test/test_string_slice_json_format.py +++ b/clients/client/python/test/test_string_slice_json_format.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_stripe_customer.py b/clients/client/python/test/test_stripe_customer.py index 1a2574675fa..31da0022501 100644 --- a/clients/client/python/test/test_stripe_customer.py +++ b/clients/client/python/test/test_stripe_customer.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_subject_set.py b/clients/client/python/test/test_subject_set.py index ec0d889135f..eb9ab5fdb51 100644 --- a/clients/client/python/test/test_subject_set.py +++ b/clients/client/python/test/test_subject_set.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_subscription.py b/clients/client/python/test/test_subscription.py index f8bbe93cb3e..ac39096fbcd 100644 --- a/clients/client/python/test/test_subscription.py +++ b/clients/client/python/test/test_subscription.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_successful_code_exchange_response.py b/clients/client/python/test/test_successful_code_exchange_response.py index 995d9cd6f34..9fe15bc058a 100644 --- a/clients/client/python/test/test_successful_code_exchange_response.py +++ b/clients/client/python/test/test_successful_code_exchange_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_successful_native_login.py b/clients/client/python/test/test_successful_native_login.py index 811260c0668..50e5157c94e 100644 --- a/clients/client/python/test/test_successful_native_login.py +++ b/clients/client/python/test/test_successful_native_login.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_successful_native_registration.py b/clients/client/python/test/test_successful_native_registration.py index b54e237a7f6..500f58b1347 100644 --- a/clients/client/python/test/test_successful_native_registration.py +++ b/clients/client/python/test/test_successful_native_registration.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_successful_project_update.py b/clients/client/python/test/test_successful_project_update.py index 5db5224d9e9..6d65048cef9 100644 --- a/clients/client/python/test/test_successful_project_update.py +++ b/clients/client/python/test/test_successful_project_update.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_token_pagination.py b/clients/client/python/test/test_token_pagination.py index 8fb346adb41..99f98d6f887 100644 --- a/clients/client/python/test/test_token_pagination.py +++ b/clients/client/python/test/test_token_pagination.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_token_pagination_headers.py b/clients/client/python/test/test_token_pagination_headers.py index 72d9d645dd8..76db407fe4d 100644 --- a/clients/client/python/test/test_token_pagination_headers.py +++ b/clients/client/python/test/test_token_pagination_headers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_token_pagination_request_parameters.py b/clients/client/python/test/test_token_pagination_request_parameters.py index 6f9fa6b944f..c29ac26502e 100644 --- a/clients/client/python/test/test_token_pagination_request_parameters.py +++ b/clients/client/python/test/test_token_pagination_request_parameters.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_token_pagination_response_headers.py b/clients/client/python/test/test_token_pagination_response_headers.py index bb4c86c4dc2..dc69624b7a7 100644 --- a/clients/client/python/test/test_token_pagination_response_headers.py +++ b/clients/client/python/test/test_token_pagination_response_headers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_trust_o_auth2_jwt_grant_issuer.py b/clients/client/python/test/test_trust_o_auth2_jwt_grant_issuer.py index fab0eba5366..0c1e389f3ee 100644 --- a/clients/client/python/test/test_trust_o_auth2_jwt_grant_issuer.py +++ b/clients/client/python/test/test_trust_o_auth2_jwt_grant_issuer.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuer.py b/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuer.py index 94391e75678..6749cf2bee8 100644 --- a/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuer.py +++ b/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuer.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuers.py b/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuers.py index 0427ed1016d..77f99058991 100644 --- a/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuers.py +++ b/clients/client/python/test/test_trusted_o_auth2_jwt_grant_issuers.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_trusted_o_auth2_jwt_grant_json_web_key.py b/clients/client/python/test/test_trusted_o_auth2_jwt_grant_json_web_key.py index c22f75f8fdd..d0402dd150c 100644 --- a/clients/client/python/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +++ b/clients/client/python/test/test_trusted_o_auth2_jwt_grant_json_web_key.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_container.py b/clients/client/python/test/test_ui_container.py index 5875b0b5c8e..76183d29a6e 100644 --- a/clients/client/python/test/test_ui_container.py +++ b/clients/client/python/test/test_ui_container.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node.py b/clients/client/python/test/test_ui_node.py index 582f8cbae75..4db7a8c5d47 100644 --- a/clients/client/python/test/test_ui_node.py +++ b/clients/client/python/test/test_ui_node.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_anchor_attributes.py b/clients/client/python/test/test_ui_node_anchor_attributes.py index ef8cff00a7e..96741632bcb 100644 --- a/clients/client/python/test/test_ui_node_anchor_attributes.py +++ b/clients/client/python/test/test_ui_node_anchor_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_attributes.py b/clients/client/python/test/test_ui_node_attributes.py index 07af4a499e3..a2415e9a8d6 100644 --- a/clients/client/python/test/test_ui_node_attributes.py +++ b/clients/client/python/test/test_ui_node_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_image_attributes.py b/clients/client/python/test/test_ui_node_image_attributes.py index d1b54b3959b..2b05e362f22 100644 --- a/clients/client/python/test/test_ui_node_image_attributes.py +++ b/clients/client/python/test/test_ui_node_image_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_input_attributes.py b/clients/client/python/test/test_ui_node_input_attributes.py index 28727602281..3929c18520e 100644 --- a/clients/client/python/test/test_ui_node_input_attributes.py +++ b/clients/client/python/test/test_ui_node_input_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_meta.py b/clients/client/python/test/test_ui_node_meta.py index 10321372748..5569626e9fc 100644 --- a/clients/client/python/test/test_ui_node_meta.py +++ b/clients/client/python/test/test_ui_node_meta.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_script_attributes.py b/clients/client/python/test/test_ui_node_script_attributes.py index 541a6a6c32b..8061878653d 100644 --- a/clients/client/python/test/test_ui_node_script_attributes.py +++ b/clients/client/python/test/test_ui_node_script_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_node_text_attributes.py b/clients/client/python/test/test_ui_node_text_attributes.py index def54ebc8db..c43f294b5e1 100644 --- a/clients/client/python/test/test_ui_node_text_attributes.py +++ b/clients/client/python/test/test_ui_node_text_attributes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_nodes.py b/clients/client/python/test/test_ui_nodes.py index c15d151043a..141b8eee8fb 100644 --- a/clients/client/python/test/test_ui_nodes.py +++ b/clients/client/python/test/test_ui_nodes.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_text.py b/clients/client/python/test/test_ui_text.py index fae7eba00ff..a3a1ab0b4bb 100644 --- a/clients/client/python/test/test_ui_text.py +++ b/clients/client/python/test/test_ui_text.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_ui_texts.py b/clients/client/python/test/test_ui_texts.py index da6292688c3..bb579c30146 100644 --- a/clients/client/python/test/test_ui_texts.py +++ b/clients/client/python/test/test_ui_texts.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_identity_body.py b/clients/client/python/test/test_update_identity_body.py index 7e9fa93f29f..b2ff938f7f5 100644 --- a/clients/client/python/test/test_update_identity_body.py +++ b/clients/client/python/test/test_update_identity_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_login_flow_body.py b/clients/client/python/test/test_update_login_flow_body.py index fb3299396ae..4719e504358 100644 --- a/clients/client/python/test/test_update_login_flow_body.py +++ b/clients/client/python/test/test_update_login_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_login_flow_with_lookup_secret_method.py b/clients/client/python/test/test_update_login_flow_with_lookup_secret_method.py index 1fffe02aa47..f0bc49b449f 100644 --- a/clients/client/python/test/test_update_login_flow_with_lookup_secret_method.py +++ b/clients/client/python/test/test_update_login_flow_with_lookup_secret_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_login_flow_with_oidc_method.py b/clients/client/python/test/test_update_login_flow_with_oidc_method.py index 97a7c8dbc01..b91e0a982d0 100644 --- a/clients/client/python/test/test_update_login_flow_with_oidc_method.py +++ b/clients/client/python/test/test_update_login_flow_with_oidc_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_login_flow_with_password_method.py b/clients/client/python/test/test_update_login_flow_with_password_method.py index 93af97e00a9..915084cc441 100644 --- a/clients/client/python/test/test_update_login_flow_with_password_method.py +++ b/clients/client/python/test/test_update_login_flow_with_password_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_login_flow_with_totp_method.py b/clients/client/python/test/test_update_login_flow_with_totp_method.py index 747702123d4..21d046b6018 100644 --- a/clients/client/python/test/test_update_login_flow_with_totp_method.py +++ b/clients/client/python/test/test_update_login_flow_with_totp_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_login_flow_with_web_authn_method.py b/clients/client/python/test/test_update_login_flow_with_web_authn_method.py index 4625abd7ac5..ccbdf6fca2e 100644 --- a/clients/client/python/test/test_update_login_flow_with_web_authn_method.py +++ b/clients/client/python/test/test_update_login_flow_with_web_authn_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_recovery_flow_body.py b/clients/client/python/test/test_update_recovery_flow_body.py index ef6a5b5421e..4fda861f1ab 100644 --- a/clients/client/python/test/test_update_recovery_flow_body.py +++ b/clients/client/python/test/test_update_recovery_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_recovery_flow_with_code_method.py b/clients/client/python/test/test_update_recovery_flow_with_code_method.py index b9852267251..78b6e02c32e 100644 --- a/clients/client/python/test/test_update_recovery_flow_with_code_method.py +++ b/clients/client/python/test/test_update_recovery_flow_with_code_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_recovery_flow_with_link_method.py b/clients/client/python/test/test_update_recovery_flow_with_link_method.py index 5b8a88b0190..62d90789c64 100644 --- a/clients/client/python/test/test_update_recovery_flow_with_link_method.py +++ b/clients/client/python/test/test_update_recovery_flow_with_link_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_registration_flow_body.py b/clients/client/python/test/test_update_registration_flow_body.py index 21f20399526..9efc19c6629 100644 --- a/clients/client/python/test/test_update_registration_flow_body.py +++ b/clients/client/python/test/test_update_registration_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_registration_flow_with_oidc_method.py b/clients/client/python/test/test_update_registration_flow_with_oidc_method.py index 60b7f3f6851..8a0bd885403 100644 --- a/clients/client/python/test/test_update_registration_flow_with_oidc_method.py +++ b/clients/client/python/test/test_update_registration_flow_with_oidc_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_registration_flow_with_password_method.py b/clients/client/python/test/test_update_registration_flow_with_password_method.py index 4ee116d4892..4a7b6168128 100644 --- a/clients/client/python/test/test_update_registration_flow_with_password_method.py +++ b/clients/client/python/test/test_update_registration_flow_with_password_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_registration_flow_with_web_authn_method.py b/clients/client/python/test/test_update_registration_flow_with_web_authn_method.py index c1266b335d7..73f288f3b33 100644 --- a/clients/client/python/test/test_update_registration_flow_with_web_authn_method.py +++ b/clients/client/python/test/test_update_registration_flow_with_web_authn_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_body.py b/clients/client/python/test/test_update_settings_flow_body.py index 692d21ec4b6..eb6c5dc3f9e 100644 --- a/clients/client/python/test/test_update_settings_flow_body.py +++ b/clients/client/python/test/test_update_settings_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_with_lookup_method.py b/clients/client/python/test/test_update_settings_flow_with_lookup_method.py index 20aff22c94d..1d3af3b5904 100644 --- a/clients/client/python/test/test_update_settings_flow_with_lookup_method.py +++ b/clients/client/python/test/test_update_settings_flow_with_lookup_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_with_oidc_method.py b/clients/client/python/test/test_update_settings_flow_with_oidc_method.py index 911eaee2771..bedb9d6fe00 100644 --- a/clients/client/python/test/test_update_settings_flow_with_oidc_method.py +++ b/clients/client/python/test/test_update_settings_flow_with_oidc_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_with_password_method.py b/clients/client/python/test/test_update_settings_flow_with_password_method.py index 946e32eba1d..e3c1bd53dd2 100644 --- a/clients/client/python/test/test_update_settings_flow_with_password_method.py +++ b/clients/client/python/test/test_update_settings_flow_with_password_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_with_profile_method.py b/clients/client/python/test/test_update_settings_flow_with_profile_method.py index 3239dd504a2..21174ce917e 100644 --- a/clients/client/python/test/test_update_settings_flow_with_profile_method.py +++ b/clients/client/python/test/test_update_settings_flow_with_profile_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_with_totp_method.py b/clients/client/python/test/test_update_settings_flow_with_totp_method.py index 081acf601df..f9ada22428d 100644 --- a/clients/client/python/test/test_update_settings_flow_with_totp_method.py +++ b/clients/client/python/test/test_update_settings_flow_with_totp_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_settings_flow_with_web_authn_method.py b/clients/client/python/test/test_update_settings_flow_with_web_authn_method.py index 43ba0204d08..ccdaf116602 100644 --- a/clients/client/python/test/test_update_settings_flow_with_web_authn_method.py +++ b/clients/client/python/test/test_update_settings_flow_with_web_authn_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_subscription_body.py b/clients/client/python/test/test_update_subscription_body.py index 40ef08f05ea..19d79f663e6 100644 --- a/clients/client/python/test/test_update_subscription_body.py +++ b/clients/client/python/test/test_update_subscription_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_verification_flow_body.py b/clients/client/python/test/test_update_verification_flow_body.py index 5c2201388ec..0acf4d48a14 100644 --- a/clients/client/python/test/test_update_verification_flow_body.py +++ b/clients/client/python/test/test_update_verification_flow_body.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_verification_flow_with_code_method.py b/clients/client/python/test/test_update_verification_flow_with_code_method.py index c9a4b068298..a3a5aa6c693 100644 --- a/clients/client/python/test/test_update_verification_flow_with_code_method.py +++ b/clients/client/python/test/test_update_verification_flow_with_code_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_update_verification_flow_with_link_method.py b/clients/client/python/test/test_update_verification_flow_with_link_method.py index 57946db56b5..8097f7965b2 100644 --- a/clients/client/python/test/test_update_verification_flow_with_link_method.py +++ b/clients/client/python/test/test_update_verification_flow_with_link_method.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_usage.py b/clients/client/python/test/test_usage.py index c69eadecf5a..426fd1f64dc 100644 --- a/clients/client/python/test/test_usage.py +++ b/clients/client/python/test/test_usage.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_verifiable_credential_priming_response.py b/clients/client/python/test/test_verifiable_credential_priming_response.py index f958e911813..ecdf6e0af8e 100644 --- a/clients/client/python/test/test_verifiable_credential_priming_response.py +++ b/clients/client/python/test/test_verifiable_credential_priming_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_verifiable_credential_proof.py b/clients/client/python/test/test_verifiable_credential_proof.py index 4f9dc95305b..3920c5d298e 100644 --- a/clients/client/python/test/test_verifiable_credential_proof.py +++ b/clients/client/python/test/test_verifiable_credential_proof.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_verifiable_credential_response.py b/clients/client/python/test/test_verifiable_credential_response.py index 45609481a40..0b12fcecef9 100644 --- a/clients/client/python/test/test_verifiable_credential_response.py +++ b/clients/client/python/test/test_verifiable_credential_response.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_verifiable_identity_address.py b/clients/client/python/test/test_verifiable_identity_address.py index 1a28b01465a..b653f23ca40 100644 --- a/clients/client/python/test/test_verifiable_identity_address.py +++ b/clients/client/python/test/test_verifiable_identity_address.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_verification_flow.py b/clients/client/python/test/test_verification_flow.py index 350569f5e16..89471e37739 100644 --- a/clients/client/python/test/test_verification_flow.py +++ b/clients/client/python/test/test_verification_flow.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_verification_flow_state.py b/clients/client/python/test/test_verification_flow_state.py index e70a88d87f7..041de17f060 100644 --- a/clients/client/python/test/test_verification_flow_state.py +++ b/clients/client/python/test/test_verification_flow_state.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_version.py b/clients/client/python/test/test_version.py index 44d9b9848a0..6f2865818bf 100644 --- a/clients/client/python/test/test_version.py +++ b/clients/client/python/test/test_version.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_warning.py b/clients/client/python/test/test_warning.py index 74867776163..15042392c30 100644 --- a/clients/client/python/test/test_warning.py +++ b/clients/client/python/test/test_warning.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_wellknown_api.py b/clients/client/python/test/test_wellknown_api.py index 1950d087322..25d1ef8031a 100644 --- a/clients/client/python/test/test_wellknown_api.py +++ b/clients/client/python/test/test_wellknown_api.py @@ -3,7 +3,7 @@ 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. # noqa: E501 - The version of the OpenAPI document: v1.1.44 + The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/ruby/Gemfile.lock b/clients/client/ruby/Gemfile.lock index 1dcfebbd587..c0a49675026 100644 --- a/clients/client/ruby/Gemfile.lock +++ b/clients/client/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ory-client (1.1.44) + ory-client (1.1.45) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/clients/client/ruby/README.md b/clients/client/ruby/README.md index 8441c37ab17..e550e0d65ad 100644 --- a/clients/client/ruby/README.md +++ b/clients/client/ruby/README.md @@ -8,8 +8,8 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers. This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: v1.1.44 -- Package version: v1.1.44 +- API version: v1.1.45 +- Package version: v1.1.45 - Build package: org.openapitools.codegen.languages.RubyClientCodegen ## Installation @@ -25,16 +25,16 @@ gem build ory-client.gemspec Then either install the gem locally: ```shell -gem install ./ory-client-v1.1.44.gem +gem install ./ory-client-v1.1.45.gem ``` -(for development, run `gem install --dev ./ory-client-v1.1.44.gem` to install the development dependencies) +(for development, run `gem install --dev ./ory-client-v1.1.45.gem` to install the development dependencies) or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/). Finally add this to the Gemfile: - gem 'ory-client', '~> v1.1.44' + gem 'ory-client', '~> v1.1.45' ### Install from Git diff --git a/clients/client/ruby/docs/NormalizedProjectRevision.md b/clients/client/ruby/docs/NormalizedProjectRevision.md index 347fe5c58ad..78bbafb92e1 100644 --- a/clients/client/ruby/docs/NormalizedProjectRevision.md +++ b/clients/client/ruby/docs/NormalizedProjectRevision.md @@ -54,6 +54,7 @@ | **kratos_courier_smtp_from_address** | **String** | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] | | **kratos_courier_smtp_from_name** | **String** | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] | | **kratos_courier_smtp_headers** | **Object** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] | +| **kratos_courier_smtp_local_name** | **String** | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] | | **kratos_courier_templates_recovery_code_invalid_email_body_html** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] | | **kratos_courier_templates_recovery_code_invalid_email_body_plaintext** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] | | **kratos_courier_templates_recovery_code_invalid_email_subject** | **String** | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] | @@ -216,6 +217,7 @@ instance = OryClient::NormalizedProjectRevision.new( kratos_courier_smtp_from_address: null, kratos_courier_smtp_from_name: null, kratos_courier_smtp_headers: null, + kratos_courier_smtp_local_name: null, kratos_courier_templates_recovery_code_invalid_email_body_html: null, kratos_courier_templates_recovery_code_invalid_email_body_plaintext: null, kratos_courier_templates_recovery_code_invalid_email_subject: null, diff --git a/clients/client/ruby/lib/ory-client.rb b/clients/client/ruby/lib/ory-client.rb index 47cb278b309..63da36538aa 100644 --- a/clients/client/ruby/lib/ory-client.rb +++ b/clients/client/ruby/lib/ory-client.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/courier_api.rb b/clients/client/ruby/lib/ory-client/api/courier_api.rb index 5d91e6a6e78..bbd959a1135 100644 --- a/clients/client/ruby/lib/ory-client/api/courier_api.rb +++ b/clients/client/ruby/lib/ory-client/api/courier_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/frontend_api.rb b/clients/client/ruby/lib/ory-client/api/frontend_api.rb index bf1d690141f..c8d670cd54d 100644 --- a/clients/client/ruby/lib/ory-client/api/frontend_api.rb +++ b/clients/client/ruby/lib/ory-client/api/frontend_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/identity_api.rb b/clients/client/ruby/lib/ory-client/api/identity_api.rb index 0fb683e29c0..779f3a81ca8 100644 --- a/clients/client/ruby/lib/ory-client/api/identity_api.rb +++ b/clients/client/ruby/lib/ory-client/api/identity_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/jwk_api.rb b/clients/client/ruby/lib/ory-client/api/jwk_api.rb index 8c4a0351d81..1ebb156a275 100644 --- a/clients/client/ruby/lib/ory-client/api/jwk_api.rb +++ b/clients/client/ruby/lib/ory-client/api/jwk_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/metadata_api.rb b/clients/client/ruby/lib/ory-client/api/metadata_api.rb index 780bef2c907..22d9dc532d9 100644 --- a/clients/client/ruby/lib/ory-client/api/metadata_api.rb +++ b/clients/client/ruby/lib/ory-client/api/metadata_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/o_auth2_api.rb b/clients/client/ruby/lib/ory-client/api/o_auth2_api.rb index 91c67938bf0..d6483135167 100644 --- a/clients/client/ruby/lib/ory-client/api/o_auth2_api.rb +++ b/clients/client/ruby/lib/ory-client/api/o_auth2_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/oidc_api.rb b/clients/client/ruby/lib/ory-client/api/oidc_api.rb index 325afee95bd..2f5f05a872b 100644 --- a/clients/client/ruby/lib/ory-client/api/oidc_api.rb +++ b/clients/client/ruby/lib/ory-client/api/oidc_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/permission_api.rb b/clients/client/ruby/lib/ory-client/api/permission_api.rb index a6412c8b870..ea00eb5d713 100644 --- a/clients/client/ruby/lib/ory-client/api/permission_api.rb +++ b/clients/client/ruby/lib/ory-client/api/permission_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/project_api.rb b/clients/client/ruby/lib/ory-client/api/project_api.rb index 59f0dca523c..83921fb60d8 100644 --- a/clients/client/ruby/lib/ory-client/api/project_api.rb +++ b/clients/client/ruby/lib/ory-client/api/project_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/relationship_api.rb b/clients/client/ruby/lib/ory-client/api/relationship_api.rb index 33bf50c215b..135b5bdf8d7 100644 --- a/clients/client/ruby/lib/ory-client/api/relationship_api.rb +++ b/clients/client/ruby/lib/ory-client/api/relationship_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api/wellknown_api.rb b/clients/client/ruby/lib/ory-client/api/wellknown_api.rb index 090f2c4814f..cd3f97955f8 100644 --- a/clients/client/ruby/lib/ory-client/api/wellknown_api.rb +++ b/clients/client/ruby/lib/ory-client/api/wellknown_api.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api_client.rb b/clients/client/ruby/lib/ory-client/api_client.rb index 0d87724ead1..04139c23d25 100644 --- a/clients/client/ruby/lib/ory-client/api_client.rb +++ b/clients/client/ruby/lib/ory-client/api_client.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/api_error.rb b/clients/client/ruby/lib/ory-client/api_error.rb index 550c4da20a7..e58c7f6c526 100644 --- a/clients/client/ruby/lib/ory-client/api_error.rb +++ b/clients/client/ruby/lib/ory-client/api_error.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/configuration.rb b/clients/client/ruby/lib/ory-client/configuration.rb index b94dec60f86..28def6c4e75 100644 --- a/clients/client/ruby/lib/ory-client/configuration.rb +++ b/clients/client/ruby/lib/ory-client/configuration.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request.rb b/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request.rb index 7796ba9d01e..1803df7ec52 100644 --- a/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request.rb +++ b/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request_session.rb b/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request_session.rb index a773e1dad8b..78be849394b 100644 --- a/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request_session.rb +++ b/clients/client/ruby/lib/ory-client/models/accept_o_auth2_consent_request_session.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/accept_o_auth2_login_request.rb b/clients/client/ruby/lib/ory-client/models/accept_o_auth2_login_request.rb index 4ae4dc182b4..5af04539a31 100644 --- a/clients/client/ruby/lib/ory-client/models/accept_o_auth2_login_request.rb +++ b/clients/client/ruby/lib/ory-client/models/accept_o_auth2_login_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/active_project_in_console.rb b/clients/client/ruby/lib/ory-client/models/active_project_in_console.rb index 52a7979fd77..33c58e91cf4 100644 --- a/clients/client/ruby/lib/ory-client/models/active_project_in_console.rb +++ b/clients/client/ruby/lib/ory-client/models/active_project_in_console.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/authenticator_assurance_level.rb b/clients/client/ruby/lib/ory-client/models/authenticator_assurance_level.rb index 0f5bdfb87db..a0c20e64d54 100644 --- a/clients/client/ruby/lib/ory-client/models/authenticator_assurance_level.rb +++ b/clients/client/ruby/lib/ory-client/models/authenticator_assurance_level.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/batch_patch_identities_response.rb b/clients/client/ruby/lib/ory-client/models/batch_patch_identities_response.rb index b1617429cf5..1f01884a720 100644 --- a/clients/client/ruby/lib/ory-client/models/batch_patch_identities_response.rb +++ b/clients/client/ruby/lib/ory-client/models/batch_patch_identities_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/check_opl_syntax_result.rb b/clients/client/ruby/lib/ory-client/models/check_opl_syntax_result.rb index ae183b7a31e..32144c372a9 100644 --- a/clients/client/ruby/lib/ory-client/models/check_opl_syntax_result.rb +++ b/clients/client/ruby/lib/ory-client/models/check_opl_syntax_result.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/check_permission_result.rb b/clients/client/ruby/lib/ory-client/models/check_permission_result.rb index e22dbce117f..df43256f4ab 100644 --- a/clients/client/ruby/lib/ory-client/models/check_permission_result.rb +++ b/clients/client/ruby/lib/ory-client/models/check_permission_result.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/cloud_account.rb b/clients/client/ruby/lib/ory-client/models/cloud_account.rb index 914e96d73f0..cd37788c08f 100644 --- a/clients/client/ruby/lib/ory-client/models/cloud_account.rb +++ b/clients/client/ruby/lib/ory-client/models/cloud_account.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/continue_with.rb b/clients/client/ruby/lib/ory-client/models/continue_with.rb index 4236405b2e5..23aa697ad9f 100644 --- a/clients/client/ruby/lib/ory-client/models/continue_with.rb +++ b/clients/client/ruby/lib/ory-client/models/continue_with.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/continue_with_set_ory_session_token.rb b/clients/client/ruby/lib/ory-client/models/continue_with_set_ory_session_token.rb index c9788e33a2c..76bf2ecf111 100644 --- a/clients/client/ruby/lib/ory-client/models/continue_with_set_ory_session_token.rb +++ b/clients/client/ruby/lib/ory-client/models/continue_with_set_ory_session_token.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui.rb b/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui.rb index 790f568a647..36c54683cb1 100644 --- a/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui.rb +++ b/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui_flow.rb b/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui_flow.rb index 493714e6dd6..b69e963c8bb 100644 --- a/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/continue_with_verification_ui_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/cors.rb b/clients/client/ruby/lib/ory-client/models/cors.rb index ddd99db1d7f..cc6a3cdccf4 100644 --- a/clients/client/ruby/lib/ory-client/models/cors.rb +++ b/clients/client/ruby/lib/ory-client/models/cors.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/courier_message_status.rb b/clients/client/ruby/lib/ory-client/models/courier_message_status.rb index 6d07b249ffd..15247496653 100644 --- a/clients/client/ruby/lib/ory-client/models/courier_message_status.rb +++ b/clients/client/ruby/lib/ory-client/models/courier_message_status.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/courier_message_type.rb b/clients/client/ruby/lib/ory-client/models/courier_message_type.rb index 3b40e47c92f..21ec8235655 100644 --- a/clients/client/ruby/lib/ory-client/models/courier_message_type.rb +++ b/clients/client/ruby/lib/ory-client/models/courier_message_type.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_custom_domain_body.rb b/clients/client/ruby/lib/ory-client/models/create_custom_domain_body.rb index 4d33123ee4b..aa7879ce8e6 100644 --- a/clients/client/ruby/lib/ory-client/models/create_custom_domain_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_custom_domain_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_identity_body.rb b/clients/client/ruby/lib/ory-client/models/create_identity_body.rb index edf3c0993e4..8fbeb7ed74e 100644 --- a/clients/client/ruby/lib/ory-client/models/create_identity_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_identity_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_invite_response.rb b/clients/client/ruby/lib/ory-client/models/create_invite_response.rb index b3d75d518e5..c8b20a888b8 100644 --- a/clients/client/ruby/lib/ory-client/models/create_invite_response.rb +++ b/clients/client/ruby/lib/ory-client/models/create_invite_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_json_web_key_set.rb b/clients/client/ruby/lib/ory-client/models/create_json_web_key_set.rb index bbe78bf1805..387751fbe15 100644 --- a/clients/client/ruby/lib/ory-client/models/create_json_web_key_set.rb +++ b/clients/client/ruby/lib/ory-client/models/create_json_web_key_set.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_project_api_key_request.rb b/clients/client/ruby/lib/ory-client/models/create_project_api_key_request.rb index 0d3ab381b8e..8e9c1fcf53e 100644 --- a/clients/client/ruby/lib/ory-client/models/create_project_api_key_request.rb +++ b/clients/client/ruby/lib/ory-client/models/create_project_api_key_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_project_body.rb b/clients/client/ruby/lib/ory-client/models/create_project_body.rb index e751cb0ec9c..f008864757d 100644 --- a/clients/client/ruby/lib/ory-client/models/create_project_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_project_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_project_branding.rb b/clients/client/ruby/lib/ory-client/models/create_project_branding.rb index 3bd6a974ca3..017287d6302 100644 --- a/clients/client/ruby/lib/ory-client/models/create_project_branding.rb +++ b/clients/client/ruby/lib/ory-client/models/create_project_branding.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_project_member_invite_body.rb b/clients/client/ruby/lib/ory-client/models/create_project_member_invite_body.rb index 41b6d6146c5..ae4fcb67dc5 100644 --- a/clients/client/ruby/lib/ory-client/models/create_project_member_invite_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_project_member_invite_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_recovery_code_for_identity_body.rb b/clients/client/ruby/lib/ory-client/models/create_recovery_code_for_identity_body.rb index ac78d50b3bf..c13a09df2cb 100644 --- a/clients/client/ruby/lib/ory-client/models/create_recovery_code_for_identity_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_recovery_code_for_identity_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_recovery_link_for_identity_body.rb b/clients/client/ruby/lib/ory-client/models/create_recovery_link_for_identity_body.rb index 982f592d117..c322904d7f3 100644 --- a/clients/client/ruby/lib/ory-client/models/create_recovery_link_for_identity_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_recovery_link_for_identity_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_relationship_body.rb b/clients/client/ruby/lib/ory-client/models/create_relationship_body.rb index e007da7a0cc..87d24751607 100644 --- a/clients/client/ruby/lib/ory-client/models/create_relationship_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_relationship_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_subscription_body.rb b/clients/client/ruby/lib/ory-client/models/create_subscription_body.rb index 6ff596ce089..78b8cf3a391 100644 --- a/clients/client/ruby/lib/ory-client/models/create_subscription_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_subscription_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/create_verifiable_credential_request_body.rb b/clients/client/ruby/lib/ory-client/models/create_verifiable_credential_request_body.rb index d577443c6fd..6308951a200 100644 --- a/clients/client/ruby/lib/ory-client/models/create_verifiable_credential_request_body.rb +++ b/clients/client/ruby/lib/ory-client/models/create_verifiable_credential_request_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/credential_supported_draft00.rb b/clients/client/ruby/lib/ory-client/models/credential_supported_draft00.rb index 378048a5a01..cc42e798a5c 100644 --- a/clients/client/ruby/lib/ory-client/models/credential_supported_draft00.rb +++ b/clients/client/ruby/lib/ory-client/models/credential_supported_draft00.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/custom_domain.rb b/clients/client/ruby/lib/ory-client/models/custom_domain.rb index 519034fc486..59571501ba2 100644 --- a/clients/client/ruby/lib/ory-client/models/custom_domain.rb +++ b/clients/client/ruby/lib/ory-client/models/custom_domain.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/delete_my_sessions_count.rb b/clients/client/ruby/lib/ory-client/models/delete_my_sessions_count.rb index a43e901bb8f..bedc926553d 100644 --- a/clients/client/ruby/lib/ory-client/models/delete_my_sessions_count.rb +++ b/clients/client/ruby/lib/ory-client/models/delete_my_sessions_count.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/email_template_data.rb b/clients/client/ruby/lib/ory-client/models/email_template_data.rb index 18c2a9befe4..9908e43c59e 100644 --- a/clients/client/ruby/lib/ory-client/models/email_template_data.rb +++ b/clients/client/ruby/lib/ory-client/models/email_template_data.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/email_template_data_body.rb b/clients/client/ruby/lib/ory-client/models/email_template_data_body.rb index 268bf856f27..ec200d1c36f 100644 --- a/clients/client/ruby/lib/ory-client/models/email_template_data_body.rb +++ b/clients/client/ruby/lib/ory-client/models/email_template_data_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/error_authenticator_assurance_level_not_satisfied.rb b/clients/client/ruby/lib/ory-client/models/error_authenticator_assurance_level_not_satisfied.rb index 92c9822bcff..d25d92b0a84 100644 --- a/clients/client/ruby/lib/ory-client/models/error_authenticator_assurance_level_not_satisfied.rb +++ b/clients/client/ruby/lib/ory-client/models/error_authenticator_assurance_level_not_satisfied.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/error_browser_location_change_required.rb b/clients/client/ruby/lib/ory-client/models/error_browser_location_change_required.rb index f22b4f6af43..c825c831b35 100644 --- a/clients/client/ruby/lib/ory-client/models/error_browser_location_change_required.rb +++ b/clients/client/ruby/lib/ory-client/models/error_browser_location_change_required.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/error_flow_replaced.rb b/clients/client/ruby/lib/ory-client/models/error_flow_replaced.rb index 113137062ef..31e612fdec5 100644 --- a/clients/client/ruby/lib/ory-client/models/error_flow_replaced.rb +++ b/clients/client/ruby/lib/ory-client/models/error_flow_replaced.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/error_generic.rb b/clients/client/ruby/lib/ory-client/models/error_generic.rb index d1df8643557..cf6065e4d5e 100644 --- a/clients/client/ruby/lib/ory-client/models/error_generic.rb +++ b/clients/client/ruby/lib/ory-client/models/error_generic.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/error_o_auth2.rb b/clients/client/ruby/lib/ory-client/models/error_o_auth2.rb index d86006a4291..cae2fd21719 100644 --- a/clients/client/ruby/lib/ory-client/models/error_o_auth2.rb +++ b/clients/client/ruby/lib/ory-client/models/error_o_auth2.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/expanded_permission_tree.rb b/clients/client/ruby/lib/ory-client/models/expanded_permission_tree.rb index 161444f2f1f..9ba8e7936c8 100644 --- a/clients/client/ruby/lib/ory-client/models/expanded_permission_tree.rb +++ b/clients/client/ruby/lib/ory-client/models/expanded_permission_tree.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/flow_error.rb b/clients/client/ruby/lib/ory-client/models/flow_error.rb index fd1da8c15b5..cee6c0fa7ba 100644 --- a/clients/client/ruby/lib/ory-client/models/flow_error.rb +++ b/clients/client/ruby/lib/ory-client/models/flow_error.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/generic_error.rb b/clients/client/ruby/lib/ory-client/models/generic_error.rb index db78ee47fe1..970c72f8ca1 100644 --- a/clients/client/ruby/lib/ory-client/models/generic_error.rb +++ b/clients/client/ruby/lib/ory-client/models/generic_error.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/generic_error_content.rb b/clients/client/ruby/lib/ory-client/models/generic_error_content.rb index 46cf65c3bec..863fbdcd935 100644 --- a/clients/client/ruby/lib/ory-client/models/generic_error_content.rb +++ b/clients/client/ruby/lib/ory-client/models/generic_error_content.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/generic_usage.rb b/clients/client/ruby/lib/ory-client/models/generic_usage.rb index 2d864e9c9c4..4b26044d2a6 100644 --- a/clients/client/ruby/lib/ory-client/models/generic_usage.rb +++ b/clients/client/ruby/lib/ory-client/models/generic_usage.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/get_managed_identity_schema_location.rb b/clients/client/ruby/lib/ory-client/models/get_managed_identity_schema_location.rb index 32d055d1970..a5583aff914 100644 --- a/clients/client/ruby/lib/ory-client/models/get_managed_identity_schema_location.rb +++ b/clients/client/ruby/lib/ory-client/models/get_managed_identity_schema_location.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/get_project_metrics_response.rb b/clients/client/ruby/lib/ory-client/models/get_project_metrics_response.rb index cd5e6bfb339..8b4f27aebf8 100644 --- a/clients/client/ruby/lib/ory-client/models/get_project_metrics_response.rb +++ b/clients/client/ruby/lib/ory-client/models/get_project_metrics_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/get_version200_response.rb b/clients/client/ruby/lib/ory-client/models/get_version200_response.rb index 5aee21a9195..87a604c8e96 100644 --- a/clients/client/ruby/lib/ory-client/models/get_version200_response.rb +++ b/clients/client/ruby/lib/ory-client/models/get_version200_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/health_not_ready_status.rb b/clients/client/ruby/lib/ory-client/models/health_not_ready_status.rb index 9faf39f365c..9c53ba9b349 100644 --- a/clients/client/ruby/lib/ory-client/models/health_not_ready_status.rb +++ b/clients/client/ruby/lib/ory-client/models/health_not_ready_status.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/health_status.rb b/clients/client/ruby/lib/ory-client/models/health_status.rb index 31fbbb7e017..d5709a7469f 100644 --- a/clients/client/ruby/lib/ory-client/models/health_status.rb +++ b/clients/client/ruby/lib/ory-client/models/health_status.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity.rb b/clients/client/ruby/lib/ory-client/models/identity.rb index ee26599292b..afccdfdac9d 100644 --- a/clients/client/ruby/lib/ory-client/models/identity.rb +++ b/clients/client/ruby/lib/ory-client/models/identity.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_credentials.rb b/clients/client/ruby/lib/ory-client/models/identity_credentials.rb index a206c53d7b1..6be1c66dd6e 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_credentials.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_credentials.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc.rb b/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc.rb index 4de46df222c..e0a0fbae8b1 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc_provider.rb b/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc_provider.rb index 3308aee173f..1e620a8ae8a 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc_provider.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_credentials_oidc_provider.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_credentials_password.rb b/clients/client/ruby/lib/ory-client/models/identity_credentials_password.rb index 49276f7303b..026278cffdd 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_credentials_password.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_credentials_password.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_credentials_type.rb b/clients/client/ruby/lib/ory-client/models/identity_credentials_type.rb index 6df0a923f8d..a771ba0e081 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_credentials_type.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_credentials_type.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_patch.rb b/clients/client/ruby/lib/ory-client/models/identity_patch.rb index ab68bbfd4b2..9b484179248 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_patch.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_patch.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_patch_response.rb b/clients/client/ruby/lib/ory-client/models/identity_patch_response.rb index dd9aa591ae4..99533124131 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_patch_response.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_patch_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_schema_container.rb b/clients/client/ruby/lib/ory-client/models/identity_schema_container.rb index 40bbbe96ac7..e4661608612 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_schema_container.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_schema_container.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_schema_preset.rb b/clients/client/ruby/lib/ory-client/models/identity_schema_preset.rb index e048a3d196b..664926bddb1 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_schema_preset.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_schema_preset.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_state.rb b/clients/client/ruby/lib/ory-client/models/identity_state.rb index 88bd8827246..b56a9f9048f 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_state.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_state.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_with_credentials.rb b/clients/client/ruby/lib/ory-client/models/identity_with_credentials.rb index b9a2605445a..d80c9cf0eea 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_with_credentials.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_with_credentials.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc.rb b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc.rb index 8ae1dd8ce28..c12e0d5105f 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config.rb b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config.rb index 12fb7cdeecd..c8199386332 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config_provider.rb b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config_provider.rb index 0ae2acb96fb..34a32c1b37c 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config_provider.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_oidc_config_provider.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password.rb b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password.rb index 34b867132f4..4e635d3eed4 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password_config.rb b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password_config.rb index 441d58873ac..b653798fd4e 100644 --- a/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password_config.rb +++ b/clients/client/ruby/lib/ory-client/models/identity_with_credentials_password_config.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/internal_get_project_branding_body.rb b/clients/client/ruby/lib/ory-client/models/internal_get_project_branding_body.rb index 110abfae180..4ac7d51c9e8 100644 --- a/clients/client/ruby/lib/ory-client/models/internal_get_project_branding_body.rb +++ b/clients/client/ruby/lib/ory-client/models/internal_get_project_branding_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/internal_is_ax_welcome_screen_enabled_for_project_body.rb b/clients/client/ruby/lib/ory-client/models/internal_is_ax_welcome_screen_enabled_for_project_body.rb index c8c7b89c150..099d6d4c0be 100644 --- a/clients/client/ruby/lib/ory-client/models/internal_is_ax_welcome_screen_enabled_for_project_body.rb +++ b/clients/client/ruby/lib/ory-client/models/internal_is_ax_welcome_screen_enabled_for_project_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_body.rb b/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_body.rb index ae1d6c7d653..3efcc29fee5 100644 --- a/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_body.rb +++ b/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_response.rb b/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_response.rb index ff79780c6fc..f7ce16c957e 100644 --- a/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_response.rb +++ b/clients/client/ruby/lib/ory-client/models/internal_is_owner_for_project_by_slug_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/internal_provision_mock_subscription.rb b/clients/client/ruby/lib/ory-client/models/internal_provision_mock_subscription.rb index 25ecf317f93..ec07eef2c10 100644 --- a/clients/client/ruby/lib/ory-client/models/internal_provision_mock_subscription.rb +++ b/clients/client/ruby/lib/ory-client/models/internal_provision_mock_subscription.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/introspected_o_auth2_token.rb b/clients/client/ruby/lib/ory-client/models/introspected_o_auth2_token.rb index 43b4a8be45d..af3ce9b2d59 100644 --- a/clients/client/ruby/lib/ory-client/models/introspected_o_auth2_token.rb +++ b/clients/client/ruby/lib/ory-client/models/introspected_o_auth2_token.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/is_owner_for_project_by_slug.rb b/clients/client/ruby/lib/ory-client/models/is_owner_for_project_by_slug.rb index 02b773540d2..6f10a7744ad 100644 --- a/clients/client/ruby/lib/ory-client/models/is_owner_for_project_by_slug.rb +++ b/clients/client/ruby/lib/ory-client/models/is_owner_for_project_by_slug.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/is_ready200_response.rb b/clients/client/ruby/lib/ory-client/models/is_ready200_response.rb index a2457019811..89ea678e6d7 100644 --- a/clients/client/ruby/lib/ory-client/models/is_ready200_response.rb +++ b/clients/client/ruby/lib/ory-client/models/is_ready200_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/is_ready503_response.rb b/clients/client/ruby/lib/ory-client/models/is_ready503_response.rb index 4516f656fba..a4d6f3b7cdd 100644 --- a/clients/client/ruby/lib/ory-client/models/is_ready503_response.rb +++ b/clients/client/ruby/lib/ory-client/models/is_ready503_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/json_patch.rb b/clients/client/ruby/lib/ory-client/models/json_patch.rb index 39c13ff2e30..a43cf24b9eb 100644 --- a/clients/client/ruby/lib/ory-client/models/json_patch.rb +++ b/clients/client/ruby/lib/ory-client/models/json_patch.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/json_web_key.rb b/clients/client/ruby/lib/ory-client/models/json_web_key.rb index 7009f494867..fbb7841c8e9 100644 --- a/clients/client/ruby/lib/ory-client/models/json_web_key.rb +++ b/clients/client/ruby/lib/ory-client/models/json_web_key.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/json_web_key_set.rb b/clients/client/ruby/lib/ory-client/models/json_web_key_set.rb index fd1d2e9f236..a0a80972679 100644 --- a/clients/client/ruby/lib/ory-client/models/json_web_key_set.rb +++ b/clients/client/ruby/lib/ory-client/models/json_web_key_set.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/keto_namespace.rb b/clients/client/ruby/lib/ory-client/models/keto_namespace.rb index 8e251c68431..efbca47f066 100644 --- a/clients/client/ruby/lib/ory-client/models/keto_namespace.rb +++ b/clients/client/ruby/lib/ory-client/models/keto_namespace.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/login_flow.rb b/clients/client/ruby/lib/ory-client/models/login_flow.rb index 21885f6ba9a..1d4da5b41e9 100644 --- a/clients/client/ruby/lib/ory-client/models/login_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/login_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/logout_flow.rb b/clients/client/ruby/lib/ory-client/models/logout_flow.rb index 66e728582e0..ac34b58e6cc 100644 --- a/clients/client/ruby/lib/ory-client/models/logout_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/logout_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/managed_identity_schema.rb b/clients/client/ruby/lib/ory-client/models/managed_identity_schema.rb index 134a93b322f..aaae96574d7 100644 --- a/clients/client/ruby/lib/ory-client/models/managed_identity_schema.rb +++ b/clients/client/ruby/lib/ory-client/models/managed_identity_schema.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/managed_identity_schema_validation_result.rb b/clients/client/ruby/lib/ory-client/models/managed_identity_schema_validation_result.rb index bbfaaabe216..9922a329e38 100644 --- a/clients/client/ruby/lib/ory-client/models/managed_identity_schema_validation_result.rb +++ b/clients/client/ruby/lib/ory-client/models/managed_identity_schema_validation_result.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/member_invite.rb b/clients/client/ruby/lib/ory-client/models/member_invite.rb index cb0f9bbd36f..0cbbf2d9cbb 100644 --- a/clients/client/ruby/lib/ory-client/models/member_invite.rb +++ b/clients/client/ruby/lib/ory-client/models/member_invite.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/message.rb b/clients/client/ruby/lib/ory-client/models/message.rb index 0e505617805..96c56bf5a62 100644 --- a/clients/client/ruby/lib/ory-client/models/message.rb +++ b/clients/client/ruby/lib/ory-client/models/message.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/message_dispatch.rb b/clients/client/ruby/lib/ory-client/models/message_dispatch.rb index afd945b5cbc..356b8e169b2 100644 --- a/clients/client/ruby/lib/ory-client/models/message_dispatch.rb +++ b/clients/client/ruby/lib/ory-client/models/message_dispatch.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/metrics_datapoint.rb b/clients/client/ruby/lib/ory-client/models/metrics_datapoint.rb index d8bbbc04236..d3f9a7811e4 100644 --- a/clients/client/ruby/lib/ory-client/models/metrics_datapoint.rb +++ b/clients/client/ruby/lib/ory-client/models/metrics_datapoint.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/namespace.rb b/clients/client/ruby/lib/ory-client/models/namespace.rb index f32bdc64b54..8660a4bee89 100644 --- a/clients/client/ruby/lib/ory-client/models/namespace.rb +++ b/clients/client/ruby/lib/ory-client/models/namespace.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/needs_privileged_session_error.rb b/clients/client/ruby/lib/ory-client/models/needs_privileged_session_error.rb index 8f32fa7b355..80398d03c46 100644 --- a/clients/client/ruby/lib/ory-client/models/needs_privileged_session_error.rb +++ b/clients/client/ruby/lib/ory-client/models/needs_privileged_session_error.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/normalized_project.rb b/clients/client/ruby/lib/ory-client/models/normalized_project.rb index 716939dffaf..3421cb4877d 100644 --- a/clients/client/ruby/lib/ory-client/models/normalized_project.rb +++ b/clients/client/ruby/lib/ory-client/models/normalized_project.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/normalized_project_revision.rb b/clients/client/ruby/lib/ory-client/models/normalized_project_revision.rb index 0a525172cd1..b72f1bda9d2 100644 --- a/clients/client/ruby/lib/ory-client/models/normalized_project_revision.rb +++ b/clients/client/ruby/lib/ory-client/models/normalized_project_revision.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -155,6 +155,9 @@ class NormalizedProjectRevision # NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- attr_accessor :kratos_courier_smtp_headers + # Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + attr_accessor :kratos_courier_smtp_local_name + # Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. attr_accessor :kratos_courier_templates_recovery_code_invalid_email_body_html @@ -535,6 +538,7 @@ def self.attribute_map :'kratos_courier_smtp_from_address' => :'kratos_courier_smtp_from_address', :'kratos_courier_smtp_from_name' => :'kratos_courier_smtp_from_name', :'kratos_courier_smtp_headers' => :'kratos_courier_smtp_headers', + :'kratos_courier_smtp_local_name' => :'kratos_courier_smtp_local_name', :'kratos_courier_templates_recovery_code_invalid_email_body_html' => :'kratos_courier_templates_recovery_code_invalid_email_body_html', :'kratos_courier_templates_recovery_code_invalid_email_body_plaintext' => :'kratos_courier_templates_recovery_code_invalid_email_body_plaintext', :'kratos_courier_templates_recovery_code_invalid_email_subject' => :'kratos_courier_templates_recovery_code_invalid_email_subject', @@ -701,6 +705,7 @@ def self.openapi_types :'kratos_courier_smtp_from_address' => :'String', :'kratos_courier_smtp_from_name' => :'String', :'kratos_courier_smtp_headers' => :'Object', + :'kratos_courier_smtp_local_name' => :'String', :'kratos_courier_templates_recovery_code_invalid_email_body_html' => :'String', :'kratos_courier_templates_recovery_code_invalid_email_body_plaintext' => :'String', :'kratos_courier_templates_recovery_code_invalid_email_subject' => :'String', @@ -1067,6 +1072,10 @@ def initialize(attributes = {}) self.kratos_courier_smtp_headers = attributes[:'kratos_courier_smtp_headers'] end + if attributes.key?(:'kratos_courier_smtp_local_name') + self.kratos_courier_smtp_local_name = attributes[:'kratos_courier_smtp_local_name'] + end + if attributes.key?(:'kratos_courier_templates_recovery_code_invalid_email_body_html') self.kratos_courier_templates_recovery_code_invalid_email_body_html = attributes[:'kratos_courier_templates_recovery_code_invalid_email_body_html'] end @@ -1731,6 +1740,7 @@ def ==(o) kratos_courier_smtp_from_address == o.kratos_courier_smtp_from_address && kratos_courier_smtp_from_name == o.kratos_courier_smtp_from_name && kratos_courier_smtp_headers == o.kratos_courier_smtp_headers && + kratos_courier_smtp_local_name == o.kratos_courier_smtp_local_name && kratos_courier_templates_recovery_code_invalid_email_body_html == o.kratos_courier_templates_recovery_code_invalid_email_body_html && kratos_courier_templates_recovery_code_invalid_email_body_plaintext == o.kratos_courier_templates_recovery_code_invalid_email_body_plaintext && kratos_courier_templates_recovery_code_invalid_email_subject == o.kratos_courier_templates_recovery_code_invalid_email_subject && @@ -1847,7 +1857,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [created_at, disable_account_experience_welcome_screen, hydra_oauth2_allowed_top_level_claims, hydra_oauth2_client_credentials_default_grant_allowed_scope, hydra_oauth2_exclude_not_before_claim, hydra_oauth2_grant_jwt_iat_optional, hydra_oauth2_grant_jwt_jti_optional, hydra_oauth2_grant_jwt_max_ttl, hydra_oauth2_pkce_enforced, hydra_oauth2_pkce_enforced_for_public_clients, hydra_oauth2_refresh_token_hook, hydra_oauth2_token_hook, hydra_oidc_dynamic_client_registration_default_scope, hydra_oidc_dynamic_client_registration_enabled, hydra_oidc_subject_identifiers_pairwise_salt, hydra_oidc_subject_identifiers_supported_types, hydra_secrets_cookie, hydra_secrets_system, hydra_serve_cookies_same_site_legacy_workaround, hydra_serve_cookies_same_site_mode, hydra_strategies_access_token, hydra_strategies_scope, hydra_ttl_access_token, hydra_ttl_auth_code, hydra_ttl_id_token, hydra_ttl_login_consent_request, hydra_ttl_refresh_token, hydra_urls_consent, hydra_urls_error, hydra_urls_login, hydra_urls_logout, hydra_urls_post_logout_redirect, hydra_urls_self_issuer, hydra_webfinger_jwks_broadcast_keys, hydra_webfinger_oidc_discovery_auth_url, hydra_webfinger_oidc_discovery_client_registration_url, hydra_webfinger_oidc_discovery_jwks_url, hydra_webfinger_oidc_discovery_supported_claims, hydra_webfinger_oidc_discovery_supported_scope, hydra_webfinger_oidc_discovery_token_url, hydra_webfinger_oidc_discovery_userinfo_url, id, keto_namespace_configuration, keto_namespaces, keto_read_max_depth, kratos_cookies_same_site, kratos_courier_smtp_connection_uri, kratos_courier_smtp_from_address, kratos_courier_smtp_from_name, kratos_courier_smtp_headers, kratos_courier_templates_recovery_code_invalid_email_body_html, kratos_courier_templates_recovery_code_invalid_email_body_plaintext, kratos_courier_templates_recovery_code_invalid_email_subject, kratos_courier_templates_recovery_code_valid_email_body_html, kratos_courier_templates_recovery_code_valid_email_body_plaintext, kratos_courier_templates_recovery_code_valid_email_subject, kratos_courier_templates_recovery_invalid_email_body_html, kratos_courier_templates_recovery_invalid_email_body_plaintext, kratos_courier_templates_recovery_invalid_email_subject, kratos_courier_templates_recovery_valid_email_body_html, kratos_courier_templates_recovery_valid_email_body_plaintext, kratos_courier_templates_recovery_valid_email_subject, kratos_courier_templates_verification_code_invalid_email_body_html, kratos_courier_templates_verification_code_invalid_email_body_plaintext, kratos_courier_templates_verification_code_invalid_email_subject, kratos_courier_templates_verification_code_valid_email_body_html, kratos_courier_templates_verification_code_valid_email_body_plaintext, kratos_courier_templates_verification_code_valid_email_subject, kratos_courier_templates_verification_invalid_email_body_html, kratos_courier_templates_verification_invalid_email_body_plaintext, kratos_courier_templates_verification_invalid_email_subject, kratos_courier_templates_verification_valid_email_body_html, kratos_courier_templates_verification_valid_email_body_plaintext, kratos_courier_templates_verification_valid_email_subject, kratos_feature_flags_cacheable_sessions, kratos_identity_schemas, kratos_oauth2_provider_headers, kratos_oauth2_provider_override_return_to, kratos_oauth2_provider_url, kratos_secrets_cipher, kratos_secrets_cookie, kratos_secrets_default, kratos_selfservice_allowed_return_urls, kratos_selfservice_default_browser_return_url, kratos_selfservice_flows_error_ui_url, kratos_selfservice_flows_hooks, kratos_selfservice_flows_login_after_default_browser_return_url, kratos_selfservice_flows_login_after_oidc_default_browser_return_url, kratos_selfservice_flows_login_after_password_default_browser_return_url, kratos_selfservice_flows_login_after_webauthn_default_browser_return_url, kratos_selfservice_flows_login_lifespan, kratos_selfservice_flows_login_ui_url, kratos_selfservice_flows_logout_after_default_browser_return_url, kratos_selfservice_flows_recovery_after_default_browser_return_url, kratos_selfservice_flows_recovery_enabled, kratos_selfservice_flows_recovery_lifespan, kratos_selfservice_flows_recovery_notify_unknown_recipients, kratos_selfservice_flows_recovery_ui_url, kratos_selfservice_flows_recovery_use, kratos_selfservice_flows_registration_after_default_browser_return_url, kratos_selfservice_flows_registration_after_oidc_default_browser_return_url, kratos_selfservice_flows_registration_after_password_default_browser_return_url, kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url, kratos_selfservice_flows_registration_enabled, kratos_selfservice_flows_registration_lifespan, kratos_selfservice_flows_registration_ui_url, kratos_selfservice_flows_settings_after_default_browser_return_url, kratos_selfservice_flows_settings_after_password_default_browser_return_url, kratos_selfservice_flows_settings_after_profile_default_browser_return_url, kratos_selfservice_flows_settings_lifespan, kratos_selfservice_flows_settings_privileged_session_max_age, kratos_selfservice_flows_settings_required_aal, kratos_selfservice_flows_settings_ui_url, kratos_selfservice_flows_verification_after_default_browser_return_url, kratos_selfservice_flows_verification_enabled, kratos_selfservice_flows_verification_lifespan, kratos_selfservice_flows_verification_notify_unknown_recipients, kratos_selfservice_flows_verification_ui_url, kratos_selfservice_flows_verification_use, kratos_selfservice_methods_code_config_lifespan, kratos_selfservice_methods_code_enabled, kratos_selfservice_methods_link_config_base_url, kratos_selfservice_methods_link_config_lifespan, kratos_selfservice_methods_link_enabled, kratos_selfservice_methods_lookup_secret_enabled, kratos_selfservice_methods_oidc_config_base_redirect_uri, kratos_selfservice_methods_oidc_config_providers, kratos_selfservice_methods_oidc_enabled, kratos_selfservice_methods_password_config_haveibeenpwned_enabled, kratos_selfservice_methods_password_config_identifier_similarity_check_enabled, kratos_selfservice_methods_password_config_ignore_network_errors, kratos_selfservice_methods_password_config_max_breaches, kratos_selfservice_methods_password_config_min_password_length, kratos_selfservice_methods_password_enabled, kratos_selfservice_methods_profile_enabled, kratos_selfservice_methods_totp_config_issuer, kratos_selfservice_methods_totp_enabled, kratos_selfservice_methods_webauthn_config_passwordless, kratos_selfservice_methods_webauthn_config_rp_display_name, kratos_selfservice_methods_webauthn_config_rp_icon, kratos_selfservice_methods_webauthn_config_rp_id, kratos_selfservice_methods_webauthn_config_rp_origins, kratos_selfservice_methods_webauthn_enabled, kratos_session_cookie_persistent, kratos_session_cookie_same_site, kratos_session_lifespan, kratos_session_whoami_required_aal, name, production, project_id, serve_admin_cors_allowed_origins, serve_admin_cors_enabled, serve_public_cors_allowed_origins, serve_public_cors_enabled, updated_at].hash + [created_at, disable_account_experience_welcome_screen, hydra_oauth2_allowed_top_level_claims, hydra_oauth2_client_credentials_default_grant_allowed_scope, hydra_oauth2_exclude_not_before_claim, hydra_oauth2_grant_jwt_iat_optional, hydra_oauth2_grant_jwt_jti_optional, hydra_oauth2_grant_jwt_max_ttl, hydra_oauth2_pkce_enforced, hydra_oauth2_pkce_enforced_for_public_clients, hydra_oauth2_refresh_token_hook, hydra_oauth2_token_hook, hydra_oidc_dynamic_client_registration_default_scope, hydra_oidc_dynamic_client_registration_enabled, hydra_oidc_subject_identifiers_pairwise_salt, hydra_oidc_subject_identifiers_supported_types, hydra_secrets_cookie, hydra_secrets_system, hydra_serve_cookies_same_site_legacy_workaround, hydra_serve_cookies_same_site_mode, hydra_strategies_access_token, hydra_strategies_scope, hydra_ttl_access_token, hydra_ttl_auth_code, hydra_ttl_id_token, hydra_ttl_login_consent_request, hydra_ttl_refresh_token, hydra_urls_consent, hydra_urls_error, hydra_urls_login, hydra_urls_logout, hydra_urls_post_logout_redirect, hydra_urls_self_issuer, hydra_webfinger_jwks_broadcast_keys, hydra_webfinger_oidc_discovery_auth_url, hydra_webfinger_oidc_discovery_client_registration_url, hydra_webfinger_oidc_discovery_jwks_url, hydra_webfinger_oidc_discovery_supported_claims, hydra_webfinger_oidc_discovery_supported_scope, hydra_webfinger_oidc_discovery_token_url, hydra_webfinger_oidc_discovery_userinfo_url, id, keto_namespace_configuration, keto_namespaces, keto_read_max_depth, kratos_cookies_same_site, kratos_courier_smtp_connection_uri, kratos_courier_smtp_from_address, kratos_courier_smtp_from_name, kratos_courier_smtp_headers, kratos_courier_smtp_local_name, kratos_courier_templates_recovery_code_invalid_email_body_html, kratos_courier_templates_recovery_code_invalid_email_body_plaintext, kratos_courier_templates_recovery_code_invalid_email_subject, kratos_courier_templates_recovery_code_valid_email_body_html, kratos_courier_templates_recovery_code_valid_email_body_plaintext, kratos_courier_templates_recovery_code_valid_email_subject, kratos_courier_templates_recovery_invalid_email_body_html, kratos_courier_templates_recovery_invalid_email_body_plaintext, kratos_courier_templates_recovery_invalid_email_subject, kratos_courier_templates_recovery_valid_email_body_html, kratos_courier_templates_recovery_valid_email_body_plaintext, kratos_courier_templates_recovery_valid_email_subject, kratos_courier_templates_verification_code_invalid_email_body_html, kratos_courier_templates_verification_code_invalid_email_body_plaintext, kratos_courier_templates_verification_code_invalid_email_subject, kratos_courier_templates_verification_code_valid_email_body_html, kratos_courier_templates_verification_code_valid_email_body_plaintext, kratos_courier_templates_verification_code_valid_email_subject, kratos_courier_templates_verification_invalid_email_body_html, kratos_courier_templates_verification_invalid_email_body_plaintext, kratos_courier_templates_verification_invalid_email_subject, kratos_courier_templates_verification_valid_email_body_html, kratos_courier_templates_verification_valid_email_body_plaintext, kratos_courier_templates_verification_valid_email_subject, kratos_feature_flags_cacheable_sessions, kratos_identity_schemas, kratos_oauth2_provider_headers, kratos_oauth2_provider_override_return_to, kratos_oauth2_provider_url, kratos_secrets_cipher, kratos_secrets_cookie, kratos_secrets_default, kratos_selfservice_allowed_return_urls, kratos_selfservice_default_browser_return_url, kratos_selfservice_flows_error_ui_url, kratos_selfservice_flows_hooks, kratos_selfservice_flows_login_after_default_browser_return_url, kratos_selfservice_flows_login_after_oidc_default_browser_return_url, kratos_selfservice_flows_login_after_password_default_browser_return_url, kratos_selfservice_flows_login_after_webauthn_default_browser_return_url, kratos_selfservice_flows_login_lifespan, kratos_selfservice_flows_login_ui_url, kratos_selfservice_flows_logout_after_default_browser_return_url, kratos_selfservice_flows_recovery_after_default_browser_return_url, kratos_selfservice_flows_recovery_enabled, kratos_selfservice_flows_recovery_lifespan, kratos_selfservice_flows_recovery_notify_unknown_recipients, kratos_selfservice_flows_recovery_ui_url, kratos_selfservice_flows_recovery_use, kratos_selfservice_flows_registration_after_default_browser_return_url, kratos_selfservice_flows_registration_after_oidc_default_browser_return_url, kratos_selfservice_flows_registration_after_password_default_browser_return_url, kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url, kratos_selfservice_flows_registration_enabled, kratos_selfservice_flows_registration_lifespan, kratos_selfservice_flows_registration_ui_url, kratos_selfservice_flows_settings_after_default_browser_return_url, kratos_selfservice_flows_settings_after_password_default_browser_return_url, kratos_selfservice_flows_settings_after_profile_default_browser_return_url, kratos_selfservice_flows_settings_lifespan, kratos_selfservice_flows_settings_privileged_session_max_age, kratos_selfservice_flows_settings_required_aal, kratos_selfservice_flows_settings_ui_url, kratos_selfservice_flows_verification_after_default_browser_return_url, kratos_selfservice_flows_verification_enabled, kratos_selfservice_flows_verification_lifespan, kratos_selfservice_flows_verification_notify_unknown_recipients, kratos_selfservice_flows_verification_ui_url, kratos_selfservice_flows_verification_use, kratos_selfservice_methods_code_config_lifespan, kratos_selfservice_methods_code_enabled, kratos_selfservice_methods_link_config_base_url, kratos_selfservice_methods_link_config_lifespan, kratos_selfservice_methods_link_enabled, kratos_selfservice_methods_lookup_secret_enabled, kratos_selfservice_methods_oidc_config_base_redirect_uri, kratos_selfservice_methods_oidc_config_providers, kratos_selfservice_methods_oidc_enabled, kratos_selfservice_methods_password_config_haveibeenpwned_enabled, kratos_selfservice_methods_password_config_identifier_similarity_check_enabled, kratos_selfservice_methods_password_config_ignore_network_errors, kratos_selfservice_methods_password_config_max_breaches, kratos_selfservice_methods_password_config_min_password_length, kratos_selfservice_methods_password_enabled, kratos_selfservice_methods_profile_enabled, kratos_selfservice_methods_totp_config_issuer, kratos_selfservice_methods_totp_enabled, kratos_selfservice_methods_webauthn_config_passwordless, kratos_selfservice_methods_webauthn_config_rp_display_name, kratos_selfservice_methods_webauthn_config_rp_icon, kratos_selfservice_methods_webauthn_config_rp_id, kratos_selfservice_methods_webauthn_config_rp_origins, kratos_selfservice_methods_webauthn_enabled, kratos_session_cookie_persistent, kratos_session_cookie_same_site, kratos_session_lifespan, kratos_session_whoami_required_aal, name, production, project_id, serve_admin_cors_allowed_origins, serve_admin_cors_enabled, serve_public_cors_allowed_origins, serve_public_cors_enabled, updated_at].hash end # Builds the object from hash diff --git a/clients/client/ruby/lib/ory-client/models/normalized_project_revision_hook.rb b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_hook.rb index 058607cc5e6..a651938b7a0 100644 --- a/clients/client/ruby/lib/ory-client/models/normalized_project_revision_hook.rb +++ b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_hook.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/normalized_project_revision_identity_schema.rb b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_identity_schema.rb index 789c5032925..5da02499240 100644 --- a/clients/client/ruby/lib/ory-client/models/normalized_project_revision_identity_schema.rb +++ b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_identity_schema.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/normalized_project_revision_third_party_provider.rb b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_third_party_provider.rb index 81c1b3cf7ad..0321bcc4066 100644 --- a/clients/client/ruby/lib/ory-client/models/normalized_project_revision_third_party_provider.rb +++ b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_third_party_provider.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_client.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_client.rb index de1407d759b..ece174bc338 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_client.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_client.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_client_token_lifespans.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_client_token_lifespans.rb index 51ff811cf00..93ce158d22d 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_client_token_lifespans.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_client_token_lifespans.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request.rb index 444b8246efa..fb865cedb99 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request_open_id_connect_context.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request_open_id_connect_context.rb index 36b8e9a2213..5114a34a5ec 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request_open_id_connect_context.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_request_open_id_connect_context.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session.rb index 0091f27326b..a194b3be807 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session_expires_at.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session_expires_at.rb index d42bc40d84a..2ec05d9da93 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session_expires_at.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_consent_session_expires_at.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_login_request.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_login_request.rb index 7b41e0cbb69..84f6e1ae52d 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_login_request.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_login_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_logout_request.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_logout_request.rb index 9cc649f8f59..525cee5751c 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_logout_request.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_logout_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_redirect_to.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_redirect_to.rb index 1a05e0b6124..1a60de92724 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_redirect_to.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_redirect_to.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/o_auth2_token_exchange.rb b/clients/client/ruby/lib/ory-client/models/o_auth2_token_exchange.rb index 1c636a7a2ba..4e5603ba857 100644 --- a/clients/client/ruby/lib/ory-client/models/o_auth2_token_exchange.rb +++ b/clients/client/ruby/lib/ory-client/models/o_auth2_token_exchange.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/oidc_configuration.rb b/clients/client/ruby/lib/ory-client/models/oidc_configuration.rb index 6e78736f49d..62cf6dd1234 100644 --- a/clients/client/ruby/lib/ory-client/models/oidc_configuration.rb +++ b/clients/client/ruby/lib/ory-client/models/oidc_configuration.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/oidc_user_info.rb b/clients/client/ruby/lib/ory-client/models/oidc_user_info.rb index 5a905411e27..3f5914bce42 100644 --- a/clients/client/ruby/lib/ory-client/models/oidc_user_info.rb +++ b/clients/client/ruby/lib/ory-client/models/oidc_user_info.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/pagination.rb b/clients/client/ruby/lib/ory-client/models/pagination.rb index 676f70a55b3..004b29d88fd 100644 --- a/clients/client/ruby/lib/ory-client/models/pagination.rb +++ b/clients/client/ruby/lib/ory-client/models/pagination.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/pagination_headers.rb b/clients/client/ruby/lib/ory-client/models/pagination_headers.rb index 2945e4a6304..54e619d00d2 100644 --- a/clients/client/ruby/lib/ory-client/models/pagination_headers.rb +++ b/clients/client/ruby/lib/ory-client/models/pagination_headers.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/parse_error.rb b/clients/client/ruby/lib/ory-client/models/parse_error.rb index d555d3d398c..c5a0f7ca075 100644 --- a/clients/client/ruby/lib/ory-client/models/parse_error.rb +++ b/clients/client/ruby/lib/ory-client/models/parse_error.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/patch_identities_body.rb b/clients/client/ruby/lib/ory-client/models/patch_identities_body.rb index 3fd41d507ae..4aa34ea1421 100644 --- a/clients/client/ruby/lib/ory-client/models/patch_identities_body.rb +++ b/clients/client/ruby/lib/ory-client/models/patch_identities_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/perform_native_logout_body.rb b/clients/client/ruby/lib/ory-client/models/perform_native_logout_body.rb index f928e841626..512a290fd6f 100644 --- a/clients/client/ruby/lib/ory-client/models/perform_native_logout_body.rb +++ b/clients/client/ruby/lib/ory-client/models/perform_native_logout_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/plan.rb b/clients/client/ruby/lib/ory-client/models/plan.rb index 6483ea9029b..4d1480c29c6 100644 --- a/clients/client/ruby/lib/ory-client/models/plan.rb +++ b/clients/client/ruby/lib/ory-client/models/plan.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/plan_details.rb b/clients/client/ruby/lib/ory-client/models/plan_details.rb index 356a8da5a6b..2da4189906b 100644 --- a/clients/client/ruby/lib/ory-client/models/plan_details.rb +++ b/clients/client/ruby/lib/ory-client/models/plan_details.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/post_check_permission_body.rb b/clients/client/ruby/lib/ory-client/models/post_check_permission_body.rb index 1e432a0fd8a..b09ccce3e2f 100644 --- a/clients/client/ruby/lib/ory-client/models/post_check_permission_body.rb +++ b/clients/client/ruby/lib/ory-client/models/post_check_permission_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/post_check_permission_or_error_body.rb b/clients/client/ruby/lib/ory-client/models/post_check_permission_or_error_body.rb index e338a0b6344..972d4ae1256 100644 --- a/clients/client/ruby/lib/ory-client/models/post_check_permission_or_error_body.rb +++ b/clients/client/ruby/lib/ory-client/models/post_check_permission_or_error_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project.rb b/clients/client/ruby/lib/ory-client/models/project.rb index bf7ede073e7..b86e217b2d7 100644 --- a/clients/client/ruby/lib/ory-client/models/project.rb +++ b/clients/client/ruby/lib/ory-client/models/project.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_api_key.rb b/clients/client/ruby/lib/ory-client/models/project_api_key.rb index 8240d8b01df..5c7e0b09f64 100644 --- a/clients/client/ruby/lib/ory-client/models/project_api_key.rb +++ b/clients/client/ruby/lib/ory-client/models/project_api_key.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_branding.rb b/clients/client/ruby/lib/ory-client/models/project_branding.rb index d77afb4291a..4fb3c89156e 100644 --- a/clients/client/ruby/lib/ory-client/models/project_branding.rb +++ b/clients/client/ruby/lib/ory-client/models/project_branding.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_branding_colors.rb b/clients/client/ruby/lib/ory-client/models/project_branding_colors.rb index c428982a1ea..036d63d793b 100644 --- a/clients/client/ruby/lib/ory-client/models/project_branding_colors.rb +++ b/clients/client/ruby/lib/ory-client/models/project_branding_colors.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_branding_theme.rb b/clients/client/ruby/lib/ory-client/models/project_branding_theme.rb index fdca90c8f5e..c1aca5c5f86 100644 --- a/clients/client/ruby/lib/ory-client/models/project_branding_theme.rb +++ b/clients/client/ruby/lib/ory-client/models/project_branding_theme.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_host.rb b/clients/client/ruby/lib/ory-client/models/project_host.rb index 7c8d103b06c..a858a4285cd 100644 --- a/clients/client/ruby/lib/ory-client/models/project_host.rb +++ b/clients/client/ruby/lib/ory-client/models/project_host.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_metadata.rb b/clients/client/ruby/lib/ory-client/models/project_metadata.rb index 239252baa67..c047296ce5e 100644 --- a/clients/client/ruby/lib/ory-client/models/project_metadata.rb +++ b/clients/client/ruby/lib/ory-client/models/project_metadata.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_service_identity.rb b/clients/client/ruby/lib/ory-client/models/project_service_identity.rb index f264f9adaf6..f25df2759ed 100644 --- a/clients/client/ruby/lib/ory-client/models/project_service_identity.rb +++ b/clients/client/ruby/lib/ory-client/models/project_service_identity.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_service_o_auth2.rb b/clients/client/ruby/lib/ory-client/models/project_service_o_auth2.rb index d22f301fbb7..3a9b219bd8a 100644 --- a/clients/client/ruby/lib/ory-client/models/project_service_o_auth2.rb +++ b/clients/client/ruby/lib/ory-client/models/project_service_o_auth2.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_service_permission.rb b/clients/client/ruby/lib/ory-client/models/project_service_permission.rb index f7208cbda5e..c45d581e850 100644 --- a/clients/client/ruby/lib/ory-client/models/project_service_permission.rb +++ b/clients/client/ruby/lib/ory-client/models/project_service_permission.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/project_services.rb b/clients/client/ruby/lib/ory-client/models/project_services.rb index 61ffa60ba0b..9dbadeb3b47 100644 --- a/clients/client/ruby/lib/ory-client/models/project_services.rb +++ b/clients/client/ruby/lib/ory-client/models/project_services.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/quota_usage.rb b/clients/client/ruby/lib/ory-client/models/quota_usage.rb index 5ac327f7411..b61e8b9b639 100644 --- a/clients/client/ruby/lib/ory-client/models/quota_usage.rb +++ b/clients/client/ruby/lib/ory-client/models/quota_usage.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/recovery_code_for_identity.rb b/clients/client/ruby/lib/ory-client/models/recovery_code_for_identity.rb index 5b8465207e1..f2240db0ade 100644 --- a/clients/client/ruby/lib/ory-client/models/recovery_code_for_identity.rb +++ b/clients/client/ruby/lib/ory-client/models/recovery_code_for_identity.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/recovery_flow.rb b/clients/client/ruby/lib/ory-client/models/recovery_flow.rb index 30010958fbc..4fd6699e4f1 100644 --- a/clients/client/ruby/lib/ory-client/models/recovery_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/recovery_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/recovery_flow_state.rb b/clients/client/ruby/lib/ory-client/models/recovery_flow_state.rb index ba5666dcb41..fcf0b5e3fce 100644 --- a/clients/client/ruby/lib/ory-client/models/recovery_flow_state.rb +++ b/clients/client/ruby/lib/ory-client/models/recovery_flow_state.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/recovery_identity_address.rb b/clients/client/ruby/lib/ory-client/models/recovery_identity_address.rb index b3417d4cb24..50e64cb461e 100644 --- a/clients/client/ruby/lib/ory-client/models/recovery_identity_address.rb +++ b/clients/client/ruby/lib/ory-client/models/recovery_identity_address.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/recovery_link_for_identity.rb b/clients/client/ruby/lib/ory-client/models/recovery_link_for_identity.rb index 5dea63fe990..5b68f4317b4 100644 --- a/clients/client/ruby/lib/ory-client/models/recovery_link_for_identity.rb +++ b/clients/client/ruby/lib/ory-client/models/recovery_link_for_identity.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/registration_flow.rb b/clients/client/ruby/lib/ory-client/models/registration_flow.rb index c8e70c99cbd..f20d3d7608e 100644 --- a/clients/client/ruby/lib/ory-client/models/registration_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/registration_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/reject_o_auth2_request.rb b/clients/client/ruby/lib/ory-client/models/reject_o_auth2_request.rb index 2596ec0bdc7..40212b9a1eb 100644 --- a/clients/client/ruby/lib/ory-client/models/reject_o_auth2_request.rb +++ b/clients/client/ruby/lib/ory-client/models/reject_o_auth2_request.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/relation_query.rb b/clients/client/ruby/lib/ory-client/models/relation_query.rb index e5d3999030b..4946de822bd 100644 --- a/clients/client/ruby/lib/ory-client/models/relation_query.rb +++ b/clients/client/ruby/lib/ory-client/models/relation_query.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/relationship.rb b/clients/client/ruby/lib/ory-client/models/relationship.rb index 2d1010082e0..3b24d346990 100644 --- a/clients/client/ruby/lib/ory-client/models/relationship.rb +++ b/clients/client/ruby/lib/ory-client/models/relationship.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/relationship_namespaces.rb b/clients/client/ruby/lib/ory-client/models/relationship_namespaces.rb index f3c034dd88a..5d218472399 100644 --- a/clients/client/ruby/lib/ory-client/models/relationship_namespaces.rb +++ b/clients/client/ruby/lib/ory-client/models/relationship_namespaces.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/relationship_patch.rb b/clients/client/ruby/lib/ory-client/models/relationship_patch.rb index f9b271194c9..a6dc57863f3 100644 --- a/clients/client/ruby/lib/ory-client/models/relationship_patch.rb +++ b/clients/client/ruby/lib/ory-client/models/relationship_patch.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/relationships.rb b/clients/client/ruby/lib/ory-client/models/relationships.rb index b96c085bc9a..1f6f96f3226 100644 --- a/clients/client/ruby/lib/ory-client/models/relationships.rb +++ b/clients/client/ruby/lib/ory-client/models/relationships.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/rfc6749_error_json.rb b/clients/client/ruby/lib/ory-client/models/rfc6749_error_json.rb index 75699f8aa58..e3228ffffc5 100644 --- a/clients/client/ruby/lib/ory-client/models/rfc6749_error_json.rb +++ b/clients/client/ruby/lib/ory-client/models/rfc6749_error_json.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/schema_patch.rb b/clients/client/ruby/lib/ory-client/models/schema_patch.rb index 018bcd0998e..16fea5526df 100644 --- a/clients/client/ruby/lib/ory-client/models/schema_patch.rb +++ b/clients/client/ruby/lib/ory-client/models/schema_patch.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/self_service_flow_expired_error.rb b/clients/client/ruby/lib/ory-client/models/self_service_flow_expired_error.rb index 363dae99bb9..2651a84bc91 100644 --- a/clients/client/ruby/lib/ory-client/models/self_service_flow_expired_error.rb +++ b/clients/client/ruby/lib/ory-client/models/self_service_flow_expired_error.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/session.rb b/clients/client/ruby/lib/ory-client/models/session.rb index 8ad1de78e13..1646c32de2c 100644 --- a/clients/client/ruby/lib/ory-client/models/session.rb +++ b/clients/client/ruby/lib/ory-client/models/session.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/session_authentication_method.rb b/clients/client/ruby/lib/ory-client/models/session_authentication_method.rb index b87d9b7572d..2d5984f68b1 100644 --- a/clients/client/ruby/lib/ory-client/models/session_authentication_method.rb +++ b/clients/client/ruby/lib/ory-client/models/session_authentication_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/session_device.rb b/clients/client/ruby/lib/ory-client/models/session_device.rb index dac30ccd330..393f59b2f85 100644 --- a/clients/client/ruby/lib/ory-client/models/session_device.rb +++ b/clients/client/ruby/lib/ory-client/models/session_device.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/set_active_project_in_console_body.rb b/clients/client/ruby/lib/ory-client/models/set_active_project_in_console_body.rb index a8c59fd9148..d4b33205929 100644 --- a/clients/client/ruby/lib/ory-client/models/set_active_project_in_console_body.rb +++ b/clients/client/ruby/lib/ory-client/models/set_active_project_in_console_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/set_custom_domain_body.rb b/clients/client/ruby/lib/ory-client/models/set_custom_domain_body.rb index 4522f5b77df..057a27464cb 100644 --- a/clients/client/ruby/lib/ory-client/models/set_custom_domain_body.rb +++ b/clients/client/ruby/lib/ory-client/models/set_custom_domain_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/set_project.rb b/clients/client/ruby/lib/ory-client/models/set_project.rb index 8e6630e4c28..b82b3f56058 100644 --- a/clients/client/ruby/lib/ory-client/models/set_project.rb +++ b/clients/client/ruby/lib/ory-client/models/set_project.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/set_project_branding_theme_body.rb b/clients/client/ruby/lib/ory-client/models/set_project_branding_theme_body.rb index 49e2bd2ba1b..d2d702b9876 100644 --- a/clients/client/ruby/lib/ory-client/models/set_project_branding_theme_body.rb +++ b/clients/client/ruby/lib/ory-client/models/set_project_branding_theme_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/settings_flow.rb b/clients/client/ruby/lib/ory-client/models/settings_flow.rb index a3ce2fa0860..3de473187b6 100644 --- a/clients/client/ruby/lib/ory-client/models/settings_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/settings_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/settings_flow_state.rb b/clients/client/ruby/lib/ory-client/models/settings_flow_state.rb index 714ec9159f3..ea0bb5eacbf 100644 --- a/clients/client/ruby/lib/ory-client/models/settings_flow_state.rb +++ b/clients/client/ruby/lib/ory-client/models/settings_flow_state.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/source_position.rb b/clients/client/ruby/lib/ory-client/models/source_position.rb index f3107214d79..91b31dfa2b9 100644 --- a/clients/client/ruby/lib/ory-client/models/source_position.rb +++ b/clients/client/ruby/lib/ory-client/models/source_position.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/stripe_customer.rb b/clients/client/ruby/lib/ory-client/models/stripe_customer.rb index 0ae373a92a4..9d73137290e 100644 --- a/clients/client/ruby/lib/ory-client/models/stripe_customer.rb +++ b/clients/client/ruby/lib/ory-client/models/stripe_customer.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/subject_set.rb b/clients/client/ruby/lib/ory-client/models/subject_set.rb index 8b3ff7729ad..49f0eba52f1 100644 --- a/clients/client/ruby/lib/ory-client/models/subject_set.rb +++ b/clients/client/ruby/lib/ory-client/models/subject_set.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/subscription.rb b/clients/client/ruby/lib/ory-client/models/subscription.rb index ea1f110b5e7..2928ecc2f8d 100644 --- a/clients/client/ruby/lib/ory-client/models/subscription.rb +++ b/clients/client/ruby/lib/ory-client/models/subscription.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/successful_code_exchange_response.rb b/clients/client/ruby/lib/ory-client/models/successful_code_exchange_response.rb index 6fac0a58b30..a3b5e8bcc9b 100644 --- a/clients/client/ruby/lib/ory-client/models/successful_code_exchange_response.rb +++ b/clients/client/ruby/lib/ory-client/models/successful_code_exchange_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/successful_native_login.rb b/clients/client/ruby/lib/ory-client/models/successful_native_login.rb index 698b439ccfd..89d4ccdad56 100644 --- a/clients/client/ruby/lib/ory-client/models/successful_native_login.rb +++ b/clients/client/ruby/lib/ory-client/models/successful_native_login.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/successful_native_registration.rb b/clients/client/ruby/lib/ory-client/models/successful_native_registration.rb index c6fc44ec7f4..55766387030 100644 --- a/clients/client/ruby/lib/ory-client/models/successful_native_registration.rb +++ b/clients/client/ruby/lib/ory-client/models/successful_native_registration.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/successful_project_update.rb b/clients/client/ruby/lib/ory-client/models/successful_project_update.rb index 8228048f807..30d79bf2f74 100644 --- a/clients/client/ruby/lib/ory-client/models/successful_project_update.rb +++ b/clients/client/ruby/lib/ory-client/models/successful_project_update.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/token_pagination.rb b/clients/client/ruby/lib/ory-client/models/token_pagination.rb index 6fa35072bdd..66ac89ce61f 100644 --- a/clients/client/ruby/lib/ory-client/models/token_pagination.rb +++ b/clients/client/ruby/lib/ory-client/models/token_pagination.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/token_pagination_headers.rb b/clients/client/ruby/lib/ory-client/models/token_pagination_headers.rb index 989706cef98..68972bfd6e7 100644 --- a/clients/client/ruby/lib/ory-client/models/token_pagination_headers.rb +++ b/clients/client/ruby/lib/ory-client/models/token_pagination_headers.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/token_pagination_request_parameters.rb b/clients/client/ruby/lib/ory-client/models/token_pagination_request_parameters.rb index a65e6fe2f9d..457b34385e9 100644 --- a/clients/client/ruby/lib/ory-client/models/token_pagination_request_parameters.rb +++ b/clients/client/ruby/lib/ory-client/models/token_pagination_request_parameters.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/token_pagination_response_headers.rb b/clients/client/ruby/lib/ory-client/models/token_pagination_response_headers.rb index 6143f65095d..767a1ec0c45 100644 --- a/clients/client/ruby/lib/ory-client/models/token_pagination_response_headers.rb +++ b/clients/client/ruby/lib/ory-client/models/token_pagination_response_headers.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/trust_o_auth2_jwt_grant_issuer.rb b/clients/client/ruby/lib/ory-client/models/trust_o_auth2_jwt_grant_issuer.rb index b26cd04b893..c4dc54e1b0c 100644 --- a/clients/client/ruby/lib/ory-client/models/trust_o_auth2_jwt_grant_issuer.rb +++ b/clients/client/ruby/lib/ory-client/models/trust_o_auth2_jwt_grant_issuer.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_issuer.rb b/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_issuer.rb index 637654de9d9..6994ef30d5c 100644 --- a/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_issuer.rb +++ b/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_issuer.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_json_web_key.rb b/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_json_web_key.rb index 86f78ebd12f..17f5fc8f454 100644 --- a/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_json_web_key.rb +++ b/clients/client/ruby/lib/ory-client/models/trusted_o_auth2_jwt_grant_json_web_key.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_container.rb b/clients/client/ruby/lib/ory-client/models/ui_container.rb index db63068cb46..c3757a9ec3c 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_container.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_container.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node.rb b/clients/client/ruby/lib/ory-client/models/ui_node.rb index a62f9f5c8f1..e1fc0b7a37b 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_anchor_attributes.rb b/clients/client/ruby/lib/ory-client/models/ui_node_anchor_attributes.rb index 17fdf2a459b..1e8b4abefa0 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_anchor_attributes.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_anchor_attributes.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_attributes.rb b/clients/client/ruby/lib/ory-client/models/ui_node_attributes.rb index b52470fec78..b0cb5259d0b 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_attributes.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_attributes.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_image_attributes.rb b/clients/client/ruby/lib/ory-client/models/ui_node_image_attributes.rb index 646d6f58ab2..43267a3c521 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_image_attributes.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_image_attributes.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_input_attributes.rb b/clients/client/ruby/lib/ory-client/models/ui_node_input_attributes.rb index 60c04464274..1cade5749f4 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_input_attributes.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_input_attributes.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_meta.rb b/clients/client/ruby/lib/ory-client/models/ui_node_meta.rb index a5d8ce6c83c..4d7061566fb 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_meta.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_meta.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_script_attributes.rb b/clients/client/ruby/lib/ory-client/models/ui_node_script_attributes.rb index 73ae0a874d4..ea749c71a34 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_script_attributes.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_script_attributes.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_node_text_attributes.rb b/clients/client/ruby/lib/ory-client/models/ui_node_text_attributes.rb index d9b8f85474e..b400bebcb6b 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_node_text_attributes.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_node_text_attributes.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/ui_text.rb b/clients/client/ruby/lib/ory-client/models/ui_text.rb index db09d60ff0b..3114c8c2efa 100644 --- a/clients/client/ruby/lib/ory-client/models/ui_text.rb +++ b/clients/client/ruby/lib/ory-client/models/ui_text.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_identity_body.rb b/clients/client/ruby/lib/ory-client/models/update_identity_body.rb index 2101012a0bb..ef05e9adc0a 100644 --- a/clients/client/ruby/lib/ory-client/models/update_identity_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_identity_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_login_flow_body.rb b/clients/client/ruby/lib/ory-client/models/update_login_flow_body.rb index 67ef9f31de9..e7766242f00 100644 --- a/clients/client/ruby/lib/ory-client/models/update_login_flow_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_login_flow_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_lookup_secret_method.rb b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_lookup_secret_method.rb index 9f64688d927..5e3bb4f556a 100644 --- a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_lookup_secret_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_lookup_secret_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_oidc_method.rb b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_oidc_method.rb index 05d2fed3263..0d4f302cd4e 100644 --- a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_oidc_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_oidc_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_password_method.rb b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_password_method.rb index 44f4bd8283c..09e7ab632e8 100644 --- a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_password_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_password_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_totp_method.rb b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_totp_method.rb index 6d3e32bee0c..a62294931f9 100644 --- a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_totp_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_totp_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_web_authn_method.rb b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_web_authn_method.rb index 46462af793a..4fe45b8ecac 100644 --- a/clients/client/ruby/lib/ory-client/models/update_login_flow_with_web_authn_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_login_flow_with_web_authn_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_recovery_flow_body.rb b/clients/client/ruby/lib/ory-client/models/update_recovery_flow_body.rb index 825f8b0dc8e..a9306173856 100644 --- a/clients/client/ruby/lib/ory-client/models/update_recovery_flow_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_recovery_flow_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_code_method.rb b/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_code_method.rb index 1d44d094608..cd190291ccb 100644 --- a/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_code_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_code_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_link_method.rb b/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_link_method.rb index cda0ffcc5b3..aff7b8e1ff1 100644 --- a/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_link_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_recovery_flow_with_link_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_registration_flow_body.rb b/clients/client/ruby/lib/ory-client/models/update_registration_flow_body.rb index 1d229c57452..d99726a2e64 100644 --- a/clients/client/ruby/lib/ory-client/models/update_registration_flow_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_registration_flow_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_oidc_method.rb b/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_oidc_method.rb index 6cc6a63844e..73c514a70aa 100644 --- a/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_oidc_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_oidc_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_password_method.rb b/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_password_method.rb index 753f88fc0be..d63ed88076c 100644 --- a/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_password_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_password_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_web_authn_method.rb b/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_web_authn_method.rb index 80509f69eef..dd7e0afb172 100644 --- a/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_web_authn_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_registration_flow_with_web_authn_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_body.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_body.rb index 4bc43827eb5..4644279f7a5 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_lookup_method.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_lookup_method.rb index 45130b00920..8ec57225857 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_lookup_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_lookup_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_oidc_method.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_oidc_method.rb index 11bfff00bb8..ae083b21144 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_oidc_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_oidc_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_password_method.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_password_method.rb index 93e20edbcff..1b8797e8d58 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_password_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_password_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_profile_method.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_profile_method.rb index 2a0669bb630..c6f9441bc04 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_profile_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_profile_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_totp_method.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_totp_method.rb index ef9e4983ef3..1902c18c8be 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_totp_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_totp_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_web_authn_method.rb b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_web_authn_method.rb index a1d9e27c864..9e155dcca60 100644 --- a/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_web_authn_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_settings_flow_with_web_authn_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_subscription_body.rb b/clients/client/ruby/lib/ory-client/models/update_subscription_body.rb index 5f9c4adab88..a3581f2340d 100644 --- a/clients/client/ruby/lib/ory-client/models/update_subscription_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_subscription_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_verification_flow_body.rb b/clients/client/ruby/lib/ory-client/models/update_verification_flow_body.rb index 5a6e3c0bbb4..1f9221597c3 100644 --- a/clients/client/ruby/lib/ory-client/models/update_verification_flow_body.rb +++ b/clients/client/ruby/lib/ory-client/models/update_verification_flow_body.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_code_method.rb b/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_code_method.rb index e978fe0fc38..a46fb3747f0 100644 --- a/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_code_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_code_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_link_method.rb b/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_link_method.rb index cf052c1ca03..b8ec317d2d6 100644 --- a/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_link_method.rb +++ b/clients/client/ruby/lib/ory-client/models/update_verification_flow_with_link_method.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/usage.rb b/clients/client/ruby/lib/ory-client/models/usage.rb index 6e2cd9d6762..bf0872d63d5 100644 --- a/clients/client/ruby/lib/ory-client/models/usage.rb +++ b/clients/client/ruby/lib/ory-client/models/usage.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/verifiable_credential_priming_response.rb b/clients/client/ruby/lib/ory-client/models/verifiable_credential_priming_response.rb index 0bb004aba47..3b4541cb268 100644 --- a/clients/client/ruby/lib/ory-client/models/verifiable_credential_priming_response.rb +++ b/clients/client/ruby/lib/ory-client/models/verifiable_credential_priming_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/verifiable_credential_proof.rb b/clients/client/ruby/lib/ory-client/models/verifiable_credential_proof.rb index d53ad2fe12e..25cdee26ea4 100644 --- a/clients/client/ruby/lib/ory-client/models/verifiable_credential_proof.rb +++ b/clients/client/ruby/lib/ory-client/models/verifiable_credential_proof.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/verifiable_credential_response.rb b/clients/client/ruby/lib/ory-client/models/verifiable_credential_response.rb index bfa78489260..7940b520844 100644 --- a/clients/client/ruby/lib/ory-client/models/verifiable_credential_response.rb +++ b/clients/client/ruby/lib/ory-client/models/verifiable_credential_response.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/verifiable_identity_address.rb b/clients/client/ruby/lib/ory-client/models/verifiable_identity_address.rb index 4a8cef0ac6d..8803779ee58 100644 --- a/clients/client/ruby/lib/ory-client/models/verifiable_identity_address.rb +++ b/clients/client/ruby/lib/ory-client/models/verifiable_identity_address.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/verification_flow.rb b/clients/client/ruby/lib/ory-client/models/verification_flow.rb index 9f81a6c08f2..f8a7f22073b 100644 --- a/clients/client/ruby/lib/ory-client/models/verification_flow.rb +++ b/clients/client/ruby/lib/ory-client/models/verification_flow.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/verification_flow_state.rb b/clients/client/ruby/lib/ory-client/models/verification_flow_state.rb index 56fc93c2849..35f300f3c16 100644 --- a/clients/client/ruby/lib/ory-client/models/verification_flow_state.rb +++ b/clients/client/ruby/lib/ory-client/models/verification_flow_state.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/version.rb b/clients/client/ruby/lib/ory-client/models/version.rb index 41decc2ffae..0446aa99b61 100644 --- a/clients/client/ruby/lib/ory-client/models/version.rb +++ b/clients/client/ruby/lib/ory-client/models/version.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/models/warning.rb b/clients/client/ruby/lib/ory-client/models/warning.rb index 5bd3c11fcb1..ed44da3e60d 100644 --- a/clients/client/ruby/lib/ory-client/models/warning.rb +++ b/clients/client/ruby/lib/ory-client/models/warning.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/lib/ory-client/version.rb b/clients/client/ruby/lib/ory-client/version.rb index 485cae2fe72..b8d63d522f2 100644 --- a/clients/client/ruby/lib/ory-client/version.rb +++ b/clients/client/ruby/lib/ory-client/version.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: 1.1.44 +The version of the OpenAPI document: 1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -11,5 +11,5 @@ =end module OryClient - VERSION = '1.1.44' + VERSION = '1.1.45' end diff --git a/clients/client/ruby/ory-client.gemspec b/clients/client/ruby/ory-client.gemspec index e610917df62..ea1ba7b2da2 100644 --- a/clients/client/ruby/ory-client.gemspec +++ b/clients/client/ruby/ory-client.gemspec @@ -5,7 +5,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/courier_api_spec.rb b/clients/client/ruby/spec/api/courier_api_spec.rb index a7c429f8abe..271979e2c80 100644 --- a/clients/client/ruby/spec/api/courier_api_spec.rb +++ b/clients/client/ruby/spec/api/courier_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/frontend_api_spec.rb b/clients/client/ruby/spec/api/frontend_api_spec.rb index 0da39f1b841..fae4bad961f 100644 --- a/clients/client/ruby/spec/api/frontend_api_spec.rb +++ b/clients/client/ruby/spec/api/frontend_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/identity_api_spec.rb b/clients/client/ruby/spec/api/identity_api_spec.rb index 6cb0fd962bf..7dad7ae6dcf 100644 --- a/clients/client/ruby/spec/api/identity_api_spec.rb +++ b/clients/client/ruby/spec/api/identity_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/jwk_api_spec.rb b/clients/client/ruby/spec/api/jwk_api_spec.rb index c2dc69ac80b..5a044f31338 100644 --- a/clients/client/ruby/spec/api/jwk_api_spec.rb +++ b/clients/client/ruby/spec/api/jwk_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/metadata_api_spec.rb b/clients/client/ruby/spec/api/metadata_api_spec.rb index a44d9271c89..42b75d3532b 100644 --- a/clients/client/ruby/spec/api/metadata_api_spec.rb +++ b/clients/client/ruby/spec/api/metadata_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/o_auth2_api_spec.rb b/clients/client/ruby/spec/api/o_auth2_api_spec.rb index ecb9bda2fb6..2ddc06d81ab 100644 --- a/clients/client/ruby/spec/api/o_auth2_api_spec.rb +++ b/clients/client/ruby/spec/api/o_auth2_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/oidc_api_spec.rb b/clients/client/ruby/spec/api/oidc_api_spec.rb index 6c3822ffc66..93adbc9879b 100644 --- a/clients/client/ruby/spec/api/oidc_api_spec.rb +++ b/clients/client/ruby/spec/api/oidc_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/permission_api_spec.rb b/clients/client/ruby/spec/api/permission_api_spec.rb index 5a0f764a9fc..83865deb39a 100644 --- a/clients/client/ruby/spec/api/permission_api_spec.rb +++ b/clients/client/ruby/spec/api/permission_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/project_api_spec.rb b/clients/client/ruby/spec/api/project_api_spec.rb index e946f30e812..e52a98e35d8 100644 --- a/clients/client/ruby/spec/api/project_api_spec.rb +++ b/clients/client/ruby/spec/api/project_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/relationship_api_spec.rb b/clients/client/ruby/spec/api/relationship_api_spec.rb index ce2cf6f21e1..4d7eb9eedfa 100644 --- a/clients/client/ruby/spec/api/relationship_api_spec.rb +++ b/clients/client/ruby/spec/api/relationship_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api/wellknown_api_spec.rb b/clients/client/ruby/spec/api/wellknown_api_spec.rb index c2883cc6265..ff4f96e3296 100644 --- a/clients/client/ruby/spec/api/wellknown_api_spec.rb +++ b/clients/client/ruby/spec/api/wellknown_api_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/api_client_spec.rb b/clients/client/ruby/spec/api_client_spec.rb index 8e79bb47bd9..42e766407c5 100644 --- a/clients/client/ruby/spec/api_client_spec.rb +++ b/clients/client/ruby/spec/api_client_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/configuration_spec.rb b/clients/client/ruby/spec/configuration_spec.rb index af8ff0178b8..3697991eb2f 100644 --- a/clients/client/ruby/spec/configuration_spec.rb +++ b/clients/client/ruby/spec/configuration_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/accept_o_auth2_consent_request_session_spec.rb b/clients/client/ruby/spec/models/accept_o_auth2_consent_request_session_spec.rb index acba86c1ac9..3b2fdcc5f91 100644 --- a/clients/client/ruby/spec/models/accept_o_auth2_consent_request_session_spec.rb +++ b/clients/client/ruby/spec/models/accept_o_auth2_consent_request_session_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/accept_o_auth2_consent_request_spec.rb b/clients/client/ruby/spec/models/accept_o_auth2_consent_request_spec.rb index 211e8f3dfd0..1b7739de670 100644 --- a/clients/client/ruby/spec/models/accept_o_auth2_consent_request_spec.rb +++ b/clients/client/ruby/spec/models/accept_o_auth2_consent_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/accept_o_auth2_login_request_spec.rb b/clients/client/ruby/spec/models/accept_o_auth2_login_request_spec.rb index 7adc69c91be..ae905eed2fd 100644 --- a/clients/client/ruby/spec/models/accept_o_auth2_login_request_spec.rb +++ b/clients/client/ruby/spec/models/accept_o_auth2_login_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/active_project_in_console_spec.rb b/clients/client/ruby/spec/models/active_project_in_console_spec.rb index ed10fc20921..ed8d651b4bf 100644 --- a/clients/client/ruby/spec/models/active_project_in_console_spec.rb +++ b/clients/client/ruby/spec/models/active_project_in_console_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/authenticator_assurance_level_spec.rb b/clients/client/ruby/spec/models/authenticator_assurance_level_spec.rb index a83e64ecaea..0c3fbe3a820 100644 --- a/clients/client/ruby/spec/models/authenticator_assurance_level_spec.rb +++ b/clients/client/ruby/spec/models/authenticator_assurance_level_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/batch_patch_identities_response_spec.rb b/clients/client/ruby/spec/models/batch_patch_identities_response_spec.rb index 83c73f46ee0..dee29ab541a 100644 --- a/clients/client/ruby/spec/models/batch_patch_identities_response_spec.rb +++ b/clients/client/ruby/spec/models/batch_patch_identities_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/check_opl_syntax_result_spec.rb b/clients/client/ruby/spec/models/check_opl_syntax_result_spec.rb index 58bcd790f8d..679185143cc 100644 --- a/clients/client/ruby/spec/models/check_opl_syntax_result_spec.rb +++ b/clients/client/ruby/spec/models/check_opl_syntax_result_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/check_permission_result_spec.rb b/clients/client/ruby/spec/models/check_permission_result_spec.rb index 48c0c938274..5429ddf93ad 100644 --- a/clients/client/ruby/spec/models/check_permission_result_spec.rb +++ b/clients/client/ruby/spec/models/check_permission_result_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/cloud_account_spec.rb b/clients/client/ruby/spec/models/cloud_account_spec.rb index a2ad45c3f9a..d9d8fe1f05f 100644 --- a/clients/client/ruby/spec/models/cloud_account_spec.rb +++ b/clients/client/ruby/spec/models/cloud_account_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/continue_with_set_ory_session_token_spec.rb b/clients/client/ruby/spec/models/continue_with_set_ory_session_token_spec.rb index d28c40cf4ea..df76a15838b 100644 --- a/clients/client/ruby/spec/models/continue_with_set_ory_session_token_spec.rb +++ b/clients/client/ruby/spec/models/continue_with_set_ory_session_token_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/continue_with_spec.rb b/clients/client/ruby/spec/models/continue_with_spec.rb index a131d0bf2c9..04e3c78ebb5 100644 --- a/clients/client/ruby/spec/models/continue_with_spec.rb +++ b/clients/client/ruby/spec/models/continue_with_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/continue_with_verification_ui_flow_spec.rb b/clients/client/ruby/spec/models/continue_with_verification_ui_flow_spec.rb index 03d63bca2e6..5cd561a271b 100644 --- a/clients/client/ruby/spec/models/continue_with_verification_ui_flow_spec.rb +++ b/clients/client/ruby/spec/models/continue_with_verification_ui_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/continue_with_verification_ui_spec.rb b/clients/client/ruby/spec/models/continue_with_verification_ui_spec.rb index 0aa00030fb4..9a00eb32c82 100644 --- a/clients/client/ruby/spec/models/continue_with_verification_ui_spec.rb +++ b/clients/client/ruby/spec/models/continue_with_verification_ui_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/cors_spec.rb b/clients/client/ruby/spec/models/cors_spec.rb index d63fd0f154e..99384e97589 100644 --- a/clients/client/ruby/spec/models/cors_spec.rb +++ b/clients/client/ruby/spec/models/cors_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/courier_message_status_spec.rb b/clients/client/ruby/spec/models/courier_message_status_spec.rb index 1c74c47d8e7..f0890721b46 100644 --- a/clients/client/ruby/spec/models/courier_message_status_spec.rb +++ b/clients/client/ruby/spec/models/courier_message_status_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/courier_message_type_spec.rb b/clients/client/ruby/spec/models/courier_message_type_spec.rb index b1f4948ef98..454f302c3d6 100644 --- a/clients/client/ruby/spec/models/courier_message_type_spec.rb +++ b/clients/client/ruby/spec/models/courier_message_type_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_custom_domain_body_spec.rb b/clients/client/ruby/spec/models/create_custom_domain_body_spec.rb index 2a8bf8337e4..ac4a6d1d225 100644 --- a/clients/client/ruby/spec/models/create_custom_domain_body_spec.rb +++ b/clients/client/ruby/spec/models/create_custom_domain_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_identity_body_spec.rb b/clients/client/ruby/spec/models/create_identity_body_spec.rb index d4adbdd6241..6674fe9951d 100644 --- a/clients/client/ruby/spec/models/create_identity_body_spec.rb +++ b/clients/client/ruby/spec/models/create_identity_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_invite_response_spec.rb b/clients/client/ruby/spec/models/create_invite_response_spec.rb index d68dd6bc590..491806f097c 100644 --- a/clients/client/ruby/spec/models/create_invite_response_spec.rb +++ b/clients/client/ruby/spec/models/create_invite_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_json_web_key_set_spec.rb b/clients/client/ruby/spec/models/create_json_web_key_set_spec.rb index 9928be06de8..e47880f3574 100644 --- a/clients/client/ruby/spec/models/create_json_web_key_set_spec.rb +++ b/clients/client/ruby/spec/models/create_json_web_key_set_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_project_api_key_request_spec.rb b/clients/client/ruby/spec/models/create_project_api_key_request_spec.rb index bbaa7b4b314..cfac5d7ebd4 100644 --- a/clients/client/ruby/spec/models/create_project_api_key_request_spec.rb +++ b/clients/client/ruby/spec/models/create_project_api_key_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_project_body_spec.rb b/clients/client/ruby/spec/models/create_project_body_spec.rb index f0afb9ca52a..f49abcd81e9 100644 --- a/clients/client/ruby/spec/models/create_project_body_spec.rb +++ b/clients/client/ruby/spec/models/create_project_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_project_branding_spec.rb b/clients/client/ruby/spec/models/create_project_branding_spec.rb index d3c95cde7f3..692437cd582 100644 --- a/clients/client/ruby/spec/models/create_project_branding_spec.rb +++ b/clients/client/ruby/spec/models/create_project_branding_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_project_member_invite_body_spec.rb b/clients/client/ruby/spec/models/create_project_member_invite_body_spec.rb index 4c9fbeef180..9f87d5c9cf0 100644 --- a/clients/client/ruby/spec/models/create_project_member_invite_body_spec.rb +++ b/clients/client/ruby/spec/models/create_project_member_invite_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_recovery_code_for_identity_body_spec.rb b/clients/client/ruby/spec/models/create_recovery_code_for_identity_body_spec.rb index 9fa9ba85317..f63ebf14999 100644 --- a/clients/client/ruby/spec/models/create_recovery_code_for_identity_body_spec.rb +++ b/clients/client/ruby/spec/models/create_recovery_code_for_identity_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_recovery_link_for_identity_body_spec.rb b/clients/client/ruby/spec/models/create_recovery_link_for_identity_body_spec.rb index 30611445bb2..320ed9aa40c 100644 --- a/clients/client/ruby/spec/models/create_recovery_link_for_identity_body_spec.rb +++ b/clients/client/ruby/spec/models/create_recovery_link_for_identity_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_relationship_body_spec.rb b/clients/client/ruby/spec/models/create_relationship_body_spec.rb index 630f2fa2b53..546696ef44c 100644 --- a/clients/client/ruby/spec/models/create_relationship_body_spec.rb +++ b/clients/client/ruby/spec/models/create_relationship_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_subscription_body_spec.rb b/clients/client/ruby/spec/models/create_subscription_body_spec.rb index 1fa6a764784..17f1023c5c3 100644 --- a/clients/client/ruby/spec/models/create_subscription_body_spec.rb +++ b/clients/client/ruby/spec/models/create_subscription_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/create_verifiable_credential_request_body_spec.rb b/clients/client/ruby/spec/models/create_verifiable_credential_request_body_spec.rb index 40c0f784aad..b254d9e3f8b 100644 --- a/clients/client/ruby/spec/models/create_verifiable_credential_request_body_spec.rb +++ b/clients/client/ruby/spec/models/create_verifiable_credential_request_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/credential_supported_draft00_spec.rb b/clients/client/ruby/spec/models/credential_supported_draft00_spec.rb index d90532d283f..6c82e5891a8 100644 --- a/clients/client/ruby/spec/models/credential_supported_draft00_spec.rb +++ b/clients/client/ruby/spec/models/credential_supported_draft00_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/custom_domain_spec.rb b/clients/client/ruby/spec/models/custom_domain_spec.rb index f8b745fffef..7c66dd0ac70 100644 --- a/clients/client/ruby/spec/models/custom_domain_spec.rb +++ b/clients/client/ruby/spec/models/custom_domain_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/delete_my_sessions_count_spec.rb b/clients/client/ruby/spec/models/delete_my_sessions_count_spec.rb index 3a36bbc1d3c..b6e400a27d4 100644 --- a/clients/client/ruby/spec/models/delete_my_sessions_count_spec.rb +++ b/clients/client/ruby/spec/models/delete_my_sessions_count_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/email_template_data_body_spec.rb b/clients/client/ruby/spec/models/email_template_data_body_spec.rb index 8563213f69b..c7957c18d0b 100644 --- a/clients/client/ruby/spec/models/email_template_data_body_spec.rb +++ b/clients/client/ruby/spec/models/email_template_data_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/email_template_data_spec.rb b/clients/client/ruby/spec/models/email_template_data_spec.rb index bf4101c6499..9174d08c9df 100644 --- a/clients/client/ruby/spec/models/email_template_data_spec.rb +++ b/clients/client/ruby/spec/models/email_template_data_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/error_authenticator_assurance_level_not_satisfied_spec.rb b/clients/client/ruby/spec/models/error_authenticator_assurance_level_not_satisfied_spec.rb index df29c55eee5..b35d33bd5f1 100644 --- a/clients/client/ruby/spec/models/error_authenticator_assurance_level_not_satisfied_spec.rb +++ b/clients/client/ruby/spec/models/error_authenticator_assurance_level_not_satisfied_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/error_browser_location_change_required_spec.rb b/clients/client/ruby/spec/models/error_browser_location_change_required_spec.rb index 13915906b9e..8f6968d4d5d 100644 --- a/clients/client/ruby/spec/models/error_browser_location_change_required_spec.rb +++ b/clients/client/ruby/spec/models/error_browser_location_change_required_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/error_flow_replaced_spec.rb b/clients/client/ruby/spec/models/error_flow_replaced_spec.rb index 59775166d00..56413c6078c 100644 --- a/clients/client/ruby/spec/models/error_flow_replaced_spec.rb +++ b/clients/client/ruby/spec/models/error_flow_replaced_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/error_generic_spec.rb b/clients/client/ruby/spec/models/error_generic_spec.rb index 4feef5e2d8e..a63111fdc39 100644 --- a/clients/client/ruby/spec/models/error_generic_spec.rb +++ b/clients/client/ruby/spec/models/error_generic_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/error_o_auth2_spec.rb b/clients/client/ruby/spec/models/error_o_auth2_spec.rb index 15f23137267..d04ce733327 100644 --- a/clients/client/ruby/spec/models/error_o_auth2_spec.rb +++ b/clients/client/ruby/spec/models/error_o_auth2_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/expanded_permission_tree_spec.rb b/clients/client/ruby/spec/models/expanded_permission_tree_spec.rb index 636eedd21ab..2117056a301 100644 --- a/clients/client/ruby/spec/models/expanded_permission_tree_spec.rb +++ b/clients/client/ruby/spec/models/expanded_permission_tree_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/flow_error_spec.rb b/clients/client/ruby/spec/models/flow_error_spec.rb index 40830e36b9c..8214f16ed23 100644 --- a/clients/client/ruby/spec/models/flow_error_spec.rb +++ b/clients/client/ruby/spec/models/flow_error_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/generic_error_content_spec.rb b/clients/client/ruby/spec/models/generic_error_content_spec.rb index c4bae0d2af6..6a0b8fc3248 100644 --- a/clients/client/ruby/spec/models/generic_error_content_spec.rb +++ b/clients/client/ruby/spec/models/generic_error_content_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/generic_error_spec.rb b/clients/client/ruby/spec/models/generic_error_spec.rb index 509c817013c..3390f1e5aa2 100644 --- a/clients/client/ruby/spec/models/generic_error_spec.rb +++ b/clients/client/ruby/spec/models/generic_error_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/generic_usage_spec.rb b/clients/client/ruby/spec/models/generic_usage_spec.rb index dac829148f7..363efce6d46 100644 --- a/clients/client/ruby/spec/models/generic_usage_spec.rb +++ b/clients/client/ruby/spec/models/generic_usage_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/get_managed_identity_schema_location_spec.rb b/clients/client/ruby/spec/models/get_managed_identity_schema_location_spec.rb index 0026b92c69e..05d27233115 100644 --- a/clients/client/ruby/spec/models/get_managed_identity_schema_location_spec.rb +++ b/clients/client/ruby/spec/models/get_managed_identity_schema_location_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/get_project_metrics_response_spec.rb b/clients/client/ruby/spec/models/get_project_metrics_response_spec.rb index 2a015b4f9c8..5cedbe51e7f 100644 --- a/clients/client/ruby/spec/models/get_project_metrics_response_spec.rb +++ b/clients/client/ruby/spec/models/get_project_metrics_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/get_version200_response_spec.rb b/clients/client/ruby/spec/models/get_version200_response_spec.rb index 8100ae29b4a..7b1a8fe5339 100644 --- a/clients/client/ruby/spec/models/get_version200_response_spec.rb +++ b/clients/client/ruby/spec/models/get_version200_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/health_not_ready_status_spec.rb b/clients/client/ruby/spec/models/health_not_ready_status_spec.rb index c2d231762b8..4d090d0a7a9 100644 --- a/clients/client/ruby/spec/models/health_not_ready_status_spec.rb +++ b/clients/client/ruby/spec/models/health_not_ready_status_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/health_status_spec.rb b/clients/client/ruby/spec/models/health_status_spec.rb index 39511f4fb1d..1fe3bd6c53e 100644 --- a/clients/client/ruby/spec/models/health_status_spec.rb +++ b/clients/client/ruby/spec/models/health_status_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_credentials_oidc_provider_spec.rb b/clients/client/ruby/spec/models/identity_credentials_oidc_provider_spec.rb index 3672d78512e..2cc2cade3cb 100644 --- a/clients/client/ruby/spec/models/identity_credentials_oidc_provider_spec.rb +++ b/clients/client/ruby/spec/models/identity_credentials_oidc_provider_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_credentials_oidc_spec.rb b/clients/client/ruby/spec/models/identity_credentials_oidc_spec.rb index 257fd516138..fe41f4e4ea5 100644 --- a/clients/client/ruby/spec/models/identity_credentials_oidc_spec.rb +++ b/clients/client/ruby/spec/models/identity_credentials_oidc_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_credentials_password_spec.rb b/clients/client/ruby/spec/models/identity_credentials_password_spec.rb index d67356a94fe..7d27e765cb2 100644 --- a/clients/client/ruby/spec/models/identity_credentials_password_spec.rb +++ b/clients/client/ruby/spec/models/identity_credentials_password_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_credentials_spec.rb b/clients/client/ruby/spec/models/identity_credentials_spec.rb index 27990ae1727..8139d8cdff3 100644 --- a/clients/client/ruby/spec/models/identity_credentials_spec.rb +++ b/clients/client/ruby/spec/models/identity_credentials_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_credentials_type_spec.rb b/clients/client/ruby/spec/models/identity_credentials_type_spec.rb index 4dc99f0c9f8..3dc2fc73551 100644 --- a/clients/client/ruby/spec/models/identity_credentials_type_spec.rb +++ b/clients/client/ruby/spec/models/identity_credentials_type_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_patch_response_spec.rb b/clients/client/ruby/spec/models/identity_patch_response_spec.rb index 1ce20d7c976..40ea132dd78 100644 --- a/clients/client/ruby/spec/models/identity_patch_response_spec.rb +++ b/clients/client/ruby/spec/models/identity_patch_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_patch_spec.rb b/clients/client/ruby/spec/models/identity_patch_spec.rb index dfa4b561e4f..c2e4d1918cd 100644 --- a/clients/client/ruby/spec/models/identity_patch_spec.rb +++ b/clients/client/ruby/spec/models/identity_patch_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_schema_container_spec.rb b/clients/client/ruby/spec/models/identity_schema_container_spec.rb index 57ec1cd6de9..d03724ae018 100644 --- a/clients/client/ruby/spec/models/identity_schema_container_spec.rb +++ b/clients/client/ruby/spec/models/identity_schema_container_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_schema_preset_spec.rb b/clients/client/ruby/spec/models/identity_schema_preset_spec.rb index 5f3449502bf..1461d95aef5 100644 --- a/clients/client/ruby/spec/models/identity_schema_preset_spec.rb +++ b/clients/client/ruby/spec/models/identity_schema_preset_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_spec.rb b/clients/client/ruby/spec/models/identity_spec.rb index b389087dc5d..4399444cd72 100644 --- a/clients/client/ruby/spec/models/identity_spec.rb +++ b/clients/client/ruby/spec/models/identity_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_state_spec.rb b/clients/client/ruby/spec/models/identity_state_spec.rb index a38cad2a2d5..66c814c47e3 100644 --- a/clients/client/ruby/spec/models/identity_state_spec.rb +++ b/clients/client/ruby/spec/models/identity_state_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_provider_spec.rb b/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_provider_spec.rb index 2dc5400f8ad..4d0029eb1e8 100644 --- a/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_provider_spec.rb +++ b/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_provider_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_spec.rb b/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_spec.rb index 10fb92c6f44..c17aaa07e38 100644 --- a/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_spec.rb +++ b/clients/client/ruby/spec/models/identity_with_credentials_oidc_config_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_with_credentials_oidc_spec.rb b/clients/client/ruby/spec/models/identity_with_credentials_oidc_spec.rb index fe6fec0cab2..6179ed4dadf 100644 --- a/clients/client/ruby/spec/models/identity_with_credentials_oidc_spec.rb +++ b/clients/client/ruby/spec/models/identity_with_credentials_oidc_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_with_credentials_password_config_spec.rb b/clients/client/ruby/spec/models/identity_with_credentials_password_config_spec.rb index 5c0dcbd3987..3cb007e15bc 100644 --- a/clients/client/ruby/spec/models/identity_with_credentials_password_config_spec.rb +++ b/clients/client/ruby/spec/models/identity_with_credentials_password_config_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_with_credentials_password_spec.rb b/clients/client/ruby/spec/models/identity_with_credentials_password_spec.rb index 079094cf518..5dd41590900 100644 --- a/clients/client/ruby/spec/models/identity_with_credentials_password_spec.rb +++ b/clients/client/ruby/spec/models/identity_with_credentials_password_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/identity_with_credentials_spec.rb b/clients/client/ruby/spec/models/identity_with_credentials_spec.rb index 05ba4d01234..d32f2ee1778 100644 --- a/clients/client/ruby/spec/models/identity_with_credentials_spec.rb +++ b/clients/client/ruby/spec/models/identity_with_credentials_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/internal_get_project_branding_body_spec.rb b/clients/client/ruby/spec/models/internal_get_project_branding_body_spec.rb index c13d727be23..33e739cde25 100644 --- a/clients/client/ruby/spec/models/internal_get_project_branding_body_spec.rb +++ b/clients/client/ruby/spec/models/internal_get_project_branding_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/internal_is_ax_welcome_screen_enabled_for_project_body_spec.rb b/clients/client/ruby/spec/models/internal_is_ax_welcome_screen_enabled_for_project_body_spec.rb index 4f1a990bc81..175828cba70 100644 --- a/clients/client/ruby/spec/models/internal_is_ax_welcome_screen_enabled_for_project_body_spec.rb +++ b/clients/client/ruby/spec/models/internal_is_ax_welcome_screen_enabled_for_project_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_body_spec.rb b/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_body_spec.rb index 8a96ac56f8d..ac23d433010 100644 --- a/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_body_spec.rb +++ b/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_response_spec.rb b/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_response_spec.rb index bcb1b649397..e5e888f35b4 100644 --- a/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_response_spec.rb +++ b/clients/client/ruby/spec/models/internal_is_owner_for_project_by_slug_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/internal_provision_mock_subscription_spec.rb b/clients/client/ruby/spec/models/internal_provision_mock_subscription_spec.rb index 19f16f46b47..294460e5080 100644 --- a/clients/client/ruby/spec/models/internal_provision_mock_subscription_spec.rb +++ b/clients/client/ruby/spec/models/internal_provision_mock_subscription_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/introspected_o_auth2_token_spec.rb b/clients/client/ruby/spec/models/introspected_o_auth2_token_spec.rb index 07db2c18df0..a81fef4e0fb 100644 --- a/clients/client/ruby/spec/models/introspected_o_auth2_token_spec.rb +++ b/clients/client/ruby/spec/models/introspected_o_auth2_token_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/is_owner_for_project_by_slug_spec.rb b/clients/client/ruby/spec/models/is_owner_for_project_by_slug_spec.rb index f4a787fc338..ba8b9a409ac 100644 --- a/clients/client/ruby/spec/models/is_owner_for_project_by_slug_spec.rb +++ b/clients/client/ruby/spec/models/is_owner_for_project_by_slug_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/is_ready200_response_spec.rb b/clients/client/ruby/spec/models/is_ready200_response_spec.rb index a8f2674b041..5e395d54da4 100644 --- a/clients/client/ruby/spec/models/is_ready200_response_spec.rb +++ b/clients/client/ruby/spec/models/is_ready200_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/is_ready503_response_spec.rb b/clients/client/ruby/spec/models/is_ready503_response_spec.rb index c54d24a282d..f745fdb1cc1 100644 --- a/clients/client/ruby/spec/models/is_ready503_response_spec.rb +++ b/clients/client/ruby/spec/models/is_ready503_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/json_patch_spec.rb b/clients/client/ruby/spec/models/json_patch_spec.rb index c90805dc6ec..d55470d14e3 100644 --- a/clients/client/ruby/spec/models/json_patch_spec.rb +++ b/clients/client/ruby/spec/models/json_patch_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/json_web_key_set_spec.rb b/clients/client/ruby/spec/models/json_web_key_set_spec.rb index ea94c8cb1ac..c4887c9be95 100644 --- a/clients/client/ruby/spec/models/json_web_key_set_spec.rb +++ b/clients/client/ruby/spec/models/json_web_key_set_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/json_web_key_spec.rb b/clients/client/ruby/spec/models/json_web_key_spec.rb index 9eb0a87523d..0010ea8df51 100644 --- a/clients/client/ruby/spec/models/json_web_key_spec.rb +++ b/clients/client/ruby/spec/models/json_web_key_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/keto_namespace_spec.rb b/clients/client/ruby/spec/models/keto_namespace_spec.rb index 9172786a4fe..2cc3b936ad6 100644 --- a/clients/client/ruby/spec/models/keto_namespace_spec.rb +++ b/clients/client/ruby/spec/models/keto_namespace_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/login_flow_spec.rb b/clients/client/ruby/spec/models/login_flow_spec.rb index 92723b3de81..4793453dc28 100644 --- a/clients/client/ruby/spec/models/login_flow_spec.rb +++ b/clients/client/ruby/spec/models/login_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/logout_flow_spec.rb b/clients/client/ruby/spec/models/logout_flow_spec.rb index 1e3ae8b754d..e7daabc5ca0 100644 --- a/clients/client/ruby/spec/models/logout_flow_spec.rb +++ b/clients/client/ruby/spec/models/logout_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/managed_identity_schema_spec.rb b/clients/client/ruby/spec/models/managed_identity_schema_spec.rb index 3a4a82b30d5..3cbe9ce481e 100644 --- a/clients/client/ruby/spec/models/managed_identity_schema_spec.rb +++ b/clients/client/ruby/spec/models/managed_identity_schema_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/managed_identity_schema_validation_result_spec.rb b/clients/client/ruby/spec/models/managed_identity_schema_validation_result_spec.rb index a008eb52e2e..8a67367b943 100644 --- a/clients/client/ruby/spec/models/managed_identity_schema_validation_result_spec.rb +++ b/clients/client/ruby/spec/models/managed_identity_schema_validation_result_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/member_invite_spec.rb b/clients/client/ruby/spec/models/member_invite_spec.rb index a9ac5288d11..8dcc2a464e9 100644 --- a/clients/client/ruby/spec/models/member_invite_spec.rb +++ b/clients/client/ruby/spec/models/member_invite_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/message_dispatch_spec.rb b/clients/client/ruby/spec/models/message_dispatch_spec.rb index 2013c5f0554..96bc9329d4b 100644 --- a/clients/client/ruby/spec/models/message_dispatch_spec.rb +++ b/clients/client/ruby/spec/models/message_dispatch_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/message_spec.rb b/clients/client/ruby/spec/models/message_spec.rb index 8a2d6315edb..55176d4ebf2 100644 --- a/clients/client/ruby/spec/models/message_spec.rb +++ b/clients/client/ruby/spec/models/message_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/metrics_datapoint_spec.rb b/clients/client/ruby/spec/models/metrics_datapoint_spec.rb index d0b51b427a0..cf3c289ad63 100644 --- a/clients/client/ruby/spec/models/metrics_datapoint_spec.rb +++ b/clients/client/ruby/spec/models/metrics_datapoint_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/namespace_spec.rb b/clients/client/ruby/spec/models/namespace_spec.rb index cc79e0f4a6b..109e145ac65 100644 --- a/clients/client/ruby/spec/models/namespace_spec.rb +++ b/clients/client/ruby/spec/models/namespace_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/needs_privileged_session_error_spec.rb b/clients/client/ruby/spec/models/needs_privileged_session_error_spec.rb index c5f4552421f..de20b3ab6ac 100644 --- a/clients/client/ruby/spec/models/needs_privileged_session_error_spec.rb +++ b/clients/client/ruby/spec/models/needs_privileged_session_error_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/normalized_project_revision_hook_spec.rb b/clients/client/ruby/spec/models/normalized_project_revision_hook_spec.rb index b704d26edc3..90eb88c81ba 100644 --- a/clients/client/ruby/spec/models/normalized_project_revision_hook_spec.rb +++ b/clients/client/ruby/spec/models/normalized_project_revision_hook_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/normalized_project_revision_identity_schema_spec.rb b/clients/client/ruby/spec/models/normalized_project_revision_identity_schema_spec.rb index f9e820b9492..19b8966244e 100644 --- a/clients/client/ruby/spec/models/normalized_project_revision_identity_schema_spec.rb +++ b/clients/client/ruby/spec/models/normalized_project_revision_identity_schema_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/normalized_project_revision_spec.rb b/clients/client/ruby/spec/models/normalized_project_revision_spec.rb index 5d7b9bc7f9e..a2808d93263 100644 --- a/clients/client/ruby/spec/models/normalized_project_revision_spec.rb +++ b/clients/client/ruby/spec/models/normalized_project_revision_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -333,6 +333,12 @@ end end + describe 'test attribute "kratos_courier_smtp_local_name"' do + it 'should work' do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + describe 'test attribute "kratos_courier_templates_recovery_code_invalid_email_body_html"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers diff --git a/clients/client/ruby/spec/models/normalized_project_revision_third_party_provider_spec.rb b/clients/client/ruby/spec/models/normalized_project_revision_third_party_provider_spec.rb index e65bb18144e..8755eeda90f 100644 --- a/clients/client/ruby/spec/models/normalized_project_revision_third_party_provider_spec.rb +++ b/clients/client/ruby/spec/models/normalized_project_revision_third_party_provider_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/normalized_project_spec.rb b/clients/client/ruby/spec/models/normalized_project_spec.rb index 5c7ef87ddea..43ca45da822 100644 --- a/clients/client/ruby/spec/models/normalized_project_spec.rb +++ b/clients/client/ruby/spec/models/normalized_project_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_client_spec.rb b/clients/client/ruby/spec/models/o_auth2_client_spec.rb index 82826d4f251..fa6c8f623dd 100644 --- a/clients/client/ruby/spec/models/o_auth2_client_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_client_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_client_token_lifespans_spec.rb b/clients/client/ruby/spec/models/o_auth2_client_token_lifespans_spec.rb index 1d3c918e938..f7321658bd5 100644 --- a/clients/client/ruby/spec/models/o_auth2_client_token_lifespans_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_client_token_lifespans_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_consent_request_open_id_connect_context_spec.rb b/clients/client/ruby/spec/models/o_auth2_consent_request_open_id_connect_context_spec.rb index b5981bfa3fa..bd11f846d19 100644 --- a/clients/client/ruby/spec/models/o_auth2_consent_request_open_id_connect_context_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_consent_request_open_id_connect_context_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_consent_request_spec.rb b/clients/client/ruby/spec/models/o_auth2_consent_request_spec.rb index adfea1e9cef..d3f0fe39d90 100644 --- a/clients/client/ruby/spec/models/o_auth2_consent_request_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_consent_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_consent_session_expires_at_spec.rb b/clients/client/ruby/spec/models/o_auth2_consent_session_expires_at_spec.rb index 66ad4595a77..e4b53882e1d 100644 --- a/clients/client/ruby/spec/models/o_auth2_consent_session_expires_at_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_consent_session_expires_at_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_consent_session_spec.rb b/clients/client/ruby/spec/models/o_auth2_consent_session_spec.rb index 77eb14ed951..30f81b1f148 100644 --- a/clients/client/ruby/spec/models/o_auth2_consent_session_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_consent_session_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_login_request_spec.rb b/clients/client/ruby/spec/models/o_auth2_login_request_spec.rb index aa0bf629b53..4f1f003620e 100644 --- a/clients/client/ruby/spec/models/o_auth2_login_request_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_login_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_logout_request_spec.rb b/clients/client/ruby/spec/models/o_auth2_logout_request_spec.rb index ed967366e5f..b3622117a08 100644 --- a/clients/client/ruby/spec/models/o_auth2_logout_request_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_logout_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_redirect_to_spec.rb b/clients/client/ruby/spec/models/o_auth2_redirect_to_spec.rb index c4a28f89c00..51185075acd 100644 --- a/clients/client/ruby/spec/models/o_auth2_redirect_to_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_redirect_to_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/o_auth2_token_exchange_spec.rb b/clients/client/ruby/spec/models/o_auth2_token_exchange_spec.rb index b4bda80e054..f1eb931fab2 100644 --- a/clients/client/ruby/spec/models/o_auth2_token_exchange_spec.rb +++ b/clients/client/ruby/spec/models/o_auth2_token_exchange_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/oidc_configuration_spec.rb b/clients/client/ruby/spec/models/oidc_configuration_spec.rb index 296e80dff24..b4b3e77b0bc 100644 --- a/clients/client/ruby/spec/models/oidc_configuration_spec.rb +++ b/clients/client/ruby/spec/models/oidc_configuration_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/oidc_user_info_spec.rb b/clients/client/ruby/spec/models/oidc_user_info_spec.rb index bdb122b2ffe..fb8716c9f38 100644 --- a/clients/client/ruby/spec/models/oidc_user_info_spec.rb +++ b/clients/client/ruby/spec/models/oidc_user_info_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/pagination_headers_spec.rb b/clients/client/ruby/spec/models/pagination_headers_spec.rb index 46a972a6fc1..73507e873ce 100644 --- a/clients/client/ruby/spec/models/pagination_headers_spec.rb +++ b/clients/client/ruby/spec/models/pagination_headers_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/pagination_spec.rb b/clients/client/ruby/spec/models/pagination_spec.rb index d49a44f9a5f..e217a0059c3 100644 --- a/clients/client/ruby/spec/models/pagination_spec.rb +++ b/clients/client/ruby/spec/models/pagination_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/parse_error_spec.rb b/clients/client/ruby/spec/models/parse_error_spec.rb index fffb1e109a6..bee7e0335c3 100644 --- a/clients/client/ruby/spec/models/parse_error_spec.rb +++ b/clients/client/ruby/spec/models/parse_error_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/patch_identities_body_spec.rb b/clients/client/ruby/spec/models/patch_identities_body_spec.rb index e4356713753..f83889942d7 100644 --- a/clients/client/ruby/spec/models/patch_identities_body_spec.rb +++ b/clients/client/ruby/spec/models/patch_identities_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/perform_native_logout_body_spec.rb b/clients/client/ruby/spec/models/perform_native_logout_body_spec.rb index cebe4163633..0855bc35951 100644 --- a/clients/client/ruby/spec/models/perform_native_logout_body_spec.rb +++ b/clients/client/ruby/spec/models/perform_native_logout_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/plan_details_spec.rb b/clients/client/ruby/spec/models/plan_details_spec.rb index dfd85010d95..c0ec7406457 100644 --- a/clients/client/ruby/spec/models/plan_details_spec.rb +++ b/clients/client/ruby/spec/models/plan_details_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/plan_spec.rb b/clients/client/ruby/spec/models/plan_spec.rb index 6da3e0e643a..2dde82b3c0a 100644 --- a/clients/client/ruby/spec/models/plan_spec.rb +++ b/clients/client/ruby/spec/models/plan_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/post_check_permission_body_spec.rb b/clients/client/ruby/spec/models/post_check_permission_body_spec.rb index 96bbc21d49b..18c3934c1c7 100644 --- a/clients/client/ruby/spec/models/post_check_permission_body_spec.rb +++ b/clients/client/ruby/spec/models/post_check_permission_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/post_check_permission_or_error_body_spec.rb b/clients/client/ruby/spec/models/post_check_permission_or_error_body_spec.rb index 0ca3c3588b5..3c26ecf1ced 100644 --- a/clients/client/ruby/spec/models/post_check_permission_or_error_body_spec.rb +++ b/clients/client/ruby/spec/models/post_check_permission_or_error_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_api_key_spec.rb b/clients/client/ruby/spec/models/project_api_key_spec.rb index e66a1d1cf85..867806e7ddf 100644 --- a/clients/client/ruby/spec/models/project_api_key_spec.rb +++ b/clients/client/ruby/spec/models/project_api_key_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_branding_colors_spec.rb b/clients/client/ruby/spec/models/project_branding_colors_spec.rb index 35b9e64e91e..ed0399c348d 100644 --- a/clients/client/ruby/spec/models/project_branding_colors_spec.rb +++ b/clients/client/ruby/spec/models/project_branding_colors_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_branding_spec.rb b/clients/client/ruby/spec/models/project_branding_spec.rb index 8b7e95fe87d..da46f15a4a0 100644 --- a/clients/client/ruby/spec/models/project_branding_spec.rb +++ b/clients/client/ruby/spec/models/project_branding_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_branding_theme_spec.rb b/clients/client/ruby/spec/models/project_branding_theme_spec.rb index 58c6da8d465..7994493f91d 100644 --- a/clients/client/ruby/spec/models/project_branding_theme_spec.rb +++ b/clients/client/ruby/spec/models/project_branding_theme_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_host_spec.rb b/clients/client/ruby/spec/models/project_host_spec.rb index 48ca2f278f2..19fe49b3075 100644 --- a/clients/client/ruby/spec/models/project_host_spec.rb +++ b/clients/client/ruby/spec/models/project_host_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_metadata_spec.rb b/clients/client/ruby/spec/models/project_metadata_spec.rb index ec8f19aa266..2ff3c907183 100644 --- a/clients/client/ruby/spec/models/project_metadata_spec.rb +++ b/clients/client/ruby/spec/models/project_metadata_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_service_identity_spec.rb b/clients/client/ruby/spec/models/project_service_identity_spec.rb index 5652308ecd6..44db12c8ae9 100644 --- a/clients/client/ruby/spec/models/project_service_identity_spec.rb +++ b/clients/client/ruby/spec/models/project_service_identity_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_service_o_auth2_spec.rb b/clients/client/ruby/spec/models/project_service_o_auth2_spec.rb index 8b76d8a1126..8af663cf708 100644 --- a/clients/client/ruby/spec/models/project_service_o_auth2_spec.rb +++ b/clients/client/ruby/spec/models/project_service_o_auth2_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_service_permission_spec.rb b/clients/client/ruby/spec/models/project_service_permission_spec.rb index 6e6cec23cea..4c8c1daa93d 100644 --- a/clients/client/ruby/spec/models/project_service_permission_spec.rb +++ b/clients/client/ruby/spec/models/project_service_permission_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_services_spec.rb b/clients/client/ruby/spec/models/project_services_spec.rb index f1353707ff4..c7825251a4e 100644 --- a/clients/client/ruby/spec/models/project_services_spec.rb +++ b/clients/client/ruby/spec/models/project_services_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/project_spec.rb b/clients/client/ruby/spec/models/project_spec.rb index 9c0761312ca..8df6fa835d8 100644 --- a/clients/client/ruby/spec/models/project_spec.rb +++ b/clients/client/ruby/spec/models/project_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/quota_usage_spec.rb b/clients/client/ruby/spec/models/quota_usage_spec.rb index ce1f5141f97..fbf07d78020 100644 --- a/clients/client/ruby/spec/models/quota_usage_spec.rb +++ b/clients/client/ruby/spec/models/quota_usage_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/recovery_code_for_identity_spec.rb b/clients/client/ruby/spec/models/recovery_code_for_identity_spec.rb index ebf3295f2b7..98de52f0071 100644 --- a/clients/client/ruby/spec/models/recovery_code_for_identity_spec.rb +++ b/clients/client/ruby/spec/models/recovery_code_for_identity_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/recovery_flow_spec.rb b/clients/client/ruby/spec/models/recovery_flow_spec.rb index 595beda3108..dfeb620dd75 100644 --- a/clients/client/ruby/spec/models/recovery_flow_spec.rb +++ b/clients/client/ruby/spec/models/recovery_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/recovery_flow_state_spec.rb b/clients/client/ruby/spec/models/recovery_flow_state_spec.rb index 31aba15d01e..35dfd500d1d 100644 --- a/clients/client/ruby/spec/models/recovery_flow_state_spec.rb +++ b/clients/client/ruby/spec/models/recovery_flow_state_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/recovery_identity_address_spec.rb b/clients/client/ruby/spec/models/recovery_identity_address_spec.rb index de8cad91072..855ceb55967 100644 --- a/clients/client/ruby/spec/models/recovery_identity_address_spec.rb +++ b/clients/client/ruby/spec/models/recovery_identity_address_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/recovery_link_for_identity_spec.rb b/clients/client/ruby/spec/models/recovery_link_for_identity_spec.rb index 1aee98895e7..f556f0ef32b 100644 --- a/clients/client/ruby/spec/models/recovery_link_for_identity_spec.rb +++ b/clients/client/ruby/spec/models/recovery_link_for_identity_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/registration_flow_spec.rb b/clients/client/ruby/spec/models/registration_flow_spec.rb index 58665ef9b52..cb01915bf24 100644 --- a/clients/client/ruby/spec/models/registration_flow_spec.rb +++ b/clients/client/ruby/spec/models/registration_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/reject_o_auth2_request_spec.rb b/clients/client/ruby/spec/models/reject_o_auth2_request_spec.rb index f6bfab70eaf..e3cec2fef97 100644 --- a/clients/client/ruby/spec/models/reject_o_auth2_request_spec.rb +++ b/clients/client/ruby/spec/models/reject_o_auth2_request_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/relation_query_spec.rb b/clients/client/ruby/spec/models/relation_query_spec.rb index 235bb1d811c..34937c9bbc1 100644 --- a/clients/client/ruby/spec/models/relation_query_spec.rb +++ b/clients/client/ruby/spec/models/relation_query_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/relationship_namespaces_spec.rb b/clients/client/ruby/spec/models/relationship_namespaces_spec.rb index 636aacc38cd..2a395ec670d 100644 --- a/clients/client/ruby/spec/models/relationship_namespaces_spec.rb +++ b/clients/client/ruby/spec/models/relationship_namespaces_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/relationship_patch_spec.rb b/clients/client/ruby/spec/models/relationship_patch_spec.rb index 0f9752d2562..7cb6cc17cbe 100644 --- a/clients/client/ruby/spec/models/relationship_patch_spec.rb +++ b/clients/client/ruby/spec/models/relationship_patch_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/relationship_spec.rb b/clients/client/ruby/spec/models/relationship_spec.rb index e2ad8830d0c..de3960679e4 100644 --- a/clients/client/ruby/spec/models/relationship_spec.rb +++ b/clients/client/ruby/spec/models/relationship_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/relationships_spec.rb b/clients/client/ruby/spec/models/relationships_spec.rb index 65494158313..3be13fd2208 100644 --- a/clients/client/ruby/spec/models/relationships_spec.rb +++ b/clients/client/ruby/spec/models/relationships_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/rfc6749_error_json_spec.rb b/clients/client/ruby/spec/models/rfc6749_error_json_spec.rb index 50ba6007b2b..b335a3c3115 100644 --- a/clients/client/ruby/spec/models/rfc6749_error_json_spec.rb +++ b/clients/client/ruby/spec/models/rfc6749_error_json_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/schema_patch_spec.rb b/clients/client/ruby/spec/models/schema_patch_spec.rb index cb250d6b1be..edbbe59c4e8 100644 --- a/clients/client/ruby/spec/models/schema_patch_spec.rb +++ b/clients/client/ruby/spec/models/schema_patch_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/self_service_flow_expired_error_spec.rb b/clients/client/ruby/spec/models/self_service_flow_expired_error_spec.rb index 5953b385763..344d49bb7a4 100644 --- a/clients/client/ruby/spec/models/self_service_flow_expired_error_spec.rb +++ b/clients/client/ruby/spec/models/self_service_flow_expired_error_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/session_authentication_method_spec.rb b/clients/client/ruby/spec/models/session_authentication_method_spec.rb index f048ac44291..2d453375e7c 100644 --- a/clients/client/ruby/spec/models/session_authentication_method_spec.rb +++ b/clients/client/ruby/spec/models/session_authentication_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/session_device_spec.rb b/clients/client/ruby/spec/models/session_device_spec.rb index 182e201be31..980ac36a70a 100644 --- a/clients/client/ruby/spec/models/session_device_spec.rb +++ b/clients/client/ruby/spec/models/session_device_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/session_spec.rb b/clients/client/ruby/spec/models/session_spec.rb index 09e89b06d9e..c4ab5428d0e 100644 --- a/clients/client/ruby/spec/models/session_spec.rb +++ b/clients/client/ruby/spec/models/session_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/set_active_project_in_console_body_spec.rb b/clients/client/ruby/spec/models/set_active_project_in_console_body_spec.rb index 116d908313c..bca2b37500d 100644 --- a/clients/client/ruby/spec/models/set_active_project_in_console_body_spec.rb +++ b/clients/client/ruby/spec/models/set_active_project_in_console_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/set_custom_domain_body_spec.rb b/clients/client/ruby/spec/models/set_custom_domain_body_spec.rb index 953b9d16f16..0de9b130a0e 100644 --- a/clients/client/ruby/spec/models/set_custom_domain_body_spec.rb +++ b/clients/client/ruby/spec/models/set_custom_domain_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/set_project_branding_theme_body_spec.rb b/clients/client/ruby/spec/models/set_project_branding_theme_body_spec.rb index 3941b0df75f..b338cec4b59 100644 --- a/clients/client/ruby/spec/models/set_project_branding_theme_body_spec.rb +++ b/clients/client/ruby/spec/models/set_project_branding_theme_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/set_project_spec.rb b/clients/client/ruby/spec/models/set_project_spec.rb index fa908686d76..fbc8d90cad1 100644 --- a/clients/client/ruby/spec/models/set_project_spec.rb +++ b/clients/client/ruby/spec/models/set_project_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/settings_flow_spec.rb b/clients/client/ruby/spec/models/settings_flow_spec.rb index 18bfe95c28f..c4af540598d 100644 --- a/clients/client/ruby/spec/models/settings_flow_spec.rb +++ b/clients/client/ruby/spec/models/settings_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/settings_flow_state_spec.rb b/clients/client/ruby/spec/models/settings_flow_state_spec.rb index c33f9c4bab1..cf0e361c61f 100644 --- a/clients/client/ruby/spec/models/settings_flow_state_spec.rb +++ b/clients/client/ruby/spec/models/settings_flow_state_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/source_position_spec.rb b/clients/client/ruby/spec/models/source_position_spec.rb index 89652dcbdee..a96fad2eb0b 100644 --- a/clients/client/ruby/spec/models/source_position_spec.rb +++ b/clients/client/ruby/spec/models/source_position_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/stripe_customer_spec.rb b/clients/client/ruby/spec/models/stripe_customer_spec.rb index 855a2b0ebf4..e058bb2e9bf 100644 --- a/clients/client/ruby/spec/models/stripe_customer_spec.rb +++ b/clients/client/ruby/spec/models/stripe_customer_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/subject_set_spec.rb b/clients/client/ruby/spec/models/subject_set_spec.rb index 6e6a8ace4ac..0dff6308a8c 100644 --- a/clients/client/ruby/spec/models/subject_set_spec.rb +++ b/clients/client/ruby/spec/models/subject_set_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/subscription_spec.rb b/clients/client/ruby/spec/models/subscription_spec.rb index 05df369c952..163172aa8db 100644 --- a/clients/client/ruby/spec/models/subscription_spec.rb +++ b/clients/client/ruby/spec/models/subscription_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/successful_code_exchange_response_spec.rb b/clients/client/ruby/spec/models/successful_code_exchange_response_spec.rb index 25e17edcccb..b5d7164899f 100644 --- a/clients/client/ruby/spec/models/successful_code_exchange_response_spec.rb +++ b/clients/client/ruby/spec/models/successful_code_exchange_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/successful_native_login_spec.rb b/clients/client/ruby/spec/models/successful_native_login_spec.rb index b64448b858a..ea59d5a0de4 100644 --- a/clients/client/ruby/spec/models/successful_native_login_spec.rb +++ b/clients/client/ruby/spec/models/successful_native_login_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/successful_native_registration_spec.rb b/clients/client/ruby/spec/models/successful_native_registration_spec.rb index 971cabdc97e..37eef092fc3 100644 --- a/clients/client/ruby/spec/models/successful_native_registration_spec.rb +++ b/clients/client/ruby/spec/models/successful_native_registration_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/successful_project_update_spec.rb b/clients/client/ruby/spec/models/successful_project_update_spec.rb index 0608e966ce9..3d915514c2e 100644 --- a/clients/client/ruby/spec/models/successful_project_update_spec.rb +++ b/clients/client/ruby/spec/models/successful_project_update_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/token_pagination_headers_spec.rb b/clients/client/ruby/spec/models/token_pagination_headers_spec.rb index db528408f6e..1ef7e77037d 100644 --- a/clients/client/ruby/spec/models/token_pagination_headers_spec.rb +++ b/clients/client/ruby/spec/models/token_pagination_headers_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/token_pagination_request_parameters_spec.rb b/clients/client/ruby/spec/models/token_pagination_request_parameters_spec.rb index 6f001615ac2..fd8d1269be9 100644 --- a/clients/client/ruby/spec/models/token_pagination_request_parameters_spec.rb +++ b/clients/client/ruby/spec/models/token_pagination_request_parameters_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/token_pagination_response_headers_spec.rb b/clients/client/ruby/spec/models/token_pagination_response_headers_spec.rb index ef54ce7d84b..2043f1df337 100644 --- a/clients/client/ruby/spec/models/token_pagination_response_headers_spec.rb +++ b/clients/client/ruby/spec/models/token_pagination_response_headers_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/token_pagination_spec.rb b/clients/client/ruby/spec/models/token_pagination_spec.rb index 13d4bae0fa0..39829e0a926 100644 --- a/clients/client/ruby/spec/models/token_pagination_spec.rb +++ b/clients/client/ruby/spec/models/token_pagination_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/trust_o_auth2_jwt_grant_issuer_spec.rb b/clients/client/ruby/spec/models/trust_o_auth2_jwt_grant_issuer_spec.rb index 7309b8f1a97..14fac178ca8 100644 --- a/clients/client/ruby/spec/models/trust_o_auth2_jwt_grant_issuer_spec.rb +++ b/clients/client/ruby/spec/models/trust_o_auth2_jwt_grant_issuer_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_issuer_spec.rb b/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_issuer_spec.rb index c5df665fde6..ac1ba189b80 100644 --- a/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_issuer_spec.rb +++ b/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_issuer_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_json_web_key_spec.rb b/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_json_web_key_spec.rb index 6a3d6c512c6..e4ef4659cff 100644 --- a/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_json_web_key_spec.rb +++ b/clients/client/ruby/spec/models/trusted_o_auth2_jwt_grant_json_web_key_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_container_spec.rb b/clients/client/ruby/spec/models/ui_container_spec.rb index bd5c0b31094..ac10a780950 100644 --- a/clients/client/ruby/spec/models/ui_container_spec.rb +++ b/clients/client/ruby/spec/models/ui_container_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_anchor_attributes_spec.rb b/clients/client/ruby/spec/models/ui_node_anchor_attributes_spec.rb index 01576b83719..519da68265b 100644 --- a/clients/client/ruby/spec/models/ui_node_anchor_attributes_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_anchor_attributes_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_attributes_spec.rb b/clients/client/ruby/spec/models/ui_node_attributes_spec.rb index 3b3925a99e0..f27a28d5054 100644 --- a/clients/client/ruby/spec/models/ui_node_attributes_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_attributes_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_image_attributes_spec.rb b/clients/client/ruby/spec/models/ui_node_image_attributes_spec.rb index ea13b2a42f7..1a740589b20 100644 --- a/clients/client/ruby/spec/models/ui_node_image_attributes_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_image_attributes_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_input_attributes_spec.rb b/clients/client/ruby/spec/models/ui_node_input_attributes_spec.rb index 2736b83fad1..8171ad60456 100644 --- a/clients/client/ruby/spec/models/ui_node_input_attributes_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_input_attributes_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_meta_spec.rb b/clients/client/ruby/spec/models/ui_node_meta_spec.rb index 28e0b0926cd..ba0cbdf1de2 100644 --- a/clients/client/ruby/spec/models/ui_node_meta_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_meta_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_script_attributes_spec.rb b/clients/client/ruby/spec/models/ui_node_script_attributes_spec.rb index 3dee52803f5..40c77488f81 100644 --- a/clients/client/ruby/spec/models/ui_node_script_attributes_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_script_attributes_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_spec.rb b/clients/client/ruby/spec/models/ui_node_spec.rb index c23bcb2743e..c80ce2c085a 100644 --- a/clients/client/ruby/spec/models/ui_node_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_node_text_attributes_spec.rb b/clients/client/ruby/spec/models/ui_node_text_attributes_spec.rb index 8bb6173097d..fd36b745854 100644 --- a/clients/client/ruby/spec/models/ui_node_text_attributes_spec.rb +++ b/clients/client/ruby/spec/models/ui_node_text_attributes_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/ui_text_spec.rb b/clients/client/ruby/spec/models/ui_text_spec.rb index d953a6bd3bd..acbf1d7dffe 100644 --- a/clients/client/ruby/spec/models/ui_text_spec.rb +++ b/clients/client/ruby/spec/models/ui_text_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_identity_body_spec.rb b/clients/client/ruby/spec/models/update_identity_body_spec.rb index 68ab425a0ef..24f17520e0e 100644 --- a/clients/client/ruby/spec/models/update_identity_body_spec.rb +++ b/clients/client/ruby/spec/models/update_identity_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_login_flow_body_spec.rb b/clients/client/ruby/spec/models/update_login_flow_body_spec.rb index 51c8016c7e2..e9a14b4e21d 100644 --- a/clients/client/ruby/spec/models/update_login_flow_body_spec.rb +++ b/clients/client/ruby/spec/models/update_login_flow_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_login_flow_with_lookup_secret_method_spec.rb b/clients/client/ruby/spec/models/update_login_flow_with_lookup_secret_method_spec.rb index 5bfec55422f..fcd1ee46297 100644 --- a/clients/client/ruby/spec/models/update_login_flow_with_lookup_secret_method_spec.rb +++ b/clients/client/ruby/spec/models/update_login_flow_with_lookup_secret_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_login_flow_with_oidc_method_spec.rb b/clients/client/ruby/spec/models/update_login_flow_with_oidc_method_spec.rb index 6f13ebd7727..7c3caae898f 100644 --- a/clients/client/ruby/spec/models/update_login_flow_with_oidc_method_spec.rb +++ b/clients/client/ruby/spec/models/update_login_flow_with_oidc_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_login_flow_with_password_method_spec.rb b/clients/client/ruby/spec/models/update_login_flow_with_password_method_spec.rb index 6a2131c845b..4b1765fa313 100644 --- a/clients/client/ruby/spec/models/update_login_flow_with_password_method_spec.rb +++ b/clients/client/ruby/spec/models/update_login_flow_with_password_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_login_flow_with_totp_method_spec.rb b/clients/client/ruby/spec/models/update_login_flow_with_totp_method_spec.rb index 69723d84662..b8be963b89c 100644 --- a/clients/client/ruby/spec/models/update_login_flow_with_totp_method_spec.rb +++ b/clients/client/ruby/spec/models/update_login_flow_with_totp_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_login_flow_with_web_authn_method_spec.rb b/clients/client/ruby/spec/models/update_login_flow_with_web_authn_method_spec.rb index c29a606fd8d..239ea5db950 100644 --- a/clients/client/ruby/spec/models/update_login_flow_with_web_authn_method_spec.rb +++ b/clients/client/ruby/spec/models/update_login_flow_with_web_authn_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_recovery_flow_body_spec.rb b/clients/client/ruby/spec/models/update_recovery_flow_body_spec.rb index b3fa3d223d6..22b248c40be 100644 --- a/clients/client/ruby/spec/models/update_recovery_flow_body_spec.rb +++ b/clients/client/ruby/spec/models/update_recovery_flow_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_recovery_flow_with_code_method_spec.rb b/clients/client/ruby/spec/models/update_recovery_flow_with_code_method_spec.rb index ddba5a7fd9e..bd9a740c9cb 100644 --- a/clients/client/ruby/spec/models/update_recovery_flow_with_code_method_spec.rb +++ b/clients/client/ruby/spec/models/update_recovery_flow_with_code_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_recovery_flow_with_link_method_spec.rb b/clients/client/ruby/spec/models/update_recovery_flow_with_link_method_spec.rb index d61bdda2949..2d167d84c83 100644 --- a/clients/client/ruby/spec/models/update_recovery_flow_with_link_method_spec.rb +++ b/clients/client/ruby/spec/models/update_recovery_flow_with_link_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_registration_flow_body_spec.rb b/clients/client/ruby/spec/models/update_registration_flow_body_spec.rb index d740edba702..85b9192c396 100644 --- a/clients/client/ruby/spec/models/update_registration_flow_body_spec.rb +++ b/clients/client/ruby/spec/models/update_registration_flow_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_registration_flow_with_oidc_method_spec.rb b/clients/client/ruby/spec/models/update_registration_flow_with_oidc_method_spec.rb index d6a800ce5fa..29179145b9d 100644 --- a/clients/client/ruby/spec/models/update_registration_flow_with_oidc_method_spec.rb +++ b/clients/client/ruby/spec/models/update_registration_flow_with_oidc_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_registration_flow_with_password_method_spec.rb b/clients/client/ruby/spec/models/update_registration_flow_with_password_method_spec.rb index 8ba802af3a2..c66cf456b37 100644 --- a/clients/client/ruby/spec/models/update_registration_flow_with_password_method_spec.rb +++ b/clients/client/ruby/spec/models/update_registration_flow_with_password_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_registration_flow_with_web_authn_method_spec.rb b/clients/client/ruby/spec/models/update_registration_flow_with_web_authn_method_spec.rb index a47e5e08275..2ad50408ed7 100644 --- a/clients/client/ruby/spec/models/update_registration_flow_with_web_authn_method_spec.rb +++ b/clients/client/ruby/spec/models/update_registration_flow_with_web_authn_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_body_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_body_spec.rb index e963df2a9a0..31085431d8f 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_body_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_with_lookup_method_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_with_lookup_method_spec.rb index bfc77908e82..900cb9a704f 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_with_lookup_method_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_with_lookup_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_with_oidc_method_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_with_oidc_method_spec.rb index a71b8a271d9..32d3171db7f 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_with_oidc_method_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_with_oidc_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_with_password_method_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_with_password_method_spec.rb index f07316e5303..191b85b0392 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_with_password_method_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_with_password_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_with_profile_method_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_with_profile_method_spec.rb index 1a1c95f3d9a..55a355cf420 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_with_profile_method_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_with_profile_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_with_totp_method_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_with_totp_method_spec.rb index cafb5cd2aff..36d6b9cea60 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_with_totp_method_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_with_totp_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_settings_flow_with_web_authn_method_spec.rb b/clients/client/ruby/spec/models/update_settings_flow_with_web_authn_method_spec.rb index 6f86bdcd212..defcb486b83 100644 --- a/clients/client/ruby/spec/models/update_settings_flow_with_web_authn_method_spec.rb +++ b/clients/client/ruby/spec/models/update_settings_flow_with_web_authn_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_subscription_body_spec.rb b/clients/client/ruby/spec/models/update_subscription_body_spec.rb index 3c22f4ae84b..99392495863 100644 --- a/clients/client/ruby/spec/models/update_subscription_body_spec.rb +++ b/clients/client/ruby/spec/models/update_subscription_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_verification_flow_body_spec.rb b/clients/client/ruby/spec/models/update_verification_flow_body_spec.rb index 305120cd731..ce1dcb05099 100644 --- a/clients/client/ruby/spec/models/update_verification_flow_body_spec.rb +++ b/clients/client/ruby/spec/models/update_verification_flow_body_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_verification_flow_with_code_method_spec.rb b/clients/client/ruby/spec/models/update_verification_flow_with_code_method_spec.rb index 2fabfe11fed..83da8216645 100644 --- a/clients/client/ruby/spec/models/update_verification_flow_with_code_method_spec.rb +++ b/clients/client/ruby/spec/models/update_verification_flow_with_code_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/update_verification_flow_with_link_method_spec.rb b/clients/client/ruby/spec/models/update_verification_flow_with_link_method_spec.rb index f21d8af8131..aa795afb121 100644 --- a/clients/client/ruby/spec/models/update_verification_flow_with_link_method_spec.rb +++ b/clients/client/ruby/spec/models/update_verification_flow_with_link_method_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/usage_spec.rb b/clients/client/ruby/spec/models/usage_spec.rb index 045ec4c16e4..525319583b4 100644 --- a/clients/client/ruby/spec/models/usage_spec.rb +++ b/clients/client/ruby/spec/models/usage_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/verifiable_credential_priming_response_spec.rb b/clients/client/ruby/spec/models/verifiable_credential_priming_response_spec.rb index 96207964d38..e4cbcb52096 100644 --- a/clients/client/ruby/spec/models/verifiable_credential_priming_response_spec.rb +++ b/clients/client/ruby/spec/models/verifiable_credential_priming_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/verifiable_credential_proof_spec.rb b/clients/client/ruby/spec/models/verifiable_credential_proof_spec.rb index aac748dbd62..dfe151ae1ae 100644 --- a/clients/client/ruby/spec/models/verifiable_credential_proof_spec.rb +++ b/clients/client/ruby/spec/models/verifiable_credential_proof_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/verifiable_credential_response_spec.rb b/clients/client/ruby/spec/models/verifiable_credential_response_spec.rb index f5ac7716e8f..22e7cd6fa1f 100644 --- a/clients/client/ruby/spec/models/verifiable_credential_response_spec.rb +++ b/clients/client/ruby/spec/models/verifiable_credential_response_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/verifiable_identity_address_spec.rb b/clients/client/ruby/spec/models/verifiable_identity_address_spec.rb index d624fdd0c02..45212185ff0 100644 --- a/clients/client/ruby/spec/models/verifiable_identity_address_spec.rb +++ b/clients/client/ruby/spec/models/verifiable_identity_address_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/verification_flow_spec.rb b/clients/client/ruby/spec/models/verification_flow_spec.rb index 14db0b0efdb..edeb60c2667 100644 --- a/clients/client/ruby/spec/models/verification_flow_spec.rb +++ b/clients/client/ruby/spec/models/verification_flow_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/verification_flow_state_spec.rb b/clients/client/ruby/spec/models/verification_flow_state_spec.rb index b668cdcef58..6e11fd59719 100644 --- a/clients/client/ruby/spec/models/verification_flow_state_spec.rb +++ b/clients/client/ruby/spec/models/verification_flow_state_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/version_spec.rb b/clients/client/ruby/spec/models/version_spec.rb index 843d0dacddd..3d446a5b925 100644 --- a/clients/client/ruby/spec/models/version_spec.rb +++ b/clients/client/ruby/spec/models/version_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/models/warning_spec.rb b/clients/client/ruby/spec/models/warning_spec.rb index 62d865582b6..9aa8c73c398 100644 --- a/clients/client/ruby/spec/models/warning_spec.rb +++ b/clients/client/ruby/spec/models/warning_spec.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/ruby/spec/spec_helper.rb b/clients/client/ruby/spec/spec_helper.rb index fe9908db72c..64d43290e28 100644 --- a/clients/client/ruby/spec/spec_helper.rb +++ b/clients/client/ruby/spec/spec_helper.rb @@ -3,7 +3,7 @@ #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. -The version of the OpenAPI document: v1.1.44 +The version of the OpenAPI document: v1.1.45 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 diff --git a/clients/client/rust/Cargo.lock b/clients/client/rust/Cargo.lock index bbc0e84bbe9..1f8092a986d 100644 --- a/clients/client/rust/Cargo.lock +++ b/clients/client/rust/Cargo.lock @@ -195,9 +195,9 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" @@ -272,9 +272,9 @@ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "log" -version = "0.4.19" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "memchr" @@ -344,7 +344,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "ory-client" -version = "1.1.44" +version = "1.1.45" dependencies = [ "num-traits", "reqwest", @@ -534,9 +534,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.30.0" +version = "1.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" +checksum = "40de3a2ba249dcb097e01be5e67a5ff53cf250397715a071a81543e8a832a920" dependencies = [ "backtrace", "bytes", diff --git a/clients/client/rust/Cargo.toml b/clients/client/rust/Cargo.toml index f20d2c63be0..1eb61689d97 100644 --- a/clients/client/rust/Cargo.toml +++ b/clients/client/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ory-client" -version = "1.1.44" +version = "1.1.45" description = "SDK Client for Ory" documentation = "https://www.ory.sh/docs/sdk" homepage = "https://www.ory.sh" diff --git a/clients/client/rust/README.md b/clients/client/rust/README.md index 015ab5a49e3..947c45bd96b 100644 --- a/clients/client/rust/README.md +++ b/clients/client/rust/README.md @@ -9,8 +9,8 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers. This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client. -- API version: v1.1.44 -- Package version: v1.1.44 +- API version: v1.1.45 +- Package version: v1.1.45 - Build package: `org.openapitools.codegen.languages.RustClientCodegen` ## Installation diff --git a/clients/client/rust/docs/NormalizedProjectRevision.md b/clients/client/rust/docs/NormalizedProjectRevision.md index 0b3196283fa..f2c5c2e478d 100644 --- a/clients/client/rust/docs/NormalizedProjectRevision.md +++ b/clients/client/rust/docs/NormalizedProjectRevision.md @@ -54,6 +54,7 @@ Name | Type | Description | Notes **kratos_courier_smtp_from_address** | Option<**String**> | Configures the Ory Kratos SMTP From Address This governs the \"courier.smtp.from_address\" setting. | [optional] **kratos_courier_smtp_from_name** | Option<**String**> | Configures the Ory Kratos SMTP From Name This governs the \"courier.smtp.from_name\" setting. | [optional] **kratos_courier_smtp_headers** | Option<[**serde_json::Value**](.md)> | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] +**kratos_courier_smtp_local_name** | Option<**String**> | Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. | [optional] **kratos_courier_templates_recovery_code_invalid_email_body_html** | Option<**String**> | Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] **kratos_courier_templates_recovery_code_invalid_email_body_plaintext** | Option<**String**> | Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting. | [optional] **kratos_courier_templates_recovery_code_invalid_email_subject** | Option<**String**> | Configures the Ory Kratos Invalid Recovery via Code Email Subject Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. | [optional] diff --git a/clients/client/rust/src/apis/configuration.rs b/clients/client/rust/src/apis/configuration.rs index cef860a69da..e0d603c8d3d 100644 --- a/clients/client/rust/src/apis/configuration.rs +++ b/clients/client/rust/src/apis/configuration.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -41,7 +41,7 @@ impl Default for Configuration { fn default() -> Self { Configuration { base_path: "https://playground.projects.oryapis.com".to_owned(), - user_agent: Some("OpenAPI-Generator/v1.1.44/rust".to_owned()), + user_agent: Some("OpenAPI-Generator/v1.1.45/rust".to_owned()), client: reqwest::Client::new(), basic_auth: None, oauth_access_token: None, diff --git a/clients/client/rust/src/apis/courier_api.rs b/clients/client/rust/src/apis/courier_api.rs index a21e41d31ef..0f1edfafea2 100644 --- a/clients/client/rust/src/apis/courier_api.rs +++ b/clients/client/rust/src/apis/courier_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/frontend_api.rs b/clients/client/rust/src/apis/frontend_api.rs index ab4a2c30bee..07283368294 100644 --- a/clients/client/rust/src/apis/frontend_api.rs +++ b/clients/client/rust/src/apis/frontend_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/identity_api.rs b/clients/client/rust/src/apis/identity_api.rs index cd9bbadad39..24c2348249f 100644 --- a/clients/client/rust/src/apis/identity_api.rs +++ b/clients/client/rust/src/apis/identity_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/jwk_api.rs b/clients/client/rust/src/apis/jwk_api.rs index 3ab9605ecea..5f8ffad4a4e 100644 --- a/clients/client/rust/src/apis/jwk_api.rs +++ b/clients/client/rust/src/apis/jwk_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/metadata_api.rs b/clients/client/rust/src/apis/metadata_api.rs index ba609d1d2f8..74d514be820 100644 --- a/clients/client/rust/src/apis/metadata_api.rs +++ b/clients/client/rust/src/apis/metadata_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/o_auth2_api.rs b/clients/client/rust/src/apis/o_auth2_api.rs index 3b1769e4a22..4074bbe0239 100644 --- a/clients/client/rust/src/apis/o_auth2_api.rs +++ b/clients/client/rust/src/apis/o_auth2_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/oidc_api.rs b/clients/client/rust/src/apis/oidc_api.rs index 277c210f377..7b4f4a60872 100644 --- a/clients/client/rust/src/apis/oidc_api.rs +++ b/clients/client/rust/src/apis/oidc_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/permission_api.rs b/clients/client/rust/src/apis/permission_api.rs index 33c69165bb8..8b95b8adade 100644 --- a/clients/client/rust/src/apis/permission_api.rs +++ b/clients/client/rust/src/apis/permission_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/project_api.rs b/clients/client/rust/src/apis/project_api.rs index ffd28542ee3..3d9f493bcf9 100644 --- a/clients/client/rust/src/apis/project_api.rs +++ b/clients/client/rust/src/apis/project_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/relationship_api.rs b/clients/client/rust/src/apis/relationship_api.rs index 67765618f54..07d45475a38 100644 --- a/clients/client/rust/src/apis/relationship_api.rs +++ b/clients/client/rust/src/apis/relationship_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/apis/wellknown_api.rs b/clients/client/rust/src/apis/wellknown_api.rs index 17cd88eb7c3..66a1be68b09 100644 --- a/clients/client/rust/src/apis/wellknown_api.rs +++ b/clients/client/rust/src/apis/wellknown_api.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/accept_o_auth2_consent_request.rs b/clients/client/rust/src/models/accept_o_auth2_consent_request.rs index fd31afed3eb..5fa1489c747 100644 --- a/clients/client/rust/src/models/accept_o_auth2_consent_request.rs +++ b/clients/client/rust/src/models/accept_o_auth2_consent_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/accept_o_auth2_consent_request_session.rs b/clients/client/rust/src/models/accept_o_auth2_consent_request_session.rs index c65bd5a8d6d..43135e73242 100644 --- a/clients/client/rust/src/models/accept_o_auth2_consent_request_session.rs +++ b/clients/client/rust/src/models/accept_o_auth2_consent_request_session.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/accept_o_auth2_login_request.rs b/clients/client/rust/src/models/accept_o_auth2_login_request.rs index 85a4211fb17..513e59fc9af 100644 --- a/clients/client/rust/src/models/accept_o_auth2_login_request.rs +++ b/clients/client/rust/src/models/accept_o_auth2_login_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/active_project_in_console.rs b/clients/client/rust/src/models/active_project_in_console.rs index aac7342f7ac..1621a6c5a6b 100644 --- a/clients/client/rust/src/models/active_project_in_console.rs +++ b/clients/client/rust/src/models/active_project_in_console.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/authenticator_assurance_level.rs b/clients/client/rust/src/models/authenticator_assurance_level.rs index 208e1302110..2e1612499cb 100644 --- a/clients/client/rust/src/models/authenticator_assurance_level.rs +++ b/clients/client/rust/src/models/authenticator_assurance_level.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/batch_patch_identities_response.rs b/clients/client/rust/src/models/batch_patch_identities_response.rs index eb1796a2e7a..30a60c52851 100644 --- a/clients/client/rust/src/models/batch_patch_identities_response.rs +++ b/clients/client/rust/src/models/batch_patch_identities_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/check_opl_syntax_result.rs b/clients/client/rust/src/models/check_opl_syntax_result.rs index f0cdb02879a..080c395352c 100644 --- a/clients/client/rust/src/models/check_opl_syntax_result.rs +++ b/clients/client/rust/src/models/check_opl_syntax_result.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/check_permission_result.rs b/clients/client/rust/src/models/check_permission_result.rs index 9f69a5b6e58..09ae5f33ef0 100644 --- a/clients/client/rust/src/models/check_permission_result.rs +++ b/clients/client/rust/src/models/check_permission_result.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/cloud_account.rs b/clients/client/rust/src/models/cloud_account.rs index d0d473480fb..e4bd1032c6f 100644 --- a/clients/client/rust/src/models/cloud_account.rs +++ b/clients/client/rust/src/models/cloud_account.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/continue_with.rs b/clients/client/rust/src/models/continue_with.rs index b8fb13ffaa8..4f0a2bef98c 100644 --- a/clients/client/rust/src/models/continue_with.rs +++ b/clients/client/rust/src/models/continue_with.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/continue_with_set_ory_session_token.rs b/clients/client/rust/src/models/continue_with_set_ory_session_token.rs index 6a94f1c28fb..08af01b70e7 100644 --- a/clients/client/rust/src/models/continue_with_set_ory_session_token.rs +++ b/clients/client/rust/src/models/continue_with_set_ory_session_token.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/continue_with_verification_ui.rs b/clients/client/rust/src/models/continue_with_verification_ui.rs index 35ac86d3c27..ddef27b2967 100644 --- a/clients/client/rust/src/models/continue_with_verification_ui.rs +++ b/clients/client/rust/src/models/continue_with_verification_ui.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/continue_with_verification_ui_flow.rs b/clients/client/rust/src/models/continue_with_verification_ui_flow.rs index ace319036a0..bd73b01c870 100644 --- a/clients/client/rust/src/models/continue_with_verification_ui_flow.rs +++ b/clients/client/rust/src/models/continue_with_verification_ui_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/cors.rs b/clients/client/rust/src/models/cors.rs index 61fea1da125..477042cbb24 100644 --- a/clients/client/rust/src/models/cors.rs +++ b/clients/client/rust/src/models/cors.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/courier_message_status.rs b/clients/client/rust/src/models/courier_message_status.rs index 7c08fca5c33..1218bb20bb6 100644 --- a/clients/client/rust/src/models/courier_message_status.rs +++ b/clients/client/rust/src/models/courier_message_status.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/courier_message_type.rs b/clients/client/rust/src/models/courier_message_type.rs index cb732265845..aff78a5f68e 100644 --- a/clients/client/rust/src/models/courier_message_type.rs +++ b/clients/client/rust/src/models/courier_message_type.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_custom_domain_body.rs b/clients/client/rust/src/models/create_custom_domain_body.rs index 76288698149..f78d40e7616 100644 --- a/clients/client/rust/src/models/create_custom_domain_body.rs +++ b/clients/client/rust/src/models/create_custom_domain_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_identity_body.rs b/clients/client/rust/src/models/create_identity_body.rs index a00dee7517c..174126308bd 100644 --- a/clients/client/rust/src/models/create_identity_body.rs +++ b/clients/client/rust/src/models/create_identity_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_invite_response.rs b/clients/client/rust/src/models/create_invite_response.rs index 94724f96b77..95862bf48fa 100644 --- a/clients/client/rust/src/models/create_invite_response.rs +++ b/clients/client/rust/src/models/create_invite_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_json_web_key_set.rs b/clients/client/rust/src/models/create_json_web_key_set.rs index 5367e957441..bc621569ded 100644 --- a/clients/client/rust/src/models/create_json_web_key_set.rs +++ b/clients/client/rust/src/models/create_json_web_key_set.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_project_api_key_request.rs b/clients/client/rust/src/models/create_project_api_key_request.rs index 229bc2f835b..27f21e1cc3d 100644 --- a/clients/client/rust/src/models/create_project_api_key_request.rs +++ b/clients/client/rust/src/models/create_project_api_key_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_project_body.rs b/clients/client/rust/src/models/create_project_body.rs index 73b0b6e6cf0..612d240c0d9 100644 --- a/clients/client/rust/src/models/create_project_body.rs +++ b/clients/client/rust/src/models/create_project_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_project_branding.rs b/clients/client/rust/src/models/create_project_branding.rs index f12573c751b..75da18aa98d 100644 --- a/clients/client/rust/src/models/create_project_branding.rs +++ b/clients/client/rust/src/models/create_project_branding.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_project_member_invite_body.rs b/clients/client/rust/src/models/create_project_member_invite_body.rs index 7490554e198..425f1b390bd 100644 --- a/clients/client/rust/src/models/create_project_member_invite_body.rs +++ b/clients/client/rust/src/models/create_project_member_invite_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_recovery_code_for_identity_body.rs b/clients/client/rust/src/models/create_recovery_code_for_identity_body.rs index ed3de1a17d8..4aa8f946ba8 100644 --- a/clients/client/rust/src/models/create_recovery_code_for_identity_body.rs +++ b/clients/client/rust/src/models/create_recovery_code_for_identity_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_recovery_link_for_identity_body.rs b/clients/client/rust/src/models/create_recovery_link_for_identity_body.rs index a1557b5ee72..d74e73a57cb 100644 --- a/clients/client/rust/src/models/create_recovery_link_for_identity_body.rs +++ b/clients/client/rust/src/models/create_recovery_link_for_identity_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_relationship_body.rs b/clients/client/rust/src/models/create_relationship_body.rs index c30fcd54e46..ac9677db049 100644 --- a/clients/client/rust/src/models/create_relationship_body.rs +++ b/clients/client/rust/src/models/create_relationship_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_subscription_body.rs b/clients/client/rust/src/models/create_subscription_body.rs index 64a085d4d88..c69f7b9cf67 100644 --- a/clients/client/rust/src/models/create_subscription_body.rs +++ b/clients/client/rust/src/models/create_subscription_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_verifiable_credential_request_body.rs b/clients/client/rust/src/models/create_verifiable_credential_request_body.rs index dd4f07c0fc4..7ace1de0c55 100644 --- a/clients/client/rust/src/models/create_verifiable_credential_request_body.rs +++ b/clients/client/rust/src/models/create_verifiable_credential_request_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/credential_supported_draft00.rs b/clients/client/rust/src/models/credential_supported_draft00.rs index 454c1cfecb8..3d89780f3b3 100644 --- a/clients/client/rust/src/models/credential_supported_draft00.rs +++ b/clients/client/rust/src/models/credential_supported_draft00.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/custom_domain.rs b/clients/client/rust/src/models/custom_domain.rs index 76842108716..23aa64d0e33 100644 --- a/clients/client/rust/src/models/custom_domain.rs +++ b/clients/client/rust/src/models/custom_domain.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/delete_my_sessions_count.rs b/clients/client/rust/src/models/delete_my_sessions_count.rs index 74fc10ab97b..afb75be3ff4 100644 --- a/clients/client/rust/src/models/delete_my_sessions_count.rs +++ b/clients/client/rust/src/models/delete_my_sessions_count.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/email_template_data.rs b/clients/client/rust/src/models/email_template_data.rs index 559fafc42b6..207b5c3eaee 100644 --- a/clients/client/rust/src/models/email_template_data.rs +++ b/clients/client/rust/src/models/email_template_data.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/email_template_data_body.rs b/clients/client/rust/src/models/email_template_data_body.rs index 5aa7cdddf68..15f4395dba7 100644 --- a/clients/client/rust/src/models/email_template_data_body.rs +++ b/clients/client/rust/src/models/email_template_data_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/error_authenticator_assurance_level_not_satisfied.rs b/clients/client/rust/src/models/error_authenticator_assurance_level_not_satisfied.rs index 9f7e0668fff..41651232733 100644 --- a/clients/client/rust/src/models/error_authenticator_assurance_level_not_satisfied.rs +++ b/clients/client/rust/src/models/error_authenticator_assurance_level_not_satisfied.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/error_browser_location_change_required.rs b/clients/client/rust/src/models/error_browser_location_change_required.rs index b0c0851cac9..c61379e9a2e 100644 --- a/clients/client/rust/src/models/error_browser_location_change_required.rs +++ b/clients/client/rust/src/models/error_browser_location_change_required.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/error_flow_replaced.rs b/clients/client/rust/src/models/error_flow_replaced.rs index 7d77ef05585..b6e8df85173 100644 --- a/clients/client/rust/src/models/error_flow_replaced.rs +++ b/clients/client/rust/src/models/error_flow_replaced.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/error_generic.rs b/clients/client/rust/src/models/error_generic.rs index 1e78a98297d..326870b1f94 100644 --- a/clients/client/rust/src/models/error_generic.rs +++ b/clients/client/rust/src/models/error_generic.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/error_o_auth2.rs b/clients/client/rust/src/models/error_o_auth2.rs index 7cc5697af5d..b1ae54c4130 100644 --- a/clients/client/rust/src/models/error_o_auth2.rs +++ b/clients/client/rust/src/models/error_o_auth2.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/expanded_permission_tree.rs b/clients/client/rust/src/models/expanded_permission_tree.rs index 7c3a76f3eb0..e7d51e9756a 100644 --- a/clients/client/rust/src/models/expanded_permission_tree.rs +++ b/clients/client/rust/src/models/expanded_permission_tree.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/flow_error.rs b/clients/client/rust/src/models/flow_error.rs index 7f65f8f7598..8f43c0df229 100644 --- a/clients/client/rust/src/models/flow_error.rs +++ b/clients/client/rust/src/models/flow_error.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/generic_error.rs b/clients/client/rust/src/models/generic_error.rs index fb45895561a..7ae25f6a6ea 100644 --- a/clients/client/rust/src/models/generic_error.rs +++ b/clients/client/rust/src/models/generic_error.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/generic_error_content.rs b/clients/client/rust/src/models/generic_error_content.rs index 2063e503efe..7abdd8ccd9a 100644 --- a/clients/client/rust/src/models/generic_error_content.rs +++ b/clients/client/rust/src/models/generic_error_content.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/generic_usage.rs b/clients/client/rust/src/models/generic_usage.rs index ab2921a35a2..b81baede004 100644 --- a/clients/client/rust/src/models/generic_usage.rs +++ b/clients/client/rust/src/models/generic_usage.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/get_managed_identity_schema_location.rs b/clients/client/rust/src/models/get_managed_identity_schema_location.rs index 7d9b41ebe53..a8d14c85f77 100644 --- a/clients/client/rust/src/models/get_managed_identity_schema_location.rs +++ b/clients/client/rust/src/models/get_managed_identity_schema_location.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/get_project_metrics_response.rs b/clients/client/rust/src/models/get_project_metrics_response.rs index 64db4018f6c..811d5f48f6a 100644 --- a/clients/client/rust/src/models/get_project_metrics_response.rs +++ b/clients/client/rust/src/models/get_project_metrics_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/get_version_200_response.rs b/clients/client/rust/src/models/get_version_200_response.rs index ff4965fe1e4..aed519a54ce 100644 --- a/clients/client/rust/src/models/get_version_200_response.rs +++ b/clients/client/rust/src/models/get_version_200_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/health_not_ready_status.rs b/clients/client/rust/src/models/health_not_ready_status.rs index cd76570da1b..f5a0b89dad0 100644 --- a/clients/client/rust/src/models/health_not_ready_status.rs +++ b/clients/client/rust/src/models/health_not_ready_status.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/health_status.rs b/clients/client/rust/src/models/health_status.rs index b7eb04d03f1..7fde6a63642 100644 --- a/clients/client/rust/src/models/health_status.rs +++ b/clients/client/rust/src/models/health_status.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity.rs b/clients/client/rust/src/models/identity.rs index 7e16c20393d..bdf7095aeeb 100644 --- a/clients/client/rust/src/models/identity.rs +++ b/clients/client/rust/src/models/identity.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_credentials.rs b/clients/client/rust/src/models/identity_credentials.rs index 272110666a4..8a600209917 100644 --- a/clients/client/rust/src/models/identity_credentials.rs +++ b/clients/client/rust/src/models/identity_credentials.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_credentials_oidc.rs b/clients/client/rust/src/models/identity_credentials_oidc.rs index d08f77f4dc6..1573c5188b9 100644 --- a/clients/client/rust/src/models/identity_credentials_oidc.rs +++ b/clients/client/rust/src/models/identity_credentials_oidc.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_credentials_oidc_provider.rs b/clients/client/rust/src/models/identity_credentials_oidc_provider.rs index e10b2a0cafc..5493f725e88 100644 --- a/clients/client/rust/src/models/identity_credentials_oidc_provider.rs +++ b/clients/client/rust/src/models/identity_credentials_oidc_provider.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_credentials_password.rs b/clients/client/rust/src/models/identity_credentials_password.rs index 9155411de0c..b66df041f64 100644 --- a/clients/client/rust/src/models/identity_credentials_password.rs +++ b/clients/client/rust/src/models/identity_credentials_password.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_credentials_type.rs b/clients/client/rust/src/models/identity_credentials_type.rs index bd73db1ddb9..11e97684b0b 100644 --- a/clients/client/rust/src/models/identity_credentials_type.rs +++ b/clients/client/rust/src/models/identity_credentials_type.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_patch.rs b/clients/client/rust/src/models/identity_patch.rs index f9878eb7fd2..9d2b77c3e52 100644 --- a/clients/client/rust/src/models/identity_patch.rs +++ b/clients/client/rust/src/models/identity_patch.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_patch_response.rs b/clients/client/rust/src/models/identity_patch_response.rs index 74d9ee8e0d0..cb487fc3d54 100644 --- a/clients/client/rust/src/models/identity_patch_response.rs +++ b/clients/client/rust/src/models/identity_patch_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_schema_container.rs b/clients/client/rust/src/models/identity_schema_container.rs index 0ac9112778c..91c61ea7eda 100644 --- a/clients/client/rust/src/models/identity_schema_container.rs +++ b/clients/client/rust/src/models/identity_schema_container.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_schema_preset.rs b/clients/client/rust/src/models/identity_schema_preset.rs index 77948184841..7371fa74db9 100644 --- a/clients/client/rust/src/models/identity_schema_preset.rs +++ b/clients/client/rust/src/models/identity_schema_preset.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_state.rs b/clients/client/rust/src/models/identity_state.rs index 95ceb9a00a5..cb11c3b3e41 100644 --- a/clients/client/rust/src/models/identity_state.rs +++ b/clients/client/rust/src/models/identity_state.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_with_credentials.rs b/clients/client/rust/src/models/identity_with_credentials.rs index 0b60dd5c34c..94e42a23ae1 100644 --- a/clients/client/rust/src/models/identity_with_credentials.rs +++ b/clients/client/rust/src/models/identity_with_credentials.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_with_credentials_oidc.rs b/clients/client/rust/src/models/identity_with_credentials_oidc.rs index e2118345682..639b85918b6 100644 --- a/clients/client/rust/src/models/identity_with_credentials_oidc.rs +++ b/clients/client/rust/src/models/identity_with_credentials_oidc.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_with_credentials_oidc_config.rs b/clients/client/rust/src/models/identity_with_credentials_oidc_config.rs index 761fe147113..386251676c2 100644 --- a/clients/client/rust/src/models/identity_with_credentials_oidc_config.rs +++ b/clients/client/rust/src/models/identity_with_credentials_oidc_config.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_with_credentials_oidc_config_provider.rs b/clients/client/rust/src/models/identity_with_credentials_oidc_config_provider.rs index 129ad74652d..7004ad99159 100644 --- a/clients/client/rust/src/models/identity_with_credentials_oidc_config_provider.rs +++ b/clients/client/rust/src/models/identity_with_credentials_oidc_config_provider.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_with_credentials_password.rs b/clients/client/rust/src/models/identity_with_credentials_password.rs index 4ee7b0a762c..4b2dd2772e5 100644 --- a/clients/client/rust/src/models/identity_with_credentials_password.rs +++ b/clients/client/rust/src/models/identity_with_credentials_password.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/identity_with_credentials_password_config.rs b/clients/client/rust/src/models/identity_with_credentials_password_config.rs index 6f49327b590..fbf67939234 100644 --- a/clients/client/rust/src/models/identity_with_credentials_password_config.rs +++ b/clients/client/rust/src/models/identity_with_credentials_password_config.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/internal_get_project_branding_body.rs b/clients/client/rust/src/models/internal_get_project_branding_body.rs index acc13546d63..70c6eca04db 100644 --- a/clients/client/rust/src/models/internal_get_project_branding_body.rs +++ b/clients/client/rust/src/models/internal_get_project_branding_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/internal_is_ax_welcome_screen_enabled_for_project_body.rs b/clients/client/rust/src/models/internal_is_ax_welcome_screen_enabled_for_project_body.rs index 5d873a82dbb..d1973fc3f87 100644 --- a/clients/client/rust/src/models/internal_is_ax_welcome_screen_enabled_for_project_body.rs +++ b/clients/client/rust/src/models/internal_is_ax_welcome_screen_enabled_for_project_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_body.rs b/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_body.rs index ff2a00ef355..39f39a164b3 100644 --- a/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_body.rs +++ b/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_response.rs b/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_response.rs index 42a982c0bfe..9db8d966525 100644 --- a/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_response.rs +++ b/clients/client/rust/src/models/internal_is_owner_for_project_by_slug_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/internal_provision_mock_subscription.rs b/clients/client/rust/src/models/internal_provision_mock_subscription.rs index 04f5f7764b3..28d2c0bc8f8 100644 --- a/clients/client/rust/src/models/internal_provision_mock_subscription.rs +++ b/clients/client/rust/src/models/internal_provision_mock_subscription.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/introspected_o_auth2_token.rs b/clients/client/rust/src/models/introspected_o_auth2_token.rs index f8128b0954c..7bfc8f973be 100644 --- a/clients/client/rust/src/models/introspected_o_auth2_token.rs +++ b/clients/client/rust/src/models/introspected_o_auth2_token.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/is_owner_for_project_by_slug.rs b/clients/client/rust/src/models/is_owner_for_project_by_slug.rs index 2ce40cefa60..fc6013f4b37 100644 --- a/clients/client/rust/src/models/is_owner_for_project_by_slug.rs +++ b/clients/client/rust/src/models/is_owner_for_project_by_slug.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/is_ready_200_response.rs b/clients/client/rust/src/models/is_ready_200_response.rs index 6faad03386c..831f3be3772 100644 --- a/clients/client/rust/src/models/is_ready_200_response.rs +++ b/clients/client/rust/src/models/is_ready_200_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/is_ready_503_response.rs b/clients/client/rust/src/models/is_ready_503_response.rs index 6d19daa995e..42272454d99 100644 --- a/clients/client/rust/src/models/is_ready_503_response.rs +++ b/clients/client/rust/src/models/is_ready_503_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/json_patch.rs b/clients/client/rust/src/models/json_patch.rs index c4cb82be51e..bceface2fed 100644 --- a/clients/client/rust/src/models/json_patch.rs +++ b/clients/client/rust/src/models/json_patch.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/json_web_key.rs b/clients/client/rust/src/models/json_web_key.rs index ff8a4ab9f8f..bccc7d8af3f 100644 --- a/clients/client/rust/src/models/json_web_key.rs +++ b/clients/client/rust/src/models/json_web_key.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/json_web_key_set.rs b/clients/client/rust/src/models/json_web_key_set.rs index 83cf7a0fe90..a3d4ce0b156 100644 --- a/clients/client/rust/src/models/json_web_key_set.rs +++ b/clients/client/rust/src/models/json_web_key_set.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/keto_namespace.rs b/clients/client/rust/src/models/keto_namespace.rs index a94d7a84527..644f8b9a277 100644 --- a/clients/client/rust/src/models/keto_namespace.rs +++ b/clients/client/rust/src/models/keto_namespace.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/login_flow.rs b/clients/client/rust/src/models/login_flow.rs index b6576b38a75..93b0e9056d3 100644 --- a/clients/client/rust/src/models/login_flow.rs +++ b/clients/client/rust/src/models/login_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/logout_flow.rs b/clients/client/rust/src/models/logout_flow.rs index 974a06f016b..82654deaaac 100644 --- a/clients/client/rust/src/models/logout_flow.rs +++ b/clients/client/rust/src/models/logout_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/managed_identity_schema.rs b/clients/client/rust/src/models/managed_identity_schema.rs index 9fe37dada7d..ced55605a25 100644 --- a/clients/client/rust/src/models/managed_identity_schema.rs +++ b/clients/client/rust/src/models/managed_identity_schema.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/managed_identity_schema_validation_result.rs b/clients/client/rust/src/models/managed_identity_schema_validation_result.rs index a382065c64f..25fe3e0973f 100644 --- a/clients/client/rust/src/models/managed_identity_schema_validation_result.rs +++ b/clients/client/rust/src/models/managed_identity_schema_validation_result.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/member_invite.rs b/clients/client/rust/src/models/member_invite.rs index 2facfbfc5fe..237f782e171 100644 --- a/clients/client/rust/src/models/member_invite.rs +++ b/clients/client/rust/src/models/member_invite.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/message.rs b/clients/client/rust/src/models/message.rs index 197ec9eea48..8c2d1c48403 100644 --- a/clients/client/rust/src/models/message.rs +++ b/clients/client/rust/src/models/message.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/message_dispatch.rs b/clients/client/rust/src/models/message_dispatch.rs index 92c867e2c44..6df502bd8e1 100644 --- a/clients/client/rust/src/models/message_dispatch.rs +++ b/clients/client/rust/src/models/message_dispatch.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/metrics_datapoint.rs b/clients/client/rust/src/models/metrics_datapoint.rs index ba2952eca68..96173b041e9 100644 --- a/clients/client/rust/src/models/metrics_datapoint.rs +++ b/clients/client/rust/src/models/metrics_datapoint.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/namespace.rs b/clients/client/rust/src/models/namespace.rs index de05d5f0221..098181d8924 100644 --- a/clients/client/rust/src/models/namespace.rs +++ b/clients/client/rust/src/models/namespace.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/needs_privileged_session_error.rs b/clients/client/rust/src/models/needs_privileged_session_error.rs index 3330ef71965..08e61ca507a 100644 --- a/clients/client/rust/src/models/needs_privileged_session_error.rs +++ b/clients/client/rust/src/models/needs_privileged_session_error.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/normalized_project.rs b/clients/client/rust/src/models/normalized_project.rs index 78517be5617..163cb712f30 100644 --- a/clients/client/rust/src/models/normalized_project.rs +++ b/clients/client/rust/src/models/normalized_project.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/normalized_project_revision.rs b/clients/client/rust/src/models/normalized_project_revision.rs index ca0fc706e76..f78606d3183 100644 --- a/clients/client/rust/src/models/normalized_project_revision.rs +++ b/clients/client/rust/src/models/normalized_project_revision.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -153,6 +153,9 @@ pub struct NormalizedProjectRevision { /// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- #[serde(rename = "kratos_courier_smtp_headers", skip_serializing_if = "Option::is_none")] pub kratos_courier_smtp_headers: Option, + /// Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + #[serde(rename = "kratos_courier_smtp_local_name", skip_serializing_if = "Option::is_none")] + pub kratos_courier_smtp_local_name: Option, /// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. #[serde(rename = "kratos_courier_templates_recovery_code_invalid_email_body_html", skip_serializing_if = "Option::is_none")] pub kratos_courier_templates_recovery_code_invalid_email_body_html: Option, @@ -514,6 +517,7 @@ impl NormalizedProjectRevision { kratos_courier_smtp_from_address: None, kratos_courier_smtp_from_name: None, kratos_courier_smtp_headers: None, + kratos_courier_smtp_local_name: None, kratos_courier_templates_recovery_code_invalid_email_body_html: None, kratos_courier_templates_recovery_code_invalid_email_body_plaintext: None, kratos_courier_templates_recovery_code_invalid_email_subject: None, diff --git a/clients/client/rust/src/models/normalized_project_revision_hook.rs b/clients/client/rust/src/models/normalized_project_revision_hook.rs index 69b169f3e9e..9721250792a 100644 --- a/clients/client/rust/src/models/normalized_project_revision_hook.rs +++ b/clients/client/rust/src/models/normalized_project_revision_hook.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/normalized_project_revision_identity_schema.rs b/clients/client/rust/src/models/normalized_project_revision_identity_schema.rs index d962dc9a2a1..b4218cbdd0e 100644 --- a/clients/client/rust/src/models/normalized_project_revision_identity_schema.rs +++ b/clients/client/rust/src/models/normalized_project_revision_identity_schema.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/normalized_project_revision_third_party_provider.rs b/clients/client/rust/src/models/normalized_project_revision_third_party_provider.rs index feb3b00d2a7..621a413dcec 100644 --- a/clients/client/rust/src/models/normalized_project_revision_third_party_provider.rs +++ b/clients/client/rust/src/models/normalized_project_revision_third_party_provider.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_client.rs b/clients/client/rust/src/models/o_auth2_client.rs index c0587697e6b..19bfd544150 100644 --- a/clients/client/rust/src/models/o_auth2_client.rs +++ b/clients/client/rust/src/models/o_auth2_client.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_client_token_lifespans.rs b/clients/client/rust/src/models/o_auth2_client_token_lifespans.rs index 3fd99c498eb..9d9e536e976 100644 --- a/clients/client/rust/src/models/o_auth2_client_token_lifespans.rs +++ b/clients/client/rust/src/models/o_auth2_client_token_lifespans.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_consent_request.rs b/clients/client/rust/src/models/o_auth2_consent_request.rs index 9e6ec4b49b9..ee873800636 100644 --- a/clients/client/rust/src/models/o_auth2_consent_request.rs +++ b/clients/client/rust/src/models/o_auth2_consent_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_consent_request_open_id_connect_context.rs b/clients/client/rust/src/models/o_auth2_consent_request_open_id_connect_context.rs index da2e4819de6..7aa1281e2fb 100644 --- a/clients/client/rust/src/models/o_auth2_consent_request_open_id_connect_context.rs +++ b/clients/client/rust/src/models/o_auth2_consent_request_open_id_connect_context.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_consent_session.rs b/clients/client/rust/src/models/o_auth2_consent_session.rs index 28e463dffd3..b629db5076c 100644 --- a/clients/client/rust/src/models/o_auth2_consent_session.rs +++ b/clients/client/rust/src/models/o_auth2_consent_session.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_consent_session_expires_at.rs b/clients/client/rust/src/models/o_auth2_consent_session_expires_at.rs index dffed241a47..aa77729f9de 100644 --- a/clients/client/rust/src/models/o_auth2_consent_session_expires_at.rs +++ b/clients/client/rust/src/models/o_auth2_consent_session_expires_at.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_login_request.rs b/clients/client/rust/src/models/o_auth2_login_request.rs index 39599648422..e831880eef2 100644 --- a/clients/client/rust/src/models/o_auth2_login_request.rs +++ b/clients/client/rust/src/models/o_auth2_login_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_logout_request.rs b/clients/client/rust/src/models/o_auth2_logout_request.rs index 68e878aef35..55c5a62c587 100644 --- a/clients/client/rust/src/models/o_auth2_logout_request.rs +++ b/clients/client/rust/src/models/o_auth2_logout_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_redirect_to.rs b/clients/client/rust/src/models/o_auth2_redirect_to.rs index 9871099141b..994dae8c08d 100644 --- a/clients/client/rust/src/models/o_auth2_redirect_to.rs +++ b/clients/client/rust/src/models/o_auth2_redirect_to.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/o_auth2_token_exchange.rs b/clients/client/rust/src/models/o_auth2_token_exchange.rs index 3b005ea4440..b497c7665f7 100644 --- a/clients/client/rust/src/models/o_auth2_token_exchange.rs +++ b/clients/client/rust/src/models/o_auth2_token_exchange.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/oidc_configuration.rs b/clients/client/rust/src/models/oidc_configuration.rs index 78a9764dba0..2924dc5af29 100644 --- a/clients/client/rust/src/models/oidc_configuration.rs +++ b/clients/client/rust/src/models/oidc_configuration.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/oidc_user_info.rs b/clients/client/rust/src/models/oidc_user_info.rs index 9c8ba4cd4ac..9ba6cd8a932 100644 --- a/clients/client/rust/src/models/oidc_user_info.rs +++ b/clients/client/rust/src/models/oidc_user_info.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/pagination.rs b/clients/client/rust/src/models/pagination.rs index c6c97f9f61b..6500564bc7b 100644 --- a/clients/client/rust/src/models/pagination.rs +++ b/clients/client/rust/src/models/pagination.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/pagination_headers.rs b/clients/client/rust/src/models/pagination_headers.rs index 9d66d82eb61..c7551050333 100644 --- a/clients/client/rust/src/models/pagination_headers.rs +++ b/clients/client/rust/src/models/pagination_headers.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/parse_error.rs b/clients/client/rust/src/models/parse_error.rs index 9486e431911..7519ad2a5b5 100644 --- a/clients/client/rust/src/models/parse_error.rs +++ b/clients/client/rust/src/models/parse_error.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/patch_identities_body.rs b/clients/client/rust/src/models/patch_identities_body.rs index 3b14ecd5828..155c6171d63 100644 --- a/clients/client/rust/src/models/patch_identities_body.rs +++ b/clients/client/rust/src/models/patch_identities_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/perform_native_logout_body.rs b/clients/client/rust/src/models/perform_native_logout_body.rs index 6d5cad768e3..21cdd98013f 100644 --- a/clients/client/rust/src/models/perform_native_logout_body.rs +++ b/clients/client/rust/src/models/perform_native_logout_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/plan.rs b/clients/client/rust/src/models/plan.rs index 207050a42f7..ef6b62f8967 100644 --- a/clients/client/rust/src/models/plan.rs +++ b/clients/client/rust/src/models/plan.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/plan_details.rs b/clients/client/rust/src/models/plan_details.rs index 4562150f8d3..a1d1b027500 100644 --- a/clients/client/rust/src/models/plan_details.rs +++ b/clients/client/rust/src/models/plan_details.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/post_check_permission_body.rs b/clients/client/rust/src/models/post_check_permission_body.rs index 374f0940262..23dae97b702 100644 --- a/clients/client/rust/src/models/post_check_permission_body.rs +++ b/clients/client/rust/src/models/post_check_permission_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/post_check_permission_or_error_body.rs b/clients/client/rust/src/models/post_check_permission_or_error_body.rs index 43164f3562a..56634edf394 100644 --- a/clients/client/rust/src/models/post_check_permission_or_error_body.rs +++ b/clients/client/rust/src/models/post_check_permission_or_error_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project.rs b/clients/client/rust/src/models/project.rs index 5bdc7799bab..38b9f0e8a0e 100644 --- a/clients/client/rust/src/models/project.rs +++ b/clients/client/rust/src/models/project.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_api_key.rs b/clients/client/rust/src/models/project_api_key.rs index 82dbd113bbb..a79549d2a9b 100644 --- a/clients/client/rust/src/models/project_api_key.rs +++ b/clients/client/rust/src/models/project_api_key.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_branding.rs b/clients/client/rust/src/models/project_branding.rs index 5bbe6bb9231..e719bbe0221 100644 --- a/clients/client/rust/src/models/project_branding.rs +++ b/clients/client/rust/src/models/project_branding.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_branding_colors.rs b/clients/client/rust/src/models/project_branding_colors.rs index f4081e6f644..7685c0bf59b 100644 --- a/clients/client/rust/src/models/project_branding_colors.rs +++ b/clients/client/rust/src/models/project_branding_colors.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_branding_theme.rs b/clients/client/rust/src/models/project_branding_theme.rs index 27eafb566dd..2e47f5b2213 100644 --- a/clients/client/rust/src/models/project_branding_theme.rs +++ b/clients/client/rust/src/models/project_branding_theme.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_host.rs b/clients/client/rust/src/models/project_host.rs index 19fd43d1606..53f3402bf31 100644 --- a/clients/client/rust/src/models/project_host.rs +++ b/clients/client/rust/src/models/project_host.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_metadata.rs b/clients/client/rust/src/models/project_metadata.rs index b416c3f1a37..549eba8b032 100644 --- a/clients/client/rust/src/models/project_metadata.rs +++ b/clients/client/rust/src/models/project_metadata.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_service_identity.rs b/clients/client/rust/src/models/project_service_identity.rs index 001ce764e52..7813ae09583 100644 --- a/clients/client/rust/src/models/project_service_identity.rs +++ b/clients/client/rust/src/models/project_service_identity.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_service_o_auth2.rs b/clients/client/rust/src/models/project_service_o_auth2.rs index d6222a260b7..2fffe26f747 100644 --- a/clients/client/rust/src/models/project_service_o_auth2.rs +++ b/clients/client/rust/src/models/project_service_o_auth2.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_service_permission.rs b/clients/client/rust/src/models/project_service_permission.rs index 8e0dbd26b63..a9fded7e1bc 100644 --- a/clients/client/rust/src/models/project_service_permission.rs +++ b/clients/client/rust/src/models/project_service_permission.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_services.rs b/clients/client/rust/src/models/project_services.rs index df57e1a7f30..80dbccfd6db 100644 --- a/clients/client/rust/src/models/project_services.rs +++ b/clients/client/rust/src/models/project_services.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/quota_usage.rs b/clients/client/rust/src/models/quota_usage.rs index 2b9b588d6f5..4d2a9348ddb 100644 --- a/clients/client/rust/src/models/quota_usage.rs +++ b/clients/client/rust/src/models/quota_usage.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/recovery_code_for_identity.rs b/clients/client/rust/src/models/recovery_code_for_identity.rs index ca04cd85c06..07db04da629 100644 --- a/clients/client/rust/src/models/recovery_code_for_identity.rs +++ b/clients/client/rust/src/models/recovery_code_for_identity.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/recovery_flow.rs b/clients/client/rust/src/models/recovery_flow.rs index 7dc412ac617..3f048f9a6b8 100644 --- a/clients/client/rust/src/models/recovery_flow.rs +++ b/clients/client/rust/src/models/recovery_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/recovery_flow_state.rs b/clients/client/rust/src/models/recovery_flow_state.rs index 4627e1c3ab6..68d18a83313 100644 --- a/clients/client/rust/src/models/recovery_flow_state.rs +++ b/clients/client/rust/src/models/recovery_flow_state.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/recovery_identity_address.rs b/clients/client/rust/src/models/recovery_identity_address.rs index 370c39bfa9e..83638371fad 100644 --- a/clients/client/rust/src/models/recovery_identity_address.rs +++ b/clients/client/rust/src/models/recovery_identity_address.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/recovery_link_for_identity.rs b/clients/client/rust/src/models/recovery_link_for_identity.rs index 3fc35b7b48c..ba0d5986de7 100644 --- a/clients/client/rust/src/models/recovery_link_for_identity.rs +++ b/clients/client/rust/src/models/recovery_link_for_identity.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/registration_flow.rs b/clients/client/rust/src/models/registration_flow.rs index dfa3d2596a9..4a80752fccc 100644 --- a/clients/client/rust/src/models/registration_flow.rs +++ b/clients/client/rust/src/models/registration_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/reject_o_auth2_request.rs b/clients/client/rust/src/models/reject_o_auth2_request.rs index 585ea0f21c9..bef48e6b3c6 100644 --- a/clients/client/rust/src/models/reject_o_auth2_request.rs +++ b/clients/client/rust/src/models/reject_o_auth2_request.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/relation_query.rs b/clients/client/rust/src/models/relation_query.rs index bc406f400a4..3d5f0ae4e7e 100644 --- a/clients/client/rust/src/models/relation_query.rs +++ b/clients/client/rust/src/models/relation_query.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/relationship.rs b/clients/client/rust/src/models/relationship.rs index a393d6287f6..2dcfec200e6 100644 --- a/clients/client/rust/src/models/relationship.rs +++ b/clients/client/rust/src/models/relationship.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/relationship_namespaces.rs b/clients/client/rust/src/models/relationship_namespaces.rs index 4768f4ba9d7..9b4decd91b3 100644 --- a/clients/client/rust/src/models/relationship_namespaces.rs +++ b/clients/client/rust/src/models/relationship_namespaces.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/relationship_patch.rs b/clients/client/rust/src/models/relationship_patch.rs index 6674cb6e18d..eefc738278c 100644 --- a/clients/client/rust/src/models/relationship_patch.rs +++ b/clients/client/rust/src/models/relationship_patch.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/relationships.rs b/clients/client/rust/src/models/relationships.rs index 093b44c06c5..efc7491aa5e 100644 --- a/clients/client/rust/src/models/relationships.rs +++ b/clients/client/rust/src/models/relationships.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/rfc6749_error_json.rs b/clients/client/rust/src/models/rfc6749_error_json.rs index 02421bd5f04..e8270f23fe4 100644 --- a/clients/client/rust/src/models/rfc6749_error_json.rs +++ b/clients/client/rust/src/models/rfc6749_error_json.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/schema_patch.rs b/clients/client/rust/src/models/schema_patch.rs index 917eba5cbe8..c7db1ee2437 100644 --- a/clients/client/rust/src/models/schema_patch.rs +++ b/clients/client/rust/src/models/schema_patch.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/self_service_flow_expired_error.rs b/clients/client/rust/src/models/self_service_flow_expired_error.rs index d8adfa36ce9..ef3dddfed52 100644 --- a/clients/client/rust/src/models/self_service_flow_expired_error.rs +++ b/clients/client/rust/src/models/self_service_flow_expired_error.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/session.rs b/clients/client/rust/src/models/session.rs index d7368100d1e..ba2158f2bfe 100644 --- a/clients/client/rust/src/models/session.rs +++ b/clients/client/rust/src/models/session.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/session_authentication_method.rs b/clients/client/rust/src/models/session_authentication_method.rs index f876e98adbd..cd59ae674fd 100644 --- a/clients/client/rust/src/models/session_authentication_method.rs +++ b/clients/client/rust/src/models/session_authentication_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/session_device.rs b/clients/client/rust/src/models/session_device.rs index f1691ff1400..641a4513add 100644 --- a/clients/client/rust/src/models/session_device.rs +++ b/clients/client/rust/src/models/session_device.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/set_active_project_in_console_body.rs b/clients/client/rust/src/models/set_active_project_in_console_body.rs index 1d8fe657e8b..a7559c5bce1 100644 --- a/clients/client/rust/src/models/set_active_project_in_console_body.rs +++ b/clients/client/rust/src/models/set_active_project_in_console_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/set_custom_domain_body.rs b/clients/client/rust/src/models/set_custom_domain_body.rs index 9c6be576efe..a63ba3929b9 100644 --- a/clients/client/rust/src/models/set_custom_domain_body.rs +++ b/clients/client/rust/src/models/set_custom_domain_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/set_project.rs b/clients/client/rust/src/models/set_project.rs index 519945e96b7..6b1b51d6242 100644 --- a/clients/client/rust/src/models/set_project.rs +++ b/clients/client/rust/src/models/set_project.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/set_project_branding_theme_body.rs b/clients/client/rust/src/models/set_project_branding_theme_body.rs index ed189488a50..dbaab2bba72 100644 --- a/clients/client/rust/src/models/set_project_branding_theme_body.rs +++ b/clients/client/rust/src/models/set_project_branding_theme_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/settings_flow.rs b/clients/client/rust/src/models/settings_flow.rs index d87fc7e664a..d42a66c3d9e 100644 --- a/clients/client/rust/src/models/settings_flow.rs +++ b/clients/client/rust/src/models/settings_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/settings_flow_state.rs b/clients/client/rust/src/models/settings_flow_state.rs index ff918de56f0..a42027f89b1 100644 --- a/clients/client/rust/src/models/settings_flow_state.rs +++ b/clients/client/rust/src/models/settings_flow_state.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/source_position.rs b/clients/client/rust/src/models/source_position.rs index 6849180d393..b17326f0393 100644 --- a/clients/client/rust/src/models/source_position.rs +++ b/clients/client/rust/src/models/source_position.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/stripe_customer.rs b/clients/client/rust/src/models/stripe_customer.rs index 297fc166a84..cb72ce03717 100644 --- a/clients/client/rust/src/models/stripe_customer.rs +++ b/clients/client/rust/src/models/stripe_customer.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/subject_set.rs b/clients/client/rust/src/models/subject_set.rs index f450182702e..17ffeccd081 100644 --- a/clients/client/rust/src/models/subject_set.rs +++ b/clients/client/rust/src/models/subject_set.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/subscription.rs b/clients/client/rust/src/models/subscription.rs index b415d140a6a..7b772bb8132 100644 --- a/clients/client/rust/src/models/subscription.rs +++ b/clients/client/rust/src/models/subscription.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/successful_code_exchange_response.rs b/clients/client/rust/src/models/successful_code_exchange_response.rs index 373bcb3e5d8..3c1f72e983a 100644 --- a/clients/client/rust/src/models/successful_code_exchange_response.rs +++ b/clients/client/rust/src/models/successful_code_exchange_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/successful_native_login.rs b/clients/client/rust/src/models/successful_native_login.rs index a4aed1a235f..839b4e2dba9 100644 --- a/clients/client/rust/src/models/successful_native_login.rs +++ b/clients/client/rust/src/models/successful_native_login.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/successful_native_registration.rs b/clients/client/rust/src/models/successful_native_registration.rs index 57b83d588c4..35299f5012b 100644 --- a/clients/client/rust/src/models/successful_native_registration.rs +++ b/clients/client/rust/src/models/successful_native_registration.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/successful_project_update.rs b/clients/client/rust/src/models/successful_project_update.rs index 5f1ae81ee92..ed4db727396 100644 --- a/clients/client/rust/src/models/successful_project_update.rs +++ b/clients/client/rust/src/models/successful_project_update.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/token_pagination.rs b/clients/client/rust/src/models/token_pagination.rs index 7245f2e99ae..c8928fd356f 100644 --- a/clients/client/rust/src/models/token_pagination.rs +++ b/clients/client/rust/src/models/token_pagination.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/token_pagination_headers.rs b/clients/client/rust/src/models/token_pagination_headers.rs index fdaa752b0cc..6d70bf1a155 100644 --- a/clients/client/rust/src/models/token_pagination_headers.rs +++ b/clients/client/rust/src/models/token_pagination_headers.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/token_pagination_request_parameters.rs b/clients/client/rust/src/models/token_pagination_request_parameters.rs index eab128b1bf1..00e190a47b1 100644 --- a/clients/client/rust/src/models/token_pagination_request_parameters.rs +++ b/clients/client/rust/src/models/token_pagination_request_parameters.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/token_pagination_response_headers.rs b/clients/client/rust/src/models/token_pagination_response_headers.rs index 9a954c61037..474db4310ad 100644 --- a/clients/client/rust/src/models/token_pagination_response_headers.rs +++ b/clients/client/rust/src/models/token_pagination_response_headers.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/trust_o_auth2_jwt_grant_issuer.rs b/clients/client/rust/src/models/trust_o_auth2_jwt_grant_issuer.rs index 72469856d53..84bd84dbf69 100644 --- a/clients/client/rust/src/models/trust_o_auth2_jwt_grant_issuer.rs +++ b/clients/client/rust/src/models/trust_o_auth2_jwt_grant_issuer.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_issuer.rs b/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_issuer.rs index 6a42d453a88..7d8bb38eaeb 100644 --- a/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_issuer.rs +++ b/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_issuer.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_json_web_key.rs b/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_json_web_key.rs index 8aa116774ba..06ef8a517b5 100644 --- a/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_json_web_key.rs +++ b/clients/client/rust/src/models/trusted_o_auth2_jwt_grant_json_web_key.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_container.rs b/clients/client/rust/src/models/ui_container.rs index f30fa5ca464..30759efa50a 100644 --- a/clients/client/rust/src/models/ui_container.rs +++ b/clients/client/rust/src/models/ui_container.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node.rs b/clients/client/rust/src/models/ui_node.rs index b3872a0459f..7318e1a07ec 100644 --- a/clients/client/rust/src/models/ui_node.rs +++ b/clients/client/rust/src/models/ui_node.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_anchor_attributes.rs b/clients/client/rust/src/models/ui_node_anchor_attributes.rs index 4bbdeb1c9a7..f081aa3fd07 100644 --- a/clients/client/rust/src/models/ui_node_anchor_attributes.rs +++ b/clients/client/rust/src/models/ui_node_anchor_attributes.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_attributes.rs b/clients/client/rust/src/models/ui_node_attributes.rs index 730e466a0ab..98003d9fe7f 100644 --- a/clients/client/rust/src/models/ui_node_attributes.rs +++ b/clients/client/rust/src/models/ui_node_attributes.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_image_attributes.rs b/clients/client/rust/src/models/ui_node_image_attributes.rs index 74713586699..984caa1b5eb 100644 --- a/clients/client/rust/src/models/ui_node_image_attributes.rs +++ b/clients/client/rust/src/models/ui_node_image_attributes.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_input_attributes.rs b/clients/client/rust/src/models/ui_node_input_attributes.rs index fca281b7b48..2a127676f99 100644 --- a/clients/client/rust/src/models/ui_node_input_attributes.rs +++ b/clients/client/rust/src/models/ui_node_input_attributes.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_meta.rs b/clients/client/rust/src/models/ui_node_meta.rs index 5825ff02a0d..1cbb53571a0 100644 --- a/clients/client/rust/src/models/ui_node_meta.rs +++ b/clients/client/rust/src/models/ui_node_meta.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_script_attributes.rs b/clients/client/rust/src/models/ui_node_script_attributes.rs index 1af96260929..c8e2a5c0e5c 100644 --- a/clients/client/rust/src/models/ui_node_script_attributes.rs +++ b/clients/client/rust/src/models/ui_node_script_attributes.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_node_text_attributes.rs b/clients/client/rust/src/models/ui_node_text_attributes.rs index ddc5d32c8c8..c98ae5816ad 100644 --- a/clients/client/rust/src/models/ui_node_text_attributes.rs +++ b/clients/client/rust/src/models/ui_node_text_attributes.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/ui_text.rs b/clients/client/rust/src/models/ui_text.rs index 127ea7bcaf1..ce9e355a2df 100644 --- a/clients/client/rust/src/models/ui_text.rs +++ b/clients/client/rust/src/models/ui_text.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_identity_body.rs b/clients/client/rust/src/models/update_identity_body.rs index 0a575917a38..65cadbc11d9 100644 --- a/clients/client/rust/src/models/update_identity_body.rs +++ b/clients/client/rust/src/models/update_identity_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_login_flow_body.rs b/clients/client/rust/src/models/update_login_flow_body.rs index 83435028e54..b9dcc02f71e 100644 --- a/clients/client/rust/src/models/update_login_flow_body.rs +++ b/clients/client/rust/src/models/update_login_flow_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_login_flow_with_lookup_secret_method.rs b/clients/client/rust/src/models/update_login_flow_with_lookup_secret_method.rs index 059a71fb934..0cb950edaa4 100644 --- a/clients/client/rust/src/models/update_login_flow_with_lookup_secret_method.rs +++ b/clients/client/rust/src/models/update_login_flow_with_lookup_secret_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_login_flow_with_oidc_method.rs b/clients/client/rust/src/models/update_login_flow_with_oidc_method.rs index 75fefc17447..a0e11066f8f 100644 --- a/clients/client/rust/src/models/update_login_flow_with_oidc_method.rs +++ b/clients/client/rust/src/models/update_login_flow_with_oidc_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_login_flow_with_password_method.rs b/clients/client/rust/src/models/update_login_flow_with_password_method.rs index 5bfa8c80551..207e64a61e5 100644 --- a/clients/client/rust/src/models/update_login_flow_with_password_method.rs +++ b/clients/client/rust/src/models/update_login_flow_with_password_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_login_flow_with_totp_method.rs b/clients/client/rust/src/models/update_login_flow_with_totp_method.rs index 01a58cf8a4c..79916944b88 100644 --- a/clients/client/rust/src/models/update_login_flow_with_totp_method.rs +++ b/clients/client/rust/src/models/update_login_flow_with_totp_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_login_flow_with_web_authn_method.rs b/clients/client/rust/src/models/update_login_flow_with_web_authn_method.rs index c5eda8ecf1e..510f08d8147 100644 --- a/clients/client/rust/src/models/update_login_flow_with_web_authn_method.rs +++ b/clients/client/rust/src/models/update_login_flow_with_web_authn_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_recovery_flow_body.rs b/clients/client/rust/src/models/update_recovery_flow_body.rs index 92ca88d8fa0..c736d571c06 100644 --- a/clients/client/rust/src/models/update_recovery_flow_body.rs +++ b/clients/client/rust/src/models/update_recovery_flow_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_recovery_flow_with_code_method.rs b/clients/client/rust/src/models/update_recovery_flow_with_code_method.rs index 9ba35388afd..32b275d01bf 100644 --- a/clients/client/rust/src/models/update_recovery_flow_with_code_method.rs +++ b/clients/client/rust/src/models/update_recovery_flow_with_code_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_recovery_flow_with_link_method.rs b/clients/client/rust/src/models/update_recovery_flow_with_link_method.rs index 29e3ffe1e15..9f9946ada46 100644 --- a/clients/client/rust/src/models/update_recovery_flow_with_link_method.rs +++ b/clients/client/rust/src/models/update_recovery_flow_with_link_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_registration_flow_body.rs b/clients/client/rust/src/models/update_registration_flow_body.rs index 59af743830a..86eefcaecd7 100644 --- a/clients/client/rust/src/models/update_registration_flow_body.rs +++ b/clients/client/rust/src/models/update_registration_flow_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_registration_flow_with_oidc_method.rs b/clients/client/rust/src/models/update_registration_flow_with_oidc_method.rs index e14dfed5359..2bb487be3b3 100644 --- a/clients/client/rust/src/models/update_registration_flow_with_oidc_method.rs +++ b/clients/client/rust/src/models/update_registration_flow_with_oidc_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_registration_flow_with_password_method.rs b/clients/client/rust/src/models/update_registration_flow_with_password_method.rs index f8977e4d603..9416b899602 100644 --- a/clients/client/rust/src/models/update_registration_flow_with_password_method.rs +++ b/clients/client/rust/src/models/update_registration_flow_with_password_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_registration_flow_with_web_authn_method.rs b/clients/client/rust/src/models/update_registration_flow_with_web_authn_method.rs index 07732873369..671a2f62ab0 100644 --- a/clients/client/rust/src/models/update_registration_flow_with_web_authn_method.rs +++ b/clients/client/rust/src/models/update_registration_flow_with_web_authn_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_body.rs b/clients/client/rust/src/models/update_settings_flow_body.rs index 37143574bf1..12a385a8452 100644 --- a/clients/client/rust/src/models/update_settings_flow_body.rs +++ b/clients/client/rust/src/models/update_settings_flow_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_with_lookup_method.rs b/clients/client/rust/src/models/update_settings_flow_with_lookup_method.rs index 28a19884d5c..24edeef822f 100644 --- a/clients/client/rust/src/models/update_settings_flow_with_lookup_method.rs +++ b/clients/client/rust/src/models/update_settings_flow_with_lookup_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_with_oidc_method.rs b/clients/client/rust/src/models/update_settings_flow_with_oidc_method.rs index 42f57a348c7..550aa25b15e 100644 --- a/clients/client/rust/src/models/update_settings_flow_with_oidc_method.rs +++ b/clients/client/rust/src/models/update_settings_flow_with_oidc_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_with_password_method.rs b/clients/client/rust/src/models/update_settings_flow_with_password_method.rs index fad3f0f80fc..69dea396860 100644 --- a/clients/client/rust/src/models/update_settings_flow_with_password_method.rs +++ b/clients/client/rust/src/models/update_settings_flow_with_password_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_with_profile_method.rs b/clients/client/rust/src/models/update_settings_flow_with_profile_method.rs index 4c2e0b600c9..e07614ddfc0 100644 --- a/clients/client/rust/src/models/update_settings_flow_with_profile_method.rs +++ b/clients/client/rust/src/models/update_settings_flow_with_profile_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_with_totp_method.rs b/clients/client/rust/src/models/update_settings_flow_with_totp_method.rs index 42f8816eb35..cef89f0deed 100644 --- a/clients/client/rust/src/models/update_settings_flow_with_totp_method.rs +++ b/clients/client/rust/src/models/update_settings_flow_with_totp_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_settings_flow_with_web_authn_method.rs b/clients/client/rust/src/models/update_settings_flow_with_web_authn_method.rs index 267f350637f..bd7a216e11d 100644 --- a/clients/client/rust/src/models/update_settings_flow_with_web_authn_method.rs +++ b/clients/client/rust/src/models/update_settings_flow_with_web_authn_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_subscription_body.rs b/clients/client/rust/src/models/update_subscription_body.rs index 1b705263aa9..f64d816dde4 100644 --- a/clients/client/rust/src/models/update_subscription_body.rs +++ b/clients/client/rust/src/models/update_subscription_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_verification_flow_body.rs b/clients/client/rust/src/models/update_verification_flow_body.rs index c3609e4364e..047c1c079da 100644 --- a/clients/client/rust/src/models/update_verification_flow_body.rs +++ b/clients/client/rust/src/models/update_verification_flow_body.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_verification_flow_with_code_method.rs b/clients/client/rust/src/models/update_verification_flow_with_code_method.rs index 27f7eb04a22..5a0a78d5838 100644 --- a/clients/client/rust/src/models/update_verification_flow_with_code_method.rs +++ b/clients/client/rust/src/models/update_verification_flow_with_code_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/update_verification_flow_with_link_method.rs b/clients/client/rust/src/models/update_verification_flow_with_link_method.rs index 72007153947..a5f5f254040 100644 --- a/clients/client/rust/src/models/update_verification_flow_with_link_method.rs +++ b/clients/client/rust/src/models/update_verification_flow_with_link_method.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/usage.rs b/clients/client/rust/src/models/usage.rs index 2c14a887c2b..18170fc89b1 100644 --- a/clients/client/rust/src/models/usage.rs +++ b/clients/client/rust/src/models/usage.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/verifiable_credential_priming_response.rs b/clients/client/rust/src/models/verifiable_credential_priming_response.rs index c71a3e1fb89..f62e848bb0e 100644 --- a/clients/client/rust/src/models/verifiable_credential_priming_response.rs +++ b/clients/client/rust/src/models/verifiable_credential_priming_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/verifiable_credential_proof.rs b/clients/client/rust/src/models/verifiable_credential_proof.rs index 98637d6c69b..84d275222cc 100644 --- a/clients/client/rust/src/models/verifiable_credential_proof.rs +++ b/clients/client/rust/src/models/verifiable_credential_proof.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/verifiable_credential_response.rs b/clients/client/rust/src/models/verifiable_credential_response.rs index a9949a33e6f..472450093b2 100644 --- a/clients/client/rust/src/models/verifiable_credential_response.rs +++ b/clients/client/rust/src/models/verifiable_credential_response.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/verifiable_identity_address.rs b/clients/client/rust/src/models/verifiable_identity_address.rs index c4dab8bc1b8..22546047314 100644 --- a/clients/client/rust/src/models/verifiable_identity_address.rs +++ b/clients/client/rust/src/models/verifiable_identity_address.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/verification_flow.rs b/clients/client/rust/src/models/verification_flow.rs index 6f9def3ab55..c7d6434d232 100644 --- a/clients/client/rust/src/models/verification_flow.rs +++ b/clients/client/rust/src/models/verification_flow.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/verification_flow_state.rs b/clients/client/rust/src/models/verification_flow_state.rs index 8cb39776363..f9f864c6cd2 100644 --- a/clients/client/rust/src/models/verification_flow_state.rs +++ b/clients/client/rust/src/models/verification_flow_state.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/version.rs b/clients/client/rust/src/models/version.rs index bc51368dcf3..04c810cf28b 100644 --- a/clients/client/rust/src/models/version.rs +++ b/clients/client/rust/src/models/version.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/warning.rs b/clients/client/rust/src/models/warning.rs index 0fb03d0579e..676c6f0ac70 100644 --- a/clients/client/rust/src/models/warning.rs +++ b/clients/client/rust/src/models/warning.rs @@ -3,7 +3,7 @@ * * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/typescript/README.md b/clients/client/typescript/README.md index 32b38b56de2..f6e3e18761b 100644 --- a/clients/client/typescript/README.md +++ b/clients/client/typescript/README.md @@ -1,4 +1,4 @@ -## @ory/client@v1.1.44 +## @ory/client@v1.1.45 This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments: @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co _published:_ ``` -npm install @ory/client@v1.1.44 --save +npm install @ory/client@v1.1.45 --save ``` _unPublished (not recommended):_ diff --git a/clients/client/typescript/api.ts b/clients/client/typescript/api.ts index 4fa241acf48..626138be0b2 100644 --- a/clients/client/typescript/api.ts +++ b/clients/client/typescript/api.ts @@ -4,7 +4,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -2950,6 +2950,12 @@ export interface NormalizedProjectRevision { * @memberof NormalizedProjectRevision */ 'kratos_courier_smtp_headers'?: object | null; + /** + * Configures the local_name to use in SMTP connections This governs the \"courier.smtp.local_name\" setting. + * @type {string} + * @memberof NormalizedProjectRevision + */ + 'kratos_courier_smtp_local_name'?: string; /** * Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting. * @type {string} diff --git a/clients/client/typescript/base.ts b/clients/client/typescript/base.ts index 90e6bd7d7a7..a0ec42b80fe 100644 --- a/clients/client/typescript/base.ts +++ b/clients/client/typescript/base.ts @@ -4,7 +4,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/typescript/common.ts b/clients/client/typescript/common.ts index f77f60983e6..4d090d8d066 100644 --- a/clients/client/typescript/common.ts +++ b/clients/client/typescript/common.ts @@ -4,7 +4,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/typescript/configuration.ts b/clients/client/typescript/configuration.ts index a32d9b86b9f..90c10d4466d 100644 --- a/clients/client/typescript/configuration.ts +++ b/clients/client/typescript/configuration.ts @@ -4,7 +4,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/typescript/index.ts b/clients/client/typescript/index.ts index 3558851e275..ad5bfa44f72 100644 --- a/clients/client/typescript/index.ts +++ b/clients/client/typescript/index.ts @@ -4,7 +4,7 @@ * Ory APIs * 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. * - * The version of the OpenAPI document: v1.1.44 + * The version of the OpenAPI document: v1.1.45 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/clients/client/typescript/package-lock.json b/clients/client/typescript/package-lock.json index 9eab05429f4..9a7e238c31e 100644 --- a/clients/client/typescript/package-lock.json +++ b/clients/client/typescript/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ory/client", - "version": "v1.1.44", + "version": "v1.1.45", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ory/client", - "version": "v1.1.44", + "version": "v1.1.45", "license": "Apache-2.0", "dependencies": { "axios": "^0.21.4" diff --git a/clients/client/typescript/package.json b/clients/client/typescript/package.json index 01f87747675..5b247e9b9c2 100644 --- a/clients/client/typescript/package.json +++ b/clients/client/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@ory/client", - "version": "v1.1.44", + "version": "v1.1.45", "description": "OpenAPI client for @ory/client", "author": "ORY GmbH", "keywords": [ diff --git a/spec/client/v1.1.45.json b/spec/client/v1.1.45.json index a486e24553e..8d6a75a0f5d 100644 --- a/spec/client/v1.1.45.json +++ b/spec/client/v1.1.45.json @@ -1,15168 +1 @@ -{ - "components": { - "responses": { - "emptyResponse": { - "description": "Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is\ntypically 201." - }, - "errorOAuth2BadRequest": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "Bad Request Error Response" - }, - "errorOAuth2Default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "Default Error Response" - }, - "errorOAuth2NotFound": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "Not Found Error Response" - }, - "identitySchemas": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identitySchemas" - } - } - }, - "description": "List Identity JSON Schemas Response" - }, - "listCourierMessages": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/message" - }, - "type": "array" - } - } - }, - "description": "Paginated Courier Message List Response" - }, - "listIdentities": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/identity" - }, - "type": "array" - } - } - }, - "description": "Paginated Identity List Response" - }, - "listIdentitySessions": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/session" - }, - "type": "array" - } - } - }, - "description": "List Identity Sessions Response" - }, - "listMySessions": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/session" - }, - "type": "array" - } - } - }, - "description": "List My Session Response" - }, - "listOAuth2Clients": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/oAuth2Client" - }, - "type": "array" - } - } - }, - "description": "Paginated OAuth2 Client List Response" - }, - "listSessions": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/session" - }, - "type": "array" - } - } - }, - "description": "Session List Response\n\nThe response given when listing sessions in an administrative context." - } - }, - "schemas": { - "CORS": { - "properties": { - "enabled": { - "description": "Whether CORS is enabled for this endpoint.", - "type": "boolean" - }, - "origins": { - "description": "The allowed origins. Use `*` to allow all origins. A wildcard can also be used in the subdomain, i.e. `https://*.example.com` will allow all origins on all subdomains of `example.com`.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "enabled", - "origins" - ], - "type": "object" - }, - "CreateInviteResponse": { - "properties": { - "all_invites": { - "description": "A list of all invites for this resource", - "items": { - "$ref": "#/components/schemas/memberInvite" - }, - "type": "array" - }, - "created_invite": { - "$ref": "#/components/schemas/memberInvite" - } - }, - "required": [ - "created_invite", - "all_invites" - ], - "type": "object" - }, - "CreateProjectMemberInviteBody": { - "description": "Create Project MemberInvite Request Body", - "properties": { - "invitee_email": { - "description": "A email to invite", - "type": "string" - } - }, - "type": "object" - }, - "CreateVerifiableCredentialRequestBody": { - "properties": { - "format": { - "type": "string" - }, - "proof": { - "$ref": "#/components/schemas/VerifiableCredentialProof" - }, - "types": { - "items": { - "type": "string" - }, - "type": "array" - } - }, - "title": "CreateVerifiableCredentialRequestBody contains the request body to request a verifiable credential.", - "type": "object" - }, - "CustomHostnameStatus": { - "title": "CustomHostnameStatus is the enumeration of valid state values in the CustomHostnameSSL.", - "type": "string" - }, - "DefaultError": {}, - "Duration": { - "description": "A Duration represents the elapsed time between two instants\nas an int64 nanosecond count. The representation limits the\nlargest representable duration to approximately 290 years.", - "format": "int64", - "type": "integer" - }, - "GenericUsage": { - "properties": { - "additional_price": { - "description": "AdditionalPrice is the price per-unit exceeding IncludedUsage. A price of 0 means that no other items can be consumed.", - "format": "int64", - "type": "integer" - }, - "included_usage": { - "description": "IncludedUsage is the number of included items.", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "included_usage", - "additional_price" - ], - "title": "GenericUsage is the generic usage type that can be used for any feature.", - "type": "object" - }, - "ID": { - "format": "int64", - "type": "integer" - }, - "JSONRawMessage": { - "title": "JSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger.", - "type": "object" - }, - "KetoNamespace": { - "properties": { - "id": { - "format": "int64", - "type": "integer" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - "KetoNamespaces": { - "items": { - "$ref": "#/components/schemas/KetoNamespace" - }, - "type": "array" - }, - "NullBool": { - "nullable": true, - "type": "boolean" - }, - "NullDuration": { - "nullable": true, - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "NullInt": { - "nullable": true, - "type": "integer" - }, - "NullString": { - "nullable": true, - "type": "string" - }, - "NullTime": { - "format": "date-time", - "nullable": true, - "type": "string" - }, - "NullUUID": { - "format": "uuid4", - "nullable": true, - "type": "string" - }, - "ParseError": { - "properties": { - "end": { - "$ref": "#/components/schemas/SourcePosition" - }, - "message": { - "type": "string" - }, - "start": { - "$ref": "#/components/schemas/SourcePosition" - } - }, - "type": "object" - }, - "Plan": { - "properties": { - "name": { - "description": "Name is the name of the plan.", - "type": "string" - }, - "version": { - "description": "Version is the version of the plan. The combination of `name@version` must be unique.", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "name", - "version" - ], - "type": "object" - }, - "PlanDetails": { - "properties": { - "base_fee_monthly": { - "description": "BaseFeeMonthly is the monthly base fee for the plan.", - "format": "int64", - "type": "integer" - }, - "base_fee_yearly": { - "description": "BaseFeeYearly is the yearly base fee for the plan.", - "format": "int64", - "type": "integer" - }, - "custom": { - "description": "Custom is true if the plan is custom. This means it will be hidden from the pricing page.", - "type": "boolean" - }, - "description": { - "description": "Description is the description of the plan.", - "type": "string" - }, - "features": { - "additionalProperties": { - "$ref": "#/components/schemas/GenericUsage" - }, - "description": "Features are the feature definitions included in the plan.", - "type": "object" - }, - "name": { - "description": "Name is the name of the plan.", - "type": "string" - }, - "version": { - "description": "Version is the version of the plan. The combination of `name@version` must be unique.", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "name", - "version", - "description", - "custom", - "base_fee_monthly", - "base_fee_yearly", - "features" - ], - "type": "object" - }, - "Pricing": { - "items": { - "$ref": "#/components/schemas/PlanDetails" - }, - "type": "array" - }, - "RFC6749ErrorJson": { - "properties": { - "error": { - "type": "string" - }, - "error_debug": { - "type": "string" - }, - "error_description": { - "type": "string" - }, - "error_hint": { - "type": "string" - }, - "status_code": { - "format": "int64", - "type": "integer" - } - }, - "title": "RFC6749ErrorJson is a helper struct for JSON encoding/decoding of RFC6749Error.", - "type": "object" - }, - "RecoveryAddressType": { - "title": "RecoveryAddressType must not exceed 16 characters as that is the limitation in the SQL Schema.", - "type": "string" - }, - "SourcePosition": { - "properties": { - "Line": { - "format": "int64", - "type": "integer" - }, - "column": { - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "String": { - "$ref": "#/components/schemas/NullString" - }, - "StringSliceJSONFormat": { - "items": { - "type": "string" - }, - "title": "StringSliceJSONFormat represents []string{} which is encoded to/from JSON for SQL storage.", - "type": "array" - }, - "SubscriptionStatus": { - "description": "For `collection_method=charge_automatically` a subscription moves into `incomplete` if the initial payment attempt fails. A subscription in this state can only have metadata and default_source updated. Once the first invoice is paid, the subscription moves into an `active` state. If the first invoice is not paid within 23 hours, the subscription transitions to `incomplete_expired`. This is a terminal state, the open invoice will be voided and no further invoices will be generated.\n\nA subscription that is currently in a trial period is `trialing` and moves to `active` when the trial period is over.\n\nIf subscription `collection_method=charge_automatically` it becomes `past_due` when payment to renew it fails and `canceled` or `unpaid` (depending on your subscriptions settings) when Stripe has exhausted all payment retry attempts.\n\nIf subscription `collection_method=send_invoice` it becomes `past_due` when its invoice is not paid by the due date, and `canceled` or `unpaid` if it is still not paid by an additional deadline after that. Note that when a subscription has a status of `unpaid`, no subsequent invoices will be attempted (invoices will be created, but then immediately automatically closed). After receiving updated payment information from a customer, you may choose to reopen and pay their closed invoices.", - "title": "Possible values are `incomplete`, `incomplete_expired`, `trialing`, `active`, `past_due`, `canceled`, or `unpaid`.", - "type": "string" - }, - "Time": { - "format": "date-time", - "type": "string" - }, - "UUID": { - "format": "uuid4", - "type": "string" - }, - "Usage": { - "properties": { - "GenericUsage": { - "$ref": "#/components/schemas/GenericUsage" - } - }, - "type": "object" - }, - "VerifiableCredentialProof": { - "properties": { - "jwt": { - "type": "string" - }, - "proof_type": { - "type": "string" - } - }, - "title": "VerifiableCredentialProof contains the proof of a verifiable credential.", - "type": "object" - }, - "Warning": { - "properties": { - "code": { - "format": "int64", - "type": "integer" - }, - "message": { - "type": "string" - } - }, - "type": "object" - }, - "acceptOAuth2ConsentRequest": { - "properties": { - "grant_access_token_audience": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "grant_scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "handled_at": { - "$ref": "#/components/schemas/nullTime" - }, - "remember": { - "description": "Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same\nclient asks the same user for the same, or a subset of, scope.", - "type": "boolean" - }, - "remember_for": { - "description": "RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the\nauthorization will be remembered indefinitely.", - "format": "int64", - "type": "integer" - }, - "session": { - "$ref": "#/components/schemas/acceptOAuth2ConsentRequestSession" - } - }, - "title": "The request payload used to accept a consent request.", - "type": "object" - }, - "acceptOAuth2ConsentRequestSession": { - "properties": { - "access_token": { - "description": "AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the\nrefresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection.\nIf only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties\ncan access that endpoint as well, sensitive data from the session might be exposed to them. Use with care!" - }, - "id_token": { - "description": "IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session'id payloads are readable\nby anyone that has access to the ID Challenge. Use with care!" - } - }, - "title": "Pass session data to a consent request.", - "type": "object" - }, - "acceptOAuth2LoginRequest": { - "properties": { - "acr": { - "description": "ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it\nto express that, for example, a user authenticated using two factor authentication.", - "type": "string" - }, - "amr": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "context": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "extend_session_lifespan": { - "description": "Extend OAuth2 authentication session lifespan\n\nIf set to `true`, the OAuth2 authentication cookie lifespan is extended. This is for example useful if you want the user to be able to use `prompt=none` continuously.\n\nThis value can only be set to `true` if the user has an authentication, which is the case if the `skip` value is `true`.", - "type": "boolean" - }, - "force_subject_identifier": { - "description": "ForceSubjectIdentifier forces the \"pairwise\" user ID of the end-user that authenticated. The \"pairwise\" user ID refers to the\n(Pairwise Identifier Algorithm)[http://openid.net/specs/openid-connect-core-1_0.html#PairwiseAlg] of the OpenID\nConnect specification. It allows you to set an obfuscated subject (\"user\") identifier that is unique to the client.\n\nPlease note that this changes the user ID on endpoint /userinfo and sub claim of the ID Token. It does not change the\nsub claim in the OAuth 2.0 Introspection.\n\nPer default, ORY Hydra handles this value with its own algorithm. In case you want to set this yourself\nyou can use this field. Please note that setting this field has no effect if `pairwise` is not configured in\nORY Hydra or the OAuth 2.0 Client does not expect a pairwise identifier (set via `subject_type` key in the client's\nconfiguration).\n\nPlease also be aware that ORY Hydra is unable to properly compute this value during authentication. This implies\nthat you have to compute this value on every authentication process (probably depending on the client ID or some\nother unique value).\n\nIf you fail to compute the proper value, then authentication processes which have id_token_hint set might fail.", - "type": "string" - }, - "remember": { - "description": "Remember, if set to true, tells ORY Hydra to remember this user by telling the user agent (browser) to store\na cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, he/she\nwill not be asked to log in again.", - "type": "boolean" - }, - "remember_for": { - "description": "RememberFor sets how long the authentication should be remembered for in seconds. If set to `0`, the\nauthorization will be remembered for the duration of the browser session (using a session cookie).", - "format": "int64", - "type": "integer" - }, - "subject": { - "description": "Subject is the user ID of the end-user that authenticated.", - "type": "string" - } - }, - "required": [ - "subject" - ], - "title": "HandledLoginRequest is the request payload used to accept a login request.", - "type": "object" - }, - "activeProjectInConsole": { - "description": "The Active Project ID", - "properties": { - "project_id": { - "description": "The Active Project ID\n\nformat: uuid", - "type": "string" - } - }, - "type": "object" - }, - "authenticatorAssuranceLevel": { - "description": "The authenticator assurance level can be one of \"aal1\", \"aal2\", or \"aal3\". A higher number means that it is harder\nfor an attacker to compromise the account.\n\nGenerally, \"aal1\" implies that one authentication factor was used while AAL2 implies that two factors (e.g.\npassword + TOTP) have been used.\n\nTo learn more about these levels please head over to: https://www.ory.sh/kratos/docs/concepts/credentials", - "enum": [ - "aal0", - "aal1", - "aal2", - "aal3" - ], - "title": "Authenticator Assurance Level (AAL)", - "type": "string" - }, - "batchPatchIdentitiesResponse": { - "description": "Patch identities response", - "properties": { - "identities": { - "description": "The patch responses for the individual identities.", - "items": { - "$ref": "#/components/schemas/identityPatchResponse" - }, - "type": "array" - } - }, - "type": "object" - }, - "checkOplSyntaxBody": { - "description": "Ory Permission Language Document", - "type": "string" - }, - "checkOplSyntaxResult": { - "properties": { - "errors": { - "description": "The list of syntax errors", - "items": { - "$ref": "#/components/schemas/ParseError" - }, - "type": "array" - } - }, - "title": "CheckOPLSyntaxResponse represents the response for an OPL syntax check request.", - "type": "object" - }, - "checkPermissionResult": { - "description": "The content of the allowed field is mirrored in the HTTP status code.", - "properties": { - "allowed": { - "description": "whether the relation tuple is allowed", - "type": "boolean" - } - }, - "required": [ - "allowed" - ], - "title": "Check Permission Result", - "type": "object" - }, - "cloudAccount": { - "properties": { - "email": { - "type": "string" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - "continueWith": { - "discriminator": { - "mapping": { - "set_ory_session_token": "#/components/schemas/continueWithSetOrySessionToken", - "show_verification_ui": "#/components/schemas/continueWithVerificationUi" - }, - "propertyName": "action" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/continueWithVerificationUi" - }, - { - "$ref": "#/components/schemas/continueWithSetOrySessionToken" - } - ] - }, - "continueWithSetOrySessionToken": { - "description": "Indicates that a session was issued, and the application should use this token for authenticated requests", - "properties": { - "action": { - "description": "Action will always be `set_ory_session_token`\nset_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI", - "enum": [ - "set_ory_session_token", - "show_verification_ui" - ], - "type": "string", - "x-go-enum-desc": "set_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI" - }, - "ory_session_token": { - "description": "Token is the token of the session", - "type": "string" - } - }, - "required": [ - "action", - "ory_session_token" - ], - "type": "object" - }, - "continueWithVerificationUi": { - "description": "Indicates, that the UI flow could be continued by showing a verification ui", - "properties": { - "action": { - "description": "Action will always be `show_verification_ui`\nset_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI", - "enum": [ - "set_ory_session_token", - "show_verification_ui" - ], - "type": "string", - "x-go-enum-desc": "set_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI" - }, - "flow": { - "$ref": "#/components/schemas/continueWithVerificationUiFlow" - } - }, - "required": [ - "action", - "flow" - ], - "type": "object" - }, - "continueWithVerificationUiFlow": { - "properties": { - "id": { - "description": "The ID of the verification flow", - "format": "uuid", - "type": "string" - }, - "url": { - "description": "The URL of the verification flow", - "type": "string" - }, - "verifiable_address": { - "description": "The address that should be verified in this flow", - "type": "string" - } - }, - "required": [ - "id", - "verifiable_address" - ], - "type": "object" - }, - "courierMessageStatus": { - "description": "A Message's Status", - "enum": [ - "queued", - "sent", - "processing", - "abandoned" - ], - "type": "string" - }, - "courierMessageType": { - "description": "It can either be `email` or `phone`", - "enum": [ - "email", - "phone" - ], - "title": "A Message's Type", - "type": "string" - }, - "createCustomDomainBody": { - "description": "Create Custom Hostname Request Body", - "properties": { - "cookie_domain": { - "description": "The domain where cookies will be set. Has to be a parent domain of the custom hostname to work.", - "type": "string" - }, - "cors_allowed_origins": { - "description": "CORS Allowed origins for the custom hostname.", - "items": { - "type": "string" - }, - "type": "array" - }, - "cors_enabled": { - "description": "CORS Enabled for the custom hostname.", - "type": "boolean" - }, - "custom_ui_base_url": { - "description": "The base URL where the custom user interface will be exposed.", - "type": "string" - }, - "hostname": { - "description": "The custom hostname where the API will be exposed.", - "type": "string" - } - }, - "type": "object" - }, - "createIdentityBody": { - "description": "Create Identity Body", - "properties": { - "credentials": { - "$ref": "#/components/schemas/identityWithCredentials" - }, - "metadata_admin": { - "description": "Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/\u003cid\u003e`." - }, - "metadata_public": { - "description": "Store metadata about the identity which the identity itself can see when calling for example the\nsession endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field." - }, - "recovery_addresses": { - "description": "RecoveryAddresses contains all the addresses that can be used to recover an identity.\n\nUse this structure to import recovery addresses for an identity. Please keep in mind\nthat the address needs to be represented in the Identity Schema or this field will be overwritten\non the next identity update.", - "items": { - "$ref": "#/components/schemas/recoveryIdentityAddress" - }, - "type": "array" - }, - "schema_id": { - "description": "SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/identityState" - }, - "traits": { - "description": "Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_url`.", - "type": "object" - }, - "verifiable_addresses": { - "description": "VerifiableAddresses contains all the addresses that can be verified by the user.\n\nUse this structure to import verified addresses for an identity. Please keep in mind\nthat the address needs to be represented in the Identity Schema or this field will be overwritten\non the next identity update.", - "items": { - "$ref": "#/components/schemas/verifiableIdentityAddress" - }, - "type": "array" - } - }, - "required": [ - "schema_id", - "traits" - ], - "type": "object" - }, - "createJsonWebKeySet": { - "description": "Create JSON Web Key Set Request Body", - "properties": { - "alg": { - "description": "JSON Web Key Algorithm\n\nThe algorithm to be used for creating the key. Supports `RS256`, `ES256`, `ES512`, `HS512`, and `HS256`.", - "type": "string" - }, - "kid": { - "description": "JSON Web Key ID\n\nThe Key ID of the key to be created.", - "type": "string" - }, - "use": { - "description": "JSON Web Key Use\n\nThe \"use\" (public key use) parameter identifies the intended use of\nthe public key. The \"use\" parameter is employed to indicate whether\na public key is used for encrypting data or verifying the signature\non data. Valid values are \"enc\" and \"sig\".", - "type": "string" - } - }, - "required": [ - "alg", - "use", - "kid" - ], - "type": "object" - }, - "createProjectBody": { - "description": "Create Project Request Body", - "properties": { - "name": { - "description": "The name of the project to be created", - "type": "string" - } - }, - "required": [ - "name" - ], - "type": "object" - }, - "createProjectBranding": { - "description": "Create a Project Branding", - "properties": { - "logo_type": { - "type": "string" - }, - "logo_url": { - "type": "string" - }, - "name": { - "type": "string" - }, - "theme": { - "$ref": "#/components/schemas/projectBrandingColors" - } - }, - "type": "object" - }, - "createProjectMemberInviteResponse": { - "$ref": "#/components/schemas/CreateInviteResponse" - }, - "createRecoveryCodeForIdentityBody": { - "description": "Create Recovery Code for Identity Request Body", - "properties": { - "expires_in": { - "description": "Code Expires In\n\nThe recovery code will expire after that amount of time has passed. Defaults to the configuration value of\n`selfservice.methods.code.config.lifespan`.", - "pattern": "^([0-9]+(ns|us|ms|s|m|h))*$", - "type": "string" - }, - "identity_id": { - "description": "Identity to Recover\n\nThe identity's ID you wish to recover.", - "format": "uuid", - "type": "string" - } - }, - "required": [ - "identity_id" - ], - "type": "object" - }, - "createRecoveryLinkForIdentityBody": { - "description": "Create Recovery Link for Identity Request Body", - "properties": { - "expires_in": { - "description": "Link Expires In\n\nThe recovery link will expire after that amount of time has passed. Defaults to the configuration value of\n`selfservice.methods.code.config.lifespan`.", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "identity_id": { - "description": "Identity to Recover\n\nThe identity's ID you wish to recover.", - "format": "uuid", - "type": "string" - } - }, - "required": [ - "identity_id" - ], - "type": "object" - }, - "createRelationshipBody": { - "description": "Create Relationship Request Body", - "properties": { - "namespace": { - "description": "Namespace to query", - "type": "string" - }, - "object": { - "description": "Object to query", - "type": "string" - }, - "relation": { - "description": "Relation to query", - "type": "string" - }, - "subject_id": { - "description": "SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.", - "type": "string" - }, - "subject_set": { - "$ref": "#/components/schemas/subjectSet" - } - }, - "type": "object" - }, - "createSubscriptionBody": { - "description": "Create Subscription Request Body", - "properties": { - "currency": { - "description": "\nusd USD\neur Euro", - "enum": [ - "usd", - "eur" - ], - "type": "string", - "x-go-enum-desc": "usd USD\neur Euro" - }, - "interval": { - "description": "\nmonthly Monthly\nyearly Yearly", - "enum": [ - "monthly", - "yearly" - ], - "type": "string", - "x-go-enum-desc": "monthly Monthly\nyearly Yearly" - }, - "plan": { - "type": "string" - }, - "provision_first_project": { - "format": "uuid", - "type": "string" - }, - "return_to": { - "type": "string" - } - }, - "required": [ - "plan", - "interval", - "provision_first_project" - ], - "type": "object" - }, - "credentialSupportedDraft00": { - "description": "Includes information about the supported verifiable credentials.", - "properties": { - "cryptographic_binding_methods_supported": { - "description": "OpenID Connect Verifiable Credentials Cryptographic Binding Methods Supported\n\nContains a list of cryptographic binding methods supported for signing the proof.", - "items": { - "type": "string" - }, - "type": "array" - }, - "cryptographic_suites_supported": { - "description": "OpenID Connect Verifiable Credentials Cryptographic Suites Supported\n\nContains a list of cryptographic suites methods supported for signing the proof.", - "items": { - "type": "string" - }, - "type": "array" - }, - "format": { - "description": "OpenID Connect Verifiable Credentials Format\n\nContains the format that is supported by this authorization server.", - "type": "string" - }, - "types": { - "description": "OpenID Connect Verifiable Credentials Types\n\nContains the types of verifiable credentials supported.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "title": "Verifiable Credentials Metadata (Draft 00)", - "type": "object" - }, - "customDomain": { - "description": "Custom Hostname", - "properties": { - "cookie_domain": { - "type": "string" - }, - "cors_allowed_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "cors_enabled": { - "type": "boolean" - }, - "created_at": { - "format": "date-time", - "type": "string" - }, - "custom_ui_base_url": { - "type": "string" - }, - "hostname": { - "type": "string" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "ssl_status": { - "enum": [ - "initializing", - "pending_validation", - "deleted", - "pending_issuance", - "pending_deployment", - "pending_deletion", - "pending_expiration", - "expired", - "active", - "initializing_timed_out", - "validation_timed_out", - "issuance_timed_out", - "deployment_timed_out", - "deletion_timed_out", - "pending_cleanup", - "staging_deployment", - "staging_active", - "deactivating", - "inactive", - "backup_issued", - "holding_deployment", - "" - ], - "type": "string", - "x-go-enum-desc": "initializing initializing\npending_validation pending_validation\ndeleted deleted\npending_issuance pending_issuance\npending_deployment pending_deployment\npending_deletion pending_deletion\npending_expiration pending_expiration\nexpired expired\nactive active\ninitializing_timed_out initializing_timed_out\nvalidation_timed_out validation_timed_out\nissuance_timed_out issuance_timed_out\ndeployment_timed_out deployment_timed_out\ndeletion_timed_out deletion_timed_out\npending_cleanup pending_cleanup\nstaging_deployment staging_deployment\nstaging_active staging_active\ndeactivating deactivating\ninactive inactive\nbackup_issued backup_issued\nholding_deployment holding_deployment\n unknown Cloudflare sometimes returns an empty string." - }, - "updated_at": { - "format": "date-time", - "type": "string" - }, - "verification_errors": { - "items": { - "type": "string" - }, - "type": "array" - }, - "verification_status": { - "$ref": "#/components/schemas/CustomHostnameStatus" - } - }, - "type": "object" - }, - "deleteMySessionsCount": { - "description": "Deleted Session Count", - "properties": { - "count": { - "description": "The number of sessions that were revoked.", - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "emailTemplateData": { - "description": "Contains the data of the email template, including the subject and body in HTML and plaintext variants", - "properties": { - "body": { - "$ref": "#/components/schemas/emailTemplateDataBody" - }, - "subject": { - "type": "string" - } - }, - "required": [ - "body", - "subject" - ], - "type": "object" - }, - "emailTemplateDataBody": { - "properties": { - "html": { - "type": "string" - }, - "plaintext": { - "type": "string" - } - }, - "required": [ - "html", - "plaintext" - ], - "type": "object" - }, - "errorAuthenticatorAssuranceLevelNotSatisfied": { - "properties": { - "error": { - "$ref": "#/components/schemas/genericError" - }, - "redirect_browser_to": { - "description": "Points to where to redirect the user to next.", - "type": "string" - } - }, - "title": "Is returned when an active session was found but the requested AAL is not satisfied.", - "type": "object" - }, - "errorBrowserLocationChangeRequired": { - "properties": { - "error": { - "$ref": "#/components/schemas/errorGeneric" - }, - "redirect_browser_to": { - "description": "Points to where to redirect the user to next.", - "type": "string" - } - }, - "title": "Is sent when a flow requires a browser to change its location.", - "type": "object" - }, - "errorFlowReplaced": { - "description": "Is sent when a flow is replaced by a different flow of the same class", - "properties": { - "error": { - "$ref": "#/components/schemas/genericError" - }, - "use_flow_id": { - "description": "The flow ID that should be used for the new flow as it contains the correct messages.", - "format": "uuid", - "type": "string" - } - }, - "type": "object" - }, - "errorGeneric": { - "description": "The standard Ory JSON API error format.", - "properties": { - "error": { - "$ref": "#/components/schemas/genericErrorContent" - } - }, - "required": [ - "error" - ], - "title": "JSON API Error Response", - "type": "object" - }, - "errorOAuth2": { - "description": "Error", - "properties": { - "error": { - "description": "Error", - "type": "string" - }, - "error_debug": { - "description": "Error Debug Information\n\nOnly available in dev mode.", - "type": "string" - }, - "error_description": { - "description": "Error Description", - "type": "string" - }, - "error_hint": { - "description": "Error Hint\n\nHelps the user identify the error cause.", - "example": "The redirect URL is not allowed.", - "type": "string" - }, - "status_code": { - "description": "HTTP Status Code", - "example": 401, - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "expandedPermissionTree": { - "properties": { - "children": { - "description": "The children of the node, possibly none.", - "items": { - "$ref": "#/components/schemas/expandedPermissionTree" - }, - "type": "array" - }, - "tuple": { - "$ref": "#/components/schemas/relationship" - }, - "type": { - "description": "The type of the node.\nunion TreeNodeUnion\nexclusion TreeNodeExclusion\nintersection TreeNodeIntersection\nleaf TreeNodeLeaf\ntuple_to_subject_set TreeNodeTupleToSubjectSet\ncomputed_subject_set TreeNodeComputedSubjectSet\nnot TreeNodeNot\nunspecified TreeNodeUnspecified", - "enum": [ - "union", - "exclusion", - "intersection", - "leaf", - "tuple_to_subject_set", - "computed_subject_set", - "not", - "unspecified" - ], - "type": "string", - "x-go-enum-desc": "union TreeNodeUnion\nexclusion TreeNodeExclusion\nintersection TreeNodeIntersection\nleaf TreeNodeLeaf\ntuple_to_subject_set TreeNodeTupleToSubjectSet\ncomputed_subject_set TreeNodeComputedSubjectSet\nnot TreeNodeNot\nunspecified TreeNodeUnspecified" - } - }, - "required": [ - "type" - ], - "type": "object" - }, - "flowError": { - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "error": { - "type": "object" - }, - "id": { - "description": "ID of the error container.", - "format": "uuid", - "type": "string" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id" - ], - "type": "object" - }, - "genericError": { - "description": "Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.", - "properties": { - "code": { - "description": "The status code", - "example": 404, - "format": "int64", - "type": "integer" - }, - "debug": { - "description": "Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.", - "example": "SQL field \"foo\" is not a bool.", - "type": "string" - }, - "details": { - "description": "Further error details" - }, - "error": { - "$ref": "#/components/schemas/genericErrorContent" - }, - "id": { - "description": "The error ID\n\nUseful when trying to identify various errors in application logic.", - "type": "string" - }, - "message": { - "description": "Error message\n\nThe error's message.", - "example": "The resource could not be found", - "type": "string" - }, - "reason": { - "description": "A human-readable reason for the error", - "example": "User with ID 1234 does not exist.", - "type": "string" - }, - "request": { - "description": "The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.", - "example": "d7ef54b1-ec15-46e6-bccb-524b82c035e6", - "type": "string" - }, - "status": { - "description": "The status description", - "example": "Not Found", - "type": "string" - } - }, - "required": [ - "message" - ], - "title": "Error response", - "type": "object" - }, - "genericErrorContent": { - "description": "Error response", - "properties": { - "debug": { - "description": "Debug contains debug information. This is usually not available and has to be enabled.", - "example": "The database adapter was unable to find the element", - "type": "string" - }, - "error": { - "description": "Name is the error name.", - "example": "The requested resource could not be found", - "type": "string" - }, - "error_description": { - "description": "Description contains further information on the nature of the error.", - "example": "Object with ID 12345 does not exist", - "type": "string" - }, - "message": { - "description": "Message contains the error message.", - "type": "string" - }, - "status_code": { - "description": "Code represents the error status code (404, 403, 401, ...).", - "example": 404, - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "getManagedIdentitySchemaLocation": { - "description": "Ory Identity Schema Location", - "properties": { - "location": { - "type": "string" - } - }, - "type": "object" - }, - "getProjectMetricsResponse": { - "description": "Response of the getMetrics endpoint", - "properties": { - "data": { - "description": "The list of data points.", - "items": { - "$ref": "#/components/schemas/metricsDatapoint" - }, - "readOnly": true, - "type": "array" - } - }, - "required": [ - "data" - ], - "type": "object" - }, - "healthNotReadyStatus": { - "properties": { - "errors": { - "additionalProperties": { - "type": "string" - }, - "description": "Errors contains a list of errors that caused the not ready status.", - "type": "object" - } - }, - "type": "object" - }, - "healthStatus": { - "properties": { - "status": { - "description": "Status always contains \"ok\".", - "type": "string" - } - }, - "type": "object" - }, - "identity": { - "description": "An [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) represents a (human) user in Ory.", - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "credentials": { - "additionalProperties": { - "$ref": "#/components/schemas/identityCredentials" - }, - "description": "Credentials represents all credentials that can be used for authenticating this identity.", - "type": "object" - }, - "id": { - "description": "ID is the identity's unique identifier.\n\nThe Identity ID can not be changed and can not be chosen. This ensures future\ncompatibility and optimization for distributed stores such as CockroachDB.", - "format": "uuid", - "type": "string" - }, - "metadata_admin": { - "$ref": "#/components/schemas/nullJsonRawMessage" - }, - "metadata_public": { - "$ref": "#/components/schemas/nullJsonRawMessage" - }, - "recovery_addresses": { - "description": "RecoveryAddresses contains all the addresses that can be used to recover an identity.", - "items": { - "$ref": "#/components/schemas/recoveryIdentityAddress" - }, - "type": "array", - "x-omitempty": true - }, - "schema_id": { - "description": "SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.", - "type": "string" - }, - "schema_url": { - "description": "SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from.\n\nformat: url", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/identityState" - }, - "state_changed_at": { - "$ref": "#/components/schemas/nullTime" - }, - "traits": { - "$ref": "#/components/schemas/identityTraits" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "verifiable_addresses": { - "description": "VerifiableAddresses contains all the addresses that can be verified by the user.", - "items": { - "$ref": "#/components/schemas/verifiableIdentityAddress" - }, - "type": "array", - "x-omitempty": true - } - }, - "required": [ - "id", - "schema_id", - "schema_url", - "traits" - ], - "title": "Identity represents an Ory Kratos identity", - "type": "object" - }, - "identityCredentials": { - "description": "Credentials represents a specific credential type", - "properties": { - "config": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "identifiers": { - "description": "Identifiers represents a list of unique identifiers this credential type matches.", - "items": { - "type": "string" - }, - "type": "array" - }, - "type": { - "$ref": "#/components/schemas/identityCredentialsType" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "version": { - "description": "Version refers to the version of the credential. Useful when changing the config schema.", - "format": "int64", - "type": "integer" - } - }, - "type": "object" - }, - "identityCredentialsOidc": { - "properties": { - "providers": { - "items": { - "$ref": "#/components/schemas/identityCredentialsOidcProvider" - }, - "type": "array" - } - }, - "title": "CredentialsOIDC is contains the configuration for credentials of the type oidc.", - "type": "object" - }, - "identityCredentialsOidcProvider": { - "properties": { - "initial_access_token": { - "type": "string" - }, - "initial_id_token": { - "type": "string" - }, - "initial_refresh_token": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "subject": { - "type": "string" - } - }, - "title": "CredentialsOIDCProvider is contains a specific OpenID COnnect credential for a particular connection (e.g. Google).", - "type": "object" - }, - "identityCredentialsPassword": { - "properties": { - "hashed_password": { - "description": "HashedPassword is a hash-representation of the password.", - "type": "string" - } - }, - "title": "CredentialsPassword is contains the configuration for credentials of the type password.", - "type": "object" - }, - "identityCredentialsType": { - "description": "and so on.", - "enum": [ - "password", - "totp", - "oidc", - "webauthn", - "lookup_secret" - ], - "title": "CredentialsType represents several different credential types, like password credentials, passwordless credentials,", - "type": "string" - }, - "identityMetaSchema": { - "description": "Identity Meta Schema", - "type": "object" - }, - "identityPatch": { - "description": "Payload for patching an identity", - "properties": { - "create": { - "$ref": "#/components/schemas/createIdentityBody" - }, - "patch_id": { - "description": "The ID of this patch.\n\nThe patch ID is optional. If specified, the ID will be returned in the\nresponse, so consumers of this API can correlate the response with the\npatch.", - "format": "uuid", - "type": "string" - } - }, - "type": "object" - }, - "identityPatchResponse": { - "description": "Response for a single identity patch", - "properties": { - "action": { - "description": "The action for this specific patch\ncreate ActionCreate Create this identity.", - "enum": [ - "create" - ], - "type": "string", - "x-go-enum-desc": "create ActionCreate Create this identity." - }, - "identity": { - "description": "The identity ID payload of this patch", - "format": "uuid", - "type": "string" - }, - "patch_id": { - "description": "The ID of this patch response, if an ID was specified in the patch.", - "format": "uuid", - "type": "string" - } - }, - "type": "object" - }, - "identitySchema": { - "description": "Raw JSON Schema", - "type": "object" - }, - "identitySchemaContainer": { - "description": "An Identity JSON Schema Container", - "properties": { - "id": { - "description": "The ID of the Identity JSON Schema", - "type": "string" - }, - "schema": { - "description": "The actual Identity JSON Schema", - "type": "object" - } - }, - "type": "object" - }, - "identitySchemaPreset": { - "properties": { - "schema": { - "description": "Schema is the Identity JSON Schema", - "type": "object" - }, - "url": { - "description": "URL is the preset identifier", - "type": "string" - } - }, - "required": [ - "url", - "schema" - ], - "type": "object" - }, - "identitySchemaPresets": { - "items": { - "$ref": "#/components/schemas/identitySchemaPreset" - }, - "type": "array" - }, - "identitySchemas": { - "description": "List of Identity JSON Schemas", - "items": { - "$ref": "#/components/schemas/identitySchemaContainer" - }, - "type": "array" - }, - "identityState": { - "description": "The state can either be `active` or `inactive`.", - "enum": [ - "active", - "inactive" - ], - "title": "An Identity's State", - "type": "string" - }, - "identityTraits": { - "description": "Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_url`." - }, - "identityVerifiableAddressStatus": { - "description": "VerifiableAddressStatus must not exceed 16 characters as that is the limitation in the SQL Schema", - "type": "string" - }, - "identityVerifiableAddressType": { - "description": "VerifiableAddressType must not exceed 16 characters as that is the limitation in the SQL Schema", - "type": "string" - }, - "identityWithCredentials": { - "description": "Create Identity and Import Credentials", - "properties": { - "oidc": { - "$ref": "#/components/schemas/identityWithCredentialsOidc" - }, - "password": { - "$ref": "#/components/schemas/identityWithCredentialsPassword" - } - }, - "type": "object" - }, - "identityWithCredentialsOidc": { - "description": "Create Identity and Import Social Sign In Credentials", - "properties": { - "config": { - "$ref": "#/components/schemas/identityWithCredentialsOidcConfig" - } - }, - "type": "object" - }, - "identityWithCredentialsOidcConfig": { - "properties": { - "config": { - "$ref": "#/components/schemas/identityWithCredentialsPasswordConfig" - }, - "providers": { - "description": "A list of OpenID Connect Providers", - "items": { - "$ref": "#/components/schemas/identityWithCredentialsOidcConfigProvider" - }, - "type": "array" - } - }, - "type": "object" - }, - "identityWithCredentialsOidcConfigProvider": { - "description": "Create Identity and Import Social Sign In Credentials Configuration", - "properties": { - "provider": { - "description": "The OpenID Connect provider to link the subject to. Usually something like `google` or `github`.", - "type": "string" - }, - "subject": { - "description": "The subject (`sub`) of the OpenID Connect connection. Usually the `sub` field of the ID Token.", - "type": "string" - } - }, - "required": [ - "subject", - "provider" - ], - "type": "object" - }, - "identityWithCredentialsPassword": { - "description": "Create Identity and Import Password Credentials", - "properties": { - "config": { - "$ref": "#/components/schemas/identityWithCredentialsPasswordConfig" - } - }, - "type": "object" - }, - "identityWithCredentialsPasswordConfig": { - "description": "Create Identity and Import Password Credentials Configuration", - "properties": { - "hashed_password": { - "description": "The hashed password in [PHC format]( https://www.ory.sh/docs/kratos/concepts/credentials/username-email-password#hashed-password-format)", - "type": "string" - }, - "password": { - "description": "The password in plain text if no hash is available.", - "type": "string" - } - }, - "type": "object" - }, - "internalGetProjectBrandingBody": { - "description": "Get Project Branding Request Body", - "properties": { - "hostname": { - "type": "string" - } - }, - "type": "object" - }, - "internalIsAXWelcomeScreenEnabledForProjectBody": { - "description": "Is Account Experience Enabled For Project Request Body", - "properties": { - "path": { - "description": "Path is the path of the request.", - "type": "string" - }, - "project_slug": { - "description": "ProjectSlug is the project's slug.", - "type": "string" - } - }, - "required": [ - "project_slug", - "path" - ], - "type": "object" - }, - "internalIsOwnerForProjectBySlugBody": { - "description": "Is Owner For Project By Slug Request Body", - "properties": { - "namespace": { - "description": "Namespace is the namespace of the subject.", - "enum": [ - "User", - " ApiKey" - ], - "type": "string" - }, - "project_scope": { - "description": "ProjectScope is the project_id resolved from the\nAPI Token.", - "type": "string" - }, - "project_slug": { - "description": "ProjectSlug is the project's slug.", - "type": "string" - }, - "subject": { - "description": "Subject is the subject acting (user or API key).", - "type": "string" - } - }, - "required": [ - "subject", - "namespace", - "project_slug" - ], - "type": "object" - }, - "internalIsOwnerForProjectBySlugResponse": { - "properties": { - "project_id": { - "description": "ProjectID is the project's ID.", - "type": "string" - } - }, - "required": [ - "project_id" - ], - "type": "object" - }, - "internalProvisionMockSubscription": { - "description": "Internal Provision Mock Subscription Request Body", - "properties": { - "currency": { - "description": "Currency\nusd USD\neur Euro", - "enum": [ - "usd", - "eur" - ], - "type": "string", - "x-go-enum-desc": "usd USD\neur Euro" - }, - "identity_id": { - "description": "Identity ID", - "format": "uuid", - "type": "string" - }, - "interval": { - "description": "Billing Interval\nmonthly Monthly\nyearly Yearly", - "enum": [ - "monthly", - "yearly" - ], - "type": "string", - "x-go-enum-desc": "monthly Monthly\nyearly Yearly" - }, - "plan": { - "description": "Plan ID", - "type": "string" - } - }, - "required": [ - "plan", - "interval", - "identity_id", - "currency" - ], - "type": "object" - }, - "introspectedOAuth2Token": { - "description": "Introspection contains an access token's session data as specified by\n[IETF RFC 7662](https://tools.ietf.org/html/rfc7662)", - "properties": { - "active": { - "description": "Active is a boolean indicator of whether or not the presented token\nis currently active. The specifics of a token's \"active\" state\nwill vary depending on the implementation of the authorization\nserver and the information it keeps about its tokens, but a \"true\"\nvalue return for the \"active\" property will generally indicate\nthat a given token has been issued by this authorization server,\nhas not been revoked by the resource owner, and is within its\ngiven time window of validity (e.g., after its issuance time and\nbefore its expiration time).", - "type": "boolean" - }, - "aud": { - "description": "Audience contains a list of the token's intended audiences.", - "items": { - "type": "string" - }, - "type": "array" - }, - "client_id": { - "description": "ID is aclient identifier for the OAuth 2.0 client that\nrequested this token.", - "type": "string" - }, - "exp": { - "description": "Expires at is an integer timestamp, measured in the number of seconds\nsince January 1 1970 UTC, indicating when this token will expire.", - "format": "int64", - "type": "integer" - }, - "ext": { - "additionalProperties": {}, - "description": "Extra is arbitrary data set by the session.", - "type": "object" - }, - "iat": { - "description": "Issued at is an integer timestamp, measured in the number of seconds\nsince January 1 1970 UTC, indicating when this token was\noriginally issued.", - "format": "int64", - "type": "integer" - }, - "iss": { - "description": "IssuerURL is a string representing the issuer of this token", - "type": "string" - }, - "nbf": { - "description": "NotBefore is an integer timestamp, measured in the number of seconds\nsince January 1 1970 UTC, indicating when this token is not to be\nused before.", - "format": "int64", - "type": "integer" - }, - "obfuscated_subject": { - "description": "ObfuscatedSubject is set when the subject identifier algorithm was set to \"pairwise\" during authorization.\nIt is the `sub` value of the ID Token that was issued.", - "type": "string" - }, - "scope": { - "description": "Scope is a JSON string containing a space-separated list of\nscopes associated with this token.", - "type": "string" - }, - "sub": { - "description": "Subject of the token, as defined in JWT [RFC7519].\nUsually a machine-readable identifier of the resource owner who\nauthorized this token.", - "type": "string" - }, - "token_type": { - "description": "TokenType is the introspected token's type, typically `Bearer`.", - "type": "string" - }, - "token_use": { - "description": "TokenUse is the introspected token's use, for example `access_token` or `refresh_token`.", - "type": "string" - }, - "username": { - "description": "Username is a human-readable identifier for the resource owner who\nauthorized this token.", - "type": "string" - } - }, - "required": [ - "active" - ], - "type": "object" - }, - "isOwnerForProjectBySlug": { - "properties": { - "ProjectSlug": { - "description": "ProjectSlug is the project's slug.", - "type": "string" - }, - "Subject": { - "description": "Subject is the subject from the API Token.", - "type": "string" - } - }, - "required": [ - "Subject", - "ProjectSlug" - ], - "type": "object" - }, - "jsonPatch": { - "description": "A JSONPatch document as defined by RFC 6902", - "properties": { - "from": { - "description": "This field is used together with operation \"move\" and uses JSON Pointer notation.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).", - "example": "/name", - "type": "string" - }, - "op": { - "description": "The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".", - "enum": [ - "add", - "remove", - "replace", - "move", - "copy", - "test" - ], - "example": "replace", - "type": "string" - }, - "path": { - "description": "The path to the target path. Uses JSON pointer notation.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).", - "example": "/name", - "type": "string" - }, - "value": { - "description": "The value to be used within the operations.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).", - "example": "foobar" - } - }, - "required": [ - "op", - "path" - ], - "type": "object" - }, - "jsonPatchDocument": { - "description": "A JSONPatchDocument request", - "items": { - "$ref": "#/components/schemas/jsonPatch" - }, - "type": "array" - }, - "jsonWebKey": { - "properties": { - "alg": { - "description": "The \"alg\" (algorithm) parameter identifies the algorithm intended for\nuse with the key. The values used should either be registered in the\nIANA \"JSON Web Signature and Encryption Algorithms\" registry\nestablished by [JWA] or be a value that contains a Collision-\nResistant Name.", - "example": "RS256", - "type": "string" - }, - "crv": { - "example": "P-256", - "type": "string" - }, - "d": { - "example": "T_N8I-6He3M8a7X1vWt6TGIx4xB_GP3Mb4SsZSA4v-orvJzzRiQhLlRR81naWYxfQAYt5isDI6_C2L9bdWo4FFPjGQFvNoRX-_sBJyBI_rl-TBgsZYoUlAj3J92WmY2inbA-PwyJfsaIIDceYBC-eX-xiCu6qMqkZi3MwQAFL6bMdPEM0z4JBcwFT3VdiWAIRUuACWQwrXMq672x7fMuaIaHi7XDGgt1ith23CLfaREmJku9PQcchbt_uEY-hqrFY6ntTtS4paWWQj86xLL94S-Tf6v6xkL918PfLSOTq6XCzxvlFwzBJqApnAhbwqLjpPhgUG04EDRrqrSBc5Y1BLevn6Ip5h1AhessBp3wLkQgz_roeckt-ybvzKTjESMuagnpqLvOT7Y9veIug2MwPJZI2VjczRc1vzMs25XrFQ8DpUy-bNdp89TmvAXwctUMiJdgHloJw23Cv03gIUAkDnsTqZmkpbIf-crpgNKFmQP_EDKoe8p_PXZZgfbRri3NoEVGP7Mk6yEu8LjJhClhZaBNjuWw2-KlBfOA3g79mhfBnkInee5KO9mGR50qPk1V-MorUYNTFMZIm0kFE6eYVWFBwJHLKYhHU34DoiK1VP-svZpC2uAMFNA_UJEwM9CQ2b8qe4-5e9aywMvwcuArRkAB5mBIfOaOJao3mfukKAE", - "type": "string" - }, - "dp": { - "example": "G4sPXkc6Ya9y8oJW9_ILj4xuppu0lzi_H7VTkS8xj5SdX3coE0oimYwxIi2emTAue0UOa5dpgFGyBJ4c8tQ2VF402XRugKDTP8akYhFo5tAA77Qe_NmtuYZc3C3m3I24G2GvR5sSDxUyAN2zq8Lfn9EUms6rY3Ob8YeiKkTiBj0", - "type": "string" - }, - "dq": { - "example": "s9lAH9fggBsoFR8Oac2R_E2gw282rT2kGOAhvIllETE1efrA6huUUvMfBcMpn8lqeW6vzznYY5SSQF7pMdC_agI3nG8Ibp1BUb0JUiraRNqUfLhcQb_d9GF4Dh7e74WbRsobRonujTYN1xCaP6TO61jvWrX-L18txXw494Q_cgk", - "type": "string" - }, - "e": { - "example": "AQAB", - "type": "string" - }, - "k": { - "example": "GawgguFyGrWKav7AX4VKUg", - "type": "string" - }, - "kid": { - "description": "The \"kid\" (key ID) parameter is used to match a specific key. This\nis used, for instance, to choose among a set of keys within a JWK Set\nduring key rollover. The structure of the \"kid\" value is\nunspecified. When \"kid\" values are used within a JWK Set, different\nkeys within the JWK Set SHOULD use distinct \"kid\" values. (One\nexample in which different keys might use the same \"kid\" value is if\nthey have different \"kty\" (key type) values but are considered to be\nequivalent alternatives by the application using them.) The \"kid\"\nvalue is a case-sensitive string.", - "example": "1603dfe0af8f4596", - "type": "string" - }, - "kty": { - "description": "The \"kty\" (key type) parameter identifies the cryptographic algorithm\nfamily used with the key, such as \"RSA\" or \"EC\". \"kty\" values should\neither be registered in the IANA \"JSON Web Key Types\" registry\nestablished by [JWA] or be a value that contains a Collision-\nResistant Name. The \"kty\" value is a case-sensitive string.", - "example": "RSA", - "type": "string" - }, - "n": { - "example": "vTqrxUyQPl_20aqf5kXHwDZrel-KovIp8s7ewJod2EXHl8tWlRB3_Rem34KwBfqlKQGp1nqah-51H4Jzruqe0cFP58hPEIt6WqrvnmJCXxnNuIB53iX_uUUXXHDHBeaPCSRoNJzNysjoJ30TIUsKBiirhBa7f235PXbKiHducLevV6PcKxJ5cY8zO286qJLBWSPm-OIevwqsIsSIH44Qtm9sioFikhkbLwoqwWORGAY0nl6XvVOlhADdLjBSqSAeT1FPuCDCnXwzCDR8N9IFB_IjdStFkC-rVt2K5BYfPd0c3yFp_vHR15eRd0zJ8XQ7woBC8Vnsac6Et1pKS59pX6256DPWu8UDdEOolKAPgcd_g2NpA76cAaF_jcT80j9KrEzw8Tv0nJBGesuCjPNjGs_KzdkWTUXt23Hn9QJsdc1MZuaW0iqXBepHYfYoqNelzVte117t4BwVp0kUM6we0IqyXClaZgOI8S-WDBw2_Ovdm8e5NmhYAblEVoygcX8Y46oH6bKiaCQfKCFDMcRgChme7AoE1yZZYsPbaG_3IjPrC4LBMHQw8rM9dWjJ8ImjicvZ1pAm0dx-KHCP3y5PVKrxBDf1zSOsBRkOSjB8TPODnJMz6-jd5hTtZxpZPwPoIdCanTZ3ZD6uRBpTmDwtpRGm63UQs1m5FWPwb0T2IF0", - "type": "string" - }, - "p": { - "example": "6NbkXwDWUhi-eR55Cgbf27FkQDDWIamOaDr0rj1q0f1fFEz1W5A_09YvG09Fiv1AO2-D8Rl8gS1Vkz2i0zCSqnyy8A025XOcRviOMK7nIxE4OH_PEsko8dtIrb3TmE2hUXvCkmzw9EsTF1LQBOGC6iusLTXepIC1x9ukCKFZQvdgtEObQ5kzd9Nhq-cdqmSeMVLoxPLd1blviVT9Vm8-y12CtYpeJHOaIDtVPLlBhJiBoPKWg3vxSm4XxIliNOefqegIlsmTIa3MpS6WWlCK3yHhat0Q-rRxDxdyiVdG_wzJvp0Iw_2wms7pe-PgNPYvUWH9JphWP5K38YqEBiJFXQ", - "type": "string" - }, - "q": { - "example": "0A1FmpOWR91_RAWpqreWSavNaZb9nXeKiBo0DQGBz32DbqKqQ8S4aBJmbRhJcctjCLjain-ivut477tAUMmzJwVJDDq2MZFwC9Q-4VYZmFU4HJityQuSzHYe64RjN-E_NQ02TWhG3QGW6roq6c57c99rrUsETwJJiwS8M5p15Miuz53DaOjv-uqqFAFfywN5WkxHbraBcjHtMiQuyQbQqkCFh-oanHkwYNeytsNhTu2mQmwR5DR2roZ2nPiFjC6nsdk-A7E3S3wMzYYFw7jvbWWoYWo9vB40_MY2Y0FYQSqcDzcBIcq_0tnnasf3VW4Fdx6m80RzOb2Fsnln7vKXAQ", - "type": "string" - }, - "qi": { - "example": "GyM_p6JrXySiz1toFgKbWV-JdI3jQ4ypu9rbMWx3rQJBfmt0FoYzgUIZEVFEcOqwemRN81zoDAaa-Bk0KWNGDjJHZDdDmFhW3AN7lI-puxk_mHZGJ11rxyR8O55XLSe3SPmRfKwZI6yU24ZxvQKFYItdldUKGzO6Ia6zTKhAVRU", - "type": "string" - }, - "use": { - "description": "Use (\"public key use\") identifies the intended use of\nthe public key. The \"use\" parameter is employed to indicate whether\na public key is used for encrypting data or verifying the signature\non data. Values are commonly \"sig\" (signature) or \"enc\" (encryption).", - "example": "sig", - "type": "string" - }, - "x": { - "example": "f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU", - "type": "string" - }, - "x5c": { - "description": "The \"x5c\" (X.509 certificate chain) parameter contains a chain of one\nor more PKIX certificates [RFC5280]. The certificate chain is\nrepresented as a JSON array of certificate value strings. Each\nstring in the array is a base64-encoded (Section 4 of [RFC4648] --\nnot base64url-encoded) DER [ITU.X690.1994] PKIX certificate value.\nThe PKIX certificate containing the key value MUST be the first\ncertificate.", - "items": { - "type": "string" - }, - "type": "array" - }, - "y": { - "example": "x_FEzRu9m36HLN_tue659LNpXW6pCyStikYjKIWI5a0", - "type": "string" - } - }, - "required": [ - "use", - "kty", - "kid", - "alg" - ], - "type": "object" - }, - "jsonWebKeySet": { - "description": "JSON Web Key Set", - "properties": { - "keys": { - "description": "List of JSON Web Keys\n\nThe value of the \"keys\" parameter is an array of JSON Web Key (JWK)\nvalues. By default, the order of the JWK values within the array does\nnot imply an order of preference among them, although applications\nof JWK Sets can choose to assign a meaning to the order for their\npurposes, if desired.", - "items": { - "$ref": "#/components/schemas/jsonWebKey" - }, - "type": "array" - } - }, - "type": "object" - }, - "listCustomDomains": { - "description": "Custom Hostname List", - "items": { - "$ref": "#/components/schemas/customDomain" - }, - "type": "array" - }, - "loginFlow": { - "description": "This object represents a login flow. A login flow is initiated at the \"Initiate Login API / Browser Flow\"\nendpoint by a client.\n\nOnce a login flow is completed successfully, a session cookie or session token will be issued.", - "properties": { - "active": { - "$ref": "#/components/schemas/identityCredentialsType" - }, - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in,\na new flow has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the flow's unique ID. When performing the login flow, this\nrepresents the id in the login UI's query parameter: http://\u003cselfservice.flows.login.ui_url\u003e/?flow=\u003cflow_id\u003e", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the flow started.", - "format": "date-time", - "type": "string" - }, - "oauth2_login_challenge": { - "description": "Ory OAuth 2.0 Login Challenge.\n\nThis value is set using the `login_challenge` query parameter of the registration and login endpoints.\nIf set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.", - "type": "string" - }, - "oauth2_login_request": { - "$ref": "#/components/schemas/oAuth2LoginRequest" - }, - "refresh": { - "description": "Refresh stores whether this login flow should enforce re-authentication.", - "type": "boolean" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "requested_aal": { - "$ref": "#/components/schemas/authenticatorAssuranceLevel" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "session_token_exchange_code": { - "description": "SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the login flow has been completed.\nThis is only set if the client has requested a session token exchange code, and if the flow is of type \"api\",\nand only on creating the login flow.", - "type": "string" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui" - ], - "title": "Login Flow", - "type": "object" - }, - "logoutFlow": { - "description": "Logout Flow", - "properties": { - "logout_token": { - "description": "LogoutToken can be used to perform logout using AJAX.", - "type": "string" - }, - "logout_url": { - "description": "LogoutURL can be opened in a browser to sign the user out.\n\nformat: uri", - "type": "string" - } - }, - "required": [ - "logout_url", - "logout_token" - ], - "type": "object" - }, - "managedIdentitySchema": { - "description": "Together the name and identity uuid are a unique index constraint.\nThis prevents a user from having schemas with the same name.\nThis also allows schemas to have the same name across the system.", - "properties": { - "blob_name": { - "description": "The gcs file name\n\nThis is a randomly generated name which is used to uniquely identify the file on the blob storage", - "type": "string" - }, - "blob_url": { - "description": "The publicly accessible url of the schema", - "type": "string" - }, - "content_hash": { - "description": "The Content Hash\n\nContains a hash of the schema's content.", - "type": "string" - }, - "created_at": { - "description": "The Schema's Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "id": { - "description": "The schema's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "name": { - "description": "The schema name\n\nThis is set by the user and is for them to easily recognise their schema", - "example": "CustomerIdentity", - "type": "string" - }, - "updated_at": { - "description": "Last Time Schema was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "name", - "blob_name", - "blob_url", - "created_at", - "updated_at" - ], - "title": "Schema represents an Ory Kratos Identity Schema", - "type": "object" - }, - "managedIdentitySchemaValidationResult": { - "description": "Ory Identity Schema Validation Result", - "properties": { - "message": { - "type": "string" - }, - "valid": { - "type": "boolean" - } - }, - "type": "object" - }, - "managedIdentitySchemas": { - "items": { - "$ref": "#/components/schemas/managedIdentitySchema" - }, - "type": "array" - }, - "memberInvite": { - "properties": { - "created_at": { - "description": "The Project's Revision Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "id": { - "description": "The invite's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "invitee_email": { - "description": "The invitee's email", - "type": "string" - }, - "invitee_id": { - "$ref": "#/components/schemas/NullUUID" - }, - "owner_email": { - "description": "The invite owner's email\nUsually the project's owner email", - "type": "string" - }, - "owner_id": { - "description": "The invite owner's ID\nUsually the project's owner", - "format": "uuid", - "type": "string" - }, - "project_id": { - "description": "The Project's ID this invite is associated with", - "format": "uuid", - "type": "string" - }, - "status": { - "description": "The invite's status\nKeeps track of the invites status such as pending, accepted, declined, expired\npending PENDING\naccepted ACCEPTED\ndeclined DECLINED\nexpired EXPIRED\ncancelled CANCELLED\nremoved REMOVED", - "enum": [ - "pending", - "accepted", - "declined", - "expired", - "cancelled", - "removed" - ], - "type": "string", - "x-go-enum-desc": "pending PENDING\naccepted ACCEPTED\ndeclined DECLINED\nexpired EXPIRED\ncancelled CANCELLED\nremoved REMOVED" - }, - "updated_at": { - "description": "Last Time Project's Revision was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "project_id", - "owner_id", - "owner_email", - "invitee_email", - "status", - "created_at", - "updated_at" - ], - "type": "object" - }, - "memberInvites": { - "items": { - "$ref": "#/components/schemas/memberInvite" - }, - "type": "array" - }, - "message": { - "properties": { - "body": { - "type": "string" - }, - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "dispatches": { - "description": "Dispatches store information about the attempts of delivering a message\nMay contain an error if any happened, or just the `success` state.", - "items": { - "$ref": "#/components/schemas/messageDispatch" - }, - "type": "array" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "recipient": { - "type": "string" - }, - "send_count": { - "format": "int64", - "type": "integer" - }, - "status": { - "$ref": "#/components/schemas/courierMessageStatus" - }, - "subject": { - "type": "string" - }, - "template_type": { - "description": "\nrecovery_invalid TypeRecoveryInvalid\nrecovery_valid TypeRecoveryValid\nrecovery_code_invalid TypeRecoveryCodeInvalid\nrecovery_code_valid TypeRecoveryCodeValid\nverification_invalid TypeVerificationInvalid\nverification_valid TypeVerificationValid\nverification_code_invalid TypeVerificationCodeInvalid\nverification_code_valid TypeVerificationCodeValid\notp TypeOTP\nstub TypeTestStub", - "enum": [ - "recovery_invalid", - "recovery_valid", - "recovery_code_invalid", - "recovery_code_valid", - "verification_invalid", - "verification_valid", - "verification_code_invalid", - "verification_code_valid", - "otp", - "stub" - ], - "type": "string", - "x-go-enum-desc": "recovery_invalid TypeRecoveryInvalid\nrecovery_valid TypeRecoveryValid\nrecovery_code_invalid TypeRecoveryCodeInvalid\nrecovery_code_valid TypeRecoveryCodeValid\nverification_invalid TypeVerificationInvalid\nverification_valid TypeVerificationValid\nverification_code_invalid TypeVerificationCodeInvalid\nverification_code_valid TypeVerificationCodeValid\notp TypeOTP\nstub TypeTestStub" - }, - "type": { - "$ref": "#/components/schemas/courierMessageType" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id", - "status", - "type", - "recipient", - "body", - "subject", - "template_type", - "send_count", - "created_at", - "updated_at" - ], - "type": "object" - }, - "messageDispatch": { - "description": "MessageDispatch represents an attempt of sending a courier message\nIt contains the status of the attempt (failed or successful) and the error if any occured", - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "error": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "id": { - "description": "The ID of this message dispatch", - "format": "uuid", - "type": "string" - }, - "message_id": { - "description": "The ID of the message being dispatched", - "format": "uuid", - "type": "string" - }, - "status": { - "description": "The status of this dispatch\nEither \"failed\" or \"success\"\nfailed CourierMessageDispatchStatusFailed\nsuccess CourierMessageDispatchStatusSuccess", - "enum": [ - "failed", - "success" - ], - "type": "string", - "x-go-enum-desc": "failed CourierMessageDispatchStatusFailed\nsuccess CourierMessageDispatchStatusSuccess" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id", - "message_id", - "status", - "created_at", - "updated_at" - ], - "type": "object" - }, - "metricsDatapoint": { - "description": "Represents a single datapoint/bucket of a time series", - "properties": { - "count": { - "description": "The count of events that occured in this time", - "format": "int64", - "type": "integer" - }, - "time": { - "description": "The time of the bucket", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "time", - "count" - ], - "type": "object" - }, - "namespace": { - "properties": { - "name": { - "description": "Name of the namespace.", - "type": "string" - } - }, - "type": "object" - }, - "needsPrivilegedSessionError": { - "properties": { - "error": { - "$ref": "#/components/schemas/genericError" - }, - "redirect_browser_to": { - "description": "Points to where to redirect the user to next.", - "type": "string" - } - }, - "required": [ - "redirect_browser_to" - ], - "title": "Is sent when a privileged session is required to perform the settings update.", - "type": "object" - }, - "normalizedProject": { - "properties": { - "created_at": { - "description": "The Project's Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "current_revision": { - "$ref": "#/components/schemas/normalizedProjectRevision" - }, - "hosts": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "id": { - "description": "The project's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "slug": { - "description": "The project's slug", - "readOnly": true, - "type": "string" - }, - "state": { - "description": "The state of the project.\nrunning Running\nhalted Halted\ndeleted Deleted", - "enum": [ - "running", - "halted", - "deleted" - ], - "readOnly": true, - "type": "string", - "x-go-enum-desc": "running Running\nhalted Halted\ndeleted Deleted" - }, - "subscription_id": { - "$ref": "#/components/schemas/NullUUID" - }, - "subscription_plan": { - "$ref": "#/components/schemas/String" - }, - "updated_at": { - "description": "Last Time Project was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "hosts", - "slug", - "current_revision", - "state", - "created_at", - "updated_at" - ], - "type": "object" - }, - "normalizedProjectRevision": { - "properties": { - "created_at": { - "description": "The Project's Revision Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "disable_account_experience_welcome_screen": { - "description": "Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.", - "type": "boolean" - }, - "hydra_oauth2_allowed_top_level_claims": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_oauth2_client_credentials_default_grant_allowed_scope": { - "description": "Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow.\n\nEach OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full\nscope is automatically granted when performing the OAuth2 Client Credentials flow.\n\nIf disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter.\n\nSetting this option to true is common if you need compatibility with MITREid.\n\nThis governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.", - "type": "boolean" - }, - "hydra_oauth2_exclude_not_before_claim": { - "description": "Set to true if you want to exclude claim `nbf (not before)` part of access token.\n\nThis governs the \"oauth2.exclude_not_before_claim\" setting.", - "type": "boolean" - }, - "hydra_oauth2_grant_jwt_iat_optional": { - "description": "Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).\n\nIf set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration.\n\nThis governs the \"oauth2.grant.jwt.iat_optional\" setting.", - "type": "boolean" - }, - "hydra_oauth2_grant_jwt_jti_optional": { - "description": "Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).\n\nIf set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration.\n\nThis governs the \"oauth2.grant.jwt.jti_optional\" setting.", - "type": "boolean" - }, - "hydra_oauth2_grant_jwt_max_ttl": { - "default": "720h", - "description": "Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be.\n\nThis feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied.\n\nUseful as a safety measure and recommended to keep below 720h.\n\nThis governs the \"oauth2.grant.jwt.max_ttl\" setting.", - "example": "30m", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "hydra_oauth2_pkce_enforced": { - "description": "Configures whether PKCE should be enforced for all OAuth2 Clients.\n\nThis governs the \"oauth2.pkce.enforced\" setting.", - "type": "boolean" - }, - "hydra_oauth2_pkce_enforced_for_public_clients": { - "description": "Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients).\n\nThis governs the \"oauth2.pkce.enforced_for_public_clients\" setting.", - "type": "boolean" - }, - "hydra_oauth2_refresh_token_hook": { - "description": "Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims.\n\nThis governs the \"oauth2.refresh_token_hook\" setting.", - "type": "string" - }, - "hydra_oauth2_token_hook": { - "description": "Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims.\n\nThis governs the \"oauth2.token_hook\" setting.", - "type": "string" - }, - "hydra_oidc_dynamic_client_registration_default_scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_oidc_dynamic_client_registration_enabled": { - "description": "Configures OpenID Connect Dynamic Client Registration.\n\nThis governs the \"oidc.dynamic_client_registration.enabled\" setting.", - "type": "boolean" - }, - "hydra_oidc_subject_identifiers_pairwise_salt": { - "description": "Configures OpenID Connect Discovery and overwrites the pairwise algorithm\n\nThis governs the \"oidc.subject_identifiers.pairwise_salt\" setting.", - "type": "string" - }, - "hydra_oidc_subject_identifiers_supported_types": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_secrets_cookie": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_secrets_system": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_serve_cookies_same_site_legacy_workaround": { - "description": "Configures the Ory Hydra Cookie Same Site Legacy Workaround\n\nThis governs the \"serve.cookies.same_site_legacy_workaround\" setting.", - "type": "boolean" - }, - "hydra_serve_cookies_same_site_mode": { - "description": "Configures the Ory Hydra Cookie Same Site Mode\n\nThis governs the \"serve.cookies.same_site_mode\" setting.", - "type": "string" - }, - "hydra_strategies_access_token": { - "default": "opaque", - "description": "Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens\n\nThis governs the \"strategies.access_token\" setting.\nopaque Oauth2AccessTokenStrategyOpaque\njwt Oauth2AccessTokenStrategyJwt", - "enum": [ - "opaque", - "jwt" - ], - "type": "string", - "x-go-enum-desc": "opaque Oauth2AccessTokenStrategyOpaque\njwt Oauth2AccessTokenStrategyJwt" - }, - "hydra_strategies_scope": { - "default": "wildcard", - "description": "Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes\n\nThis governs the \"strategies.scope\" setting.\nexact Oauth2ScopeStrategyExact\nwildcard Oauth2ScopeStrategyWildcard", - "enum": [ - "exact", - "wildcard" - ], - "type": "string", - "x-go-enum-desc": "exact Oauth2ScopeStrategyExact\nwildcard Oauth2ScopeStrategyWildcard" - }, - "hydra_ttl_access_token": { - "default": "30m", - "description": "This governs the \"ttl.access_token\" setting.", - "example": "1h", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "hydra_ttl_auth_code": { - "default": "720h", - "description": "Configures how long refresh tokens are valid.\n\nSet to -1 for refresh tokens to never expire. This is not recommended!\n\nThis governs the \"ttl.auth_code\" setting.", - "example": "30m", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "hydra_ttl_id_token": { - "default": "30m", - "description": "This governs the \"ttl.id_token\" setting.", - "example": "1h", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "hydra_ttl_login_consent_request": { - "default": "30m", - "description": "Configures how long a user login and consent flow may take.\n\nThis governs the \"ttl.login_consent_request\" setting.", - "example": "1h", - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "hydra_ttl_refresh_token": { - "default": "720h", - "description": "Configures how long refresh tokens are valid.\n\nSet to -1 for refresh tokens to never expire. This is not recommended!\n\nThis governs the \"ttl.refresh_token\" setting.", - "example": "30m", - "pattern": "^([0-9]+(ns|us|ms|s|m|h)|-1)$", - "type": "string" - }, - "hydra_urls_consent": { - "description": "Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login \u0026 Consent flow.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.consent\" setting.", - "type": "string" - }, - "hydra_urls_error": { - "description": "Sets the OAuth2 Error URL of the OAuth2 User Login \u0026 Consent flow.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.error\" setting.", - "type": "string" - }, - "hydra_urls_login": { - "description": "Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login \u0026 Consent flow.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.login\" setting.", - "type": "string" - }, - "hydra_urls_logout": { - "description": "Sets the logout endpoint.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.logout\" setting.", - "type": "string" - }, - "hydra_urls_post_logout_redirect": { - "description": "When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default.\n\nDefaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected.\n\nThis governs the \"urls.post_logout_redirect\" setting.", - "type": "string" - }, - "hydra_urls_self_issuer": { - "description": "This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled.\n\nOn the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network.\n\nThis governs the \"urls.self.issuer\" setting.", - "type": "string" - }, - "hydra_webfinger_jwks_broadcast_keys": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_webfinger_oidc_discovery_auth_url": { - "description": "Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL.\n\nThis governs the \"webfinger.oidc.discovery.auth_url\" setting.", - "type": "string" - }, - "hydra_webfinger_oidc_discovery_client_registration_url": { - "description": "Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint.\n\nThis governs the \"webfinger.oidc.discovery.client_registration_url\" setting.", - "type": "string" - }, - "hydra_webfinger_oidc_discovery_jwks_url": { - "description": "Configures OpenID Connect Discovery and overwrites the JWKS URL.\n\nThis governs the \"webfinger.oidc.discovery.jwks_url\" setting.", - "type": "string" - }, - "hydra_webfinger_oidc_discovery_supported_claims": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_webfinger_oidc_discovery_supported_scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_webfinger_oidc_discovery_token_url": { - "description": "Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL.\n\nThis governs the \"webfinger.oidc.discovery.token_url\" setting.", - "type": "string" - }, - "hydra_webfinger_oidc_discovery_userinfo_url": { - "description": "Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself.\n\nThis governs the \"webfinger.oidc.discovery.userinfo_url\" setting.", - "type": "string" - }, - "id": { - "description": "The revision ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "keto_namespace_configuration": { - "description": "The Revisions' Keto Namespace Configuration\n\nThe string is a URL pointing to an OPL file with the configuration.", - "type": "string" - }, - "keto_namespaces": { - "$ref": "#/components/schemas/KetoNamespaces" - }, - "keto_read_max_depth": { - "$ref": "#/components/schemas/NullInt" - }, - "kratos_cookies_same_site": { - "description": "Configures the Ory Kratos Cookie SameSite Attribute\n\nThis governs the \"cookies.same_site\" setting.", - "type": "string" - }, - "kratos_courier_smtp_connection_uri": { - "description": "Configures the Ory Kratos SMTP Connection URI\n\nThis governs the \"courier.smtp.connection_uri\" setting.", - "type": "string" - }, - "kratos_courier_smtp_from_address": { - "description": "Configures the Ory Kratos SMTP From Address\n\nThis governs the \"courier.smtp.from_address\" setting.", - "type": "string" - }, - "kratos_courier_smtp_from_name": { - "description": "Configures the Ory Kratos SMTP From Name\n\nThis governs the \"courier.smtp.from_name\" setting.", - "type": "string" - }, - "kratos_courier_smtp_headers": { - "$ref": "#/components/schemas/nullJsonRawMessage" - }, - "kratos_courier_smtp_local_name": { - "description": "Configures the local_name to use in SMTP connections\n\nThis governs the \"courier.smtp.local_name\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_code_invalid_email_body_html": { - "description": "Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_code_invalid_email_body_plaintext": { - "description": "Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_code_invalid_email_subject": { - "description": "Configures the Ory Kratos Invalid Recovery via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_code_valid_email_body_html": { - "description": "Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_code_valid_email_body_plaintext": { - "description": "Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_code_valid_email_subject": { - "description": "Configures the Ory Kratos Valid Recovery via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_invalid_email_body_html": { - "description": "Configures the Ory Kratos Invalid Recovery Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_invalid_email_body_plaintext": { - "description": "Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_invalid_email_subject": { - "description": "Configures the Ory Kratos Invalid Recovery Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_valid_email_body_html": { - "description": "Configures the Ory Kratos Valid Recovery Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_valid_email_body_plaintext": { - "description": "Configures the Ory Kratos Valid Recovery Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_recovery_valid_email_subject": { - "description": "Configures the Ory Kratos Valid Recovery Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_code_invalid_email_body_html": { - "description": "Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_code_invalid_email_body_plaintext": { - "description": "Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_code_invalid_email_subject": { - "description": "Configures the Ory Kratos Invalid Verification via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_code_valid_email_body_html": { - "description": "Configures the Ory Kratos Valid Verification via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_code_valid_email_body_plaintext": { - "description": "Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_code_valid_email_subject": { - "description": "Configures the Ory Kratos Valid Verification via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_invalid_email_body_html": { - "description": "Configures the Ory Kratos Invalid Verification Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_invalid_email_body_plaintext": { - "description": "Configures the Ory Kratos Invalid Verification Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_invalid_email_subject": { - "description": "Configures the Ory Kratos Invalid Verification Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_valid_email_body_html": { - "description": "Configures the Ory Kratos Valid Verification Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_valid_email_body_plaintext": { - "description": "Configures the Ory Kratos Valid Verification Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.", - "type": "string" - }, - "kratos_courier_templates_verification_valid_email_subject": { - "description": "Configures the Ory Kratos Valid Verification Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.", - "type": "string" - }, - "kratos_feature_flags_cacheable_sessions": { - "description": "Configures the Ory Kratos Session caching feature flag\n\nThis governs the \"feature_flags.cacheable_sessions\" setting.", - "type": "boolean" - }, - "kratos_identity_schemas": { - "$ref": "#/components/schemas/projectRevisionIdentitySchemas" - }, - "kratos_oauth2_provider_headers": { - "$ref": "#/components/schemas/nullJsonRawMessage" - }, - "kratos_oauth2_provider_override_return_to": { - "description": "Kratos OAuth2 Provider Override Return To\n\nEnabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.", - "type": "boolean" - }, - "kratos_oauth2_provider_url": { - "description": "The Revisions' OAuth2 Provider Integration URL\n\nThis governs the \"oauth2_provider.url\" setting.", - "type": "string" - }, - "kratos_secrets_cipher": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "kratos_secrets_cookie": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "kratos_secrets_default": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "kratos_selfservice_allowed_return_urls": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "kratos_selfservice_default_browser_return_url": { - "description": "Configures the Ory Kratos Default Return URL\n\nThis governs the \"selfservice.allowed_return_urls\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_error_ui_url": { - "description": "Configures the Ory Kratos Error UI URL\n\nThis governs the \"selfservice.flows.error.ui_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_hooks": { - "$ref": "#/components/schemas/projectRevisionHooks" - }, - "kratos_selfservice_flows_login_after_default_browser_return_url": { - "description": "Configures the Ory Kratos Login Default Return URL\n\nThis governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_login_after_oidc_default_browser_return_url": { - "description": "Configures the Ory Kratos Login After OIDC Default Return URL\n\nThis governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_login_after_password_default_browser_return_url": { - "description": "Configures the Ory Kratos Login After Password Default Return URL\n\nThis governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_login_after_webauthn_default_browser_return_url": { - "description": "Configures the Ory Kratos Login After WebAuthn Default Return URL\n\nThis governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_login_lifespan": { - "description": "Configures the Ory Kratos Login Lifespan\n\nThis governs the \"selfservice.flows.login.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_login_ui_url": { - "description": "Configures the Ory Kratos Login UI URL\n\nThis governs the \"selfservice.flows.login.ui_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_logout_after_default_browser_return_url": { - "description": "Configures the Ory Kratos Logout Default Return URL\n\nThis governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_recovery_after_default_browser_return_url": { - "description": "Configures the Ory Kratos Recovery Default Return URL\n\nThis governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_recovery_enabled": { - "description": "Configures the Ory Kratos Recovery Enabled Setting\n\nThis governs the \"selfservice.flows.recovery.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_flows_recovery_lifespan": { - "description": "Configures the Ory Kratos Recovery Lifespan\n\nThis governs the \"selfservice.flows.recovery.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_recovery_notify_unknown_recipients": { - "description": "Configures whether to notify unknown recipients of a Ory Kratos recovery flow\n\nThis governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.", - "type": "boolean" - }, - "kratos_selfservice_flows_recovery_ui_url": { - "description": "Configures the Ory Kratos Recovery UI URL\n\nThis governs the \"selfservice.flows.recovery.ui_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_recovery_use": { - "description": "Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")\n\nThis governs the \"selfservice.flows.recovery.use\" setting.\nlink SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode", - "enum": [ - "link", - "code" - ], - "type": "string", - "x-go-enum-desc": "link SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode" - }, - "kratos_selfservice_flows_registration_after_default_browser_return_url": { - "description": "Configures the Ory Kratos Registration Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_registration_after_oidc_default_browser_return_url": { - "description": "Configures the Ory Kratos Registration After OIDC Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_registration_after_password_default_browser_return_url": { - "description": "Configures the Ory Kratos Registration After Password Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url": { - "description": "Configures the Ory Kratos Registration After Password Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_registration_enabled": { - "description": "Configures the Whether Ory Kratos Registration is Enabled\n\nThis governs the \"selfservice.flows.registration.enabled\" setting.0", - "type": "boolean" - }, - "kratos_selfservice_flows_registration_lifespan": { - "description": "Configures the Ory Kratos Registration Lifespan\n\nThis governs the \"selfservice.flows.registration.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_registration_ui_url": { - "description": "Configures the Ory Kratos Registration UI URL\n\nThis governs the \"selfservice.flows.registration.ui_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_after_default_browser_return_url": { - "description": "Configures the Ory Kratos Settings Default Return URL\n\nThis governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_after_password_default_browser_return_url": { - "description": "Configures the Ory Kratos Settings Default Return URL After Updating Passwords\n\nThis governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_after_profile_default_browser_return_url": { - "description": "Configures the Ory Kratos Settings Default Return URL After Updating Profiles\n\nThis governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_lifespan": { - "description": "Configures the Ory Kratos Settings Lifespan\n\nThis governs the \"selfservice.flows.settings.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_privileged_session_max_age": { - "description": "Configures the Ory Kratos Settings Privileged Session Max Age\n\nThis governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_required_aal": { - "description": "Configures the Ory Kratos Settings Required AAL\n\nThis governs the \"selfservice.flows.settings.required_aal\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_settings_ui_url": { - "description": "Configures the Ory Kratos Settings UI URL\n\nThis governs the \"selfservice.flows.settings.ui_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_verification_after_default_browser_return_url": { - "description": "Configures the Ory Kratos Verification Default Return URL\n\nThis governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_verification_enabled": { - "description": "Configures the Ory Kratos Verification Enabled Setting\n\nThis governs the \"selfservice.flows.verification.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_flows_verification_lifespan": { - "description": "Configures the Ory Kratos Verification Lifespan\n\nThis governs the \"selfservice.flows.verification.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_verification_notify_unknown_recipients": { - "description": "Configures whether to notify unknown recipients of a Ory Kratos verification flow\n\nThis governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.", - "type": "boolean" - }, - "kratos_selfservice_flows_verification_ui_url": { - "description": "Configures the Ory Kratos Verification UI URL\n\nThis governs the \"selfservice.flows.verification.ui_url\" setting.", - "type": "string" - }, - "kratos_selfservice_flows_verification_use": { - "description": "Configures the Ory Kratos Strategy to use for Verification\n\nThis governs the \"selfservice.flows.verification.use\" setting.\nlink SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode", - "enum": [ - "link", - "code" - ], - "type": "string", - "x-go-enum-desc": "link SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode" - }, - "kratos_selfservice_methods_code_config_lifespan": { - "description": "Configures the Ory Kratos Code Method's lifespan\n\nThis governs the \"selfservice.methods.code.config.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_code_enabled": { - "description": "Configures whether Ory Kratos Code Method is enabled\n\nThis governs the \"selfservice.methods.code.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_link_config_base_url": { - "description": "Configures the Base URL which Recovery, Verification, and Login Links Point to\n\nIt is recommended to leave this value empty. It will be appropriately configured to the best matching domain\n(e.g. when using custom domains) automatically.\n\nThis governs the \"selfservice.methods.link.config.base_url\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_link_config_lifespan": { - "description": "Configures the Ory Kratos Link Method's lifespan\n\nThis governs the \"selfservice.methods.link.config.lifespan\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_link_enabled": { - "description": "Configures whether Ory Kratos Link Method is enabled\n\nThis governs the \"selfservice.methods.link.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_lookup_secret_enabled": { - "description": "Configures whether Ory Kratos TOTP Lookup Secret is enabled\n\nThis governs the \"selfservice.methods.lookup_secret.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_oidc_config_base_redirect_uri": { - "description": "Configures the Ory Kratos Third Party / OpenID Connect base redirect URI\n\nThis governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_oidc_config_providers": { - "$ref": "#/components/schemas/projectRevisionThirdPartyLoginProviders" - }, - "kratos_selfservice_methods_oidc_enabled": { - "description": "Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled\n\nThis governs the \"selfservice.methods.oidc.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_password_config_haveibeenpwned_enabled": { - "description": "Configures whether Ory Kratos Password HIBP Checks is enabled\n\nThis governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_password_config_identifier_similarity_check_enabled": { - "description": "Configures whether Ory Kratos Password should disable the similarity policy.\n\nThis governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_password_config_ignore_network_errors": { - "description": "Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors\n\nThis governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_password_config_max_breaches": { - "description": "Configures Ory Kratos Password Max Breaches Detection\n\nThis governs the \"selfservice.methods.password.config.max_breaches\" setting.", - "format": "int64", - "type": "integer" - }, - "kratos_selfservice_methods_password_config_min_password_length": { - "description": "Configures the minimum length of passwords.\n\nThis governs the \"selfservice.methods.password.config.min_password_length\" setting.", - "format": "int64", - "type": "integer" - }, - "kratos_selfservice_methods_password_enabled": { - "description": "Configures whether Ory Kratos Password Method is enabled\n\nThis governs the \"selfservice.methods.password.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_profile_enabled": { - "description": "Configures whether Ory Kratos Profile Method is enabled\n\nThis governs the \"selfservice.methods.profile.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_totp_config_issuer": { - "description": "Configures Ory Kratos TOTP Issuer\n\nThis governs the \"selfservice.methods.totp.config.issuer\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_totp_enabled": { - "description": "Configures whether Ory Kratos TOTP Method is enabled\n\nThis governs the \"selfservice.methods.totp.enabled\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_webauthn_config_passwordless": { - "description": "Configures whether Ory Kratos Webauthn is used for passwordless flows\n\nThis governs the \"selfservice.methods.webauthn.config.passwordless\" setting.", - "type": "boolean" - }, - "kratos_selfservice_methods_webauthn_config_rp_display_name": { - "description": "Configures the Ory Kratos Webauthn RP Display Name\n\nThis governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_webauthn_config_rp_icon": { - "description": "Configures the Ory Kratos Webauthn RP Icon\n\nThis governs the \"selfservice.methods.webauthn.config.rp.icon\" setting.\nDeprecated: This value will be ignored due to security considerations.", - "type": "string" - }, - "kratos_selfservice_methods_webauthn_config_rp_id": { - "description": "Configures the Ory Kratos Webauthn RP ID\n\nThis governs the \"selfservice.methods.webauthn.config.rp.id\" setting.", - "type": "string" - }, - "kratos_selfservice_methods_webauthn_config_rp_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "kratos_selfservice_methods_webauthn_enabled": { - "description": "Configures whether Ory Kratos Webauthn is enabled\n\nThis governs the \"selfservice.methods.webauthn.enabled\" setting.", - "type": "boolean" - }, - "kratos_session_cookie_persistent": { - "description": "Configures the Ory Kratos Session Cookie Persistent Attribute\n\nThis governs the \"session.cookie.persistent\" setting.", - "type": "boolean" - }, - "kratos_session_cookie_same_site": { - "description": "Configures the Ory Kratos Session Cookie SameSite Attribute\n\nThis governs the \"session.cookie.same_site\" setting.", - "type": "string" - }, - "kratos_session_lifespan": { - "description": "Configures the Ory Kratos Session Lifespan\n\nThis governs the \"session.lifespan\" setting.", - "type": "string" - }, - "kratos_session_whoami_required_aal": { - "description": "Configures the Ory Kratos Session Whoami AAL requirement\n\nThis governs the \"session.whoami.required_aal\" setting.", - "type": "string" - }, - "name": { - "description": "The project's name.", - "type": "string" - }, - "production": { - "description": "Whether this project is in production mode or not.\n\nIn development mode, a low-security profile is used making it easier to develop against your, for example, local environment.", - "type": "boolean" - }, - "project_id": { - "description": "The Revision's Project ID", - "format": "uuid", - "type": "string" - }, - "serve_admin_cors_allowed_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "serve_admin_cors_enabled": { - "description": "Enable CORS headers on all admin APIs\n\nThis governs the \"serve.admin.cors.enabled\" setting.", - "type": "boolean" - }, - "serve_public_cors_allowed_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "serve_public_cors_enabled": { - "description": "Enable CORS headers on all public APIs\n\nThis governs the \"serve.public.cors.enabled\" setting.", - "type": "boolean" - }, - "updated_at": { - "description": "Last Time Project's Revision was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "name" - ], - "type": "object" - }, - "normalizedProjectRevisionHook": { - "properties": { - "config_key": { - "description": "The Hooks Config Key", - "type": "string" - }, - "created_at": { - "description": "The Project's Revision Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "hook": { - "description": "The Hook Type", - "type": "string" - }, - "id": { - "description": "ID of the entry", - "format": "uuid", - "type": "string" - }, - "project_revision_id": { - "description": "The Revision's ID this schema belongs to", - "format": "uuid", - "type": "string" - }, - "updated_at": { - "description": "Last Time Project's Revision was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "web_hook_config_auth_api_key_in": { - "description": "Whether to send the API Key in the HTTP Header or as a HTTP Cookie", - "example": "header", - "type": "string" - }, - "web_hook_config_auth_api_key_name": { - "description": "The name of the api key", - "example": "X-API-Key", - "type": "string" - }, - "web_hook_config_auth_api_key_value": { - "description": "The value of the api key", - "example": "eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ", - "type": "string" - }, - "web_hook_config_auth_basic_auth_password": { - "description": "The password to be sent in the HTTP Basic Auth Header", - "type": "string" - }, - "web_hook_config_auth_basic_auth_user": { - "description": "The username to be sent in the HTTP Basic Auth Header", - "type": "string" - }, - "web_hook_config_auth_type": { - "description": "HTTP Auth Method to use for the Web-Hook", - "type": "string" - }, - "web_hook_config_body": { - "description": "URI pointing to the JsonNet template used for Web-Hook payload generation. Only used for those HTTP methods, which support HTTP body payloads.", - "example": "base64://ZnVuY3Rpb24oY3R4KSB7CiAgaWRlbnRpdHlfaWQ6IGlmIGN0eFsiaWRlbnRpdHkiXSAhPSBudWxsIHRoZW4gY3R4LmlkZW50aXR5LmlkLAp9=", - "type": "string" - }, - "web_hook_config_can_interrupt": { - "description": "If enabled allows the web hook to interrupt / abort the self-service flow. It only applies to certain flows (registration/verification/login/settings) and requires a valid response format.", - "type": "boolean" - }, - "web_hook_config_method": { - "description": "The HTTP method to use (GET, POST, etc) for the Web-Hook", - "example": "POST", - "type": "string" - }, - "web_hook_config_response_ignore": { - "description": "Whether to ignore the Web Hook response", - "type": "boolean" - }, - "web_hook_config_response_parse": { - "description": "Whether to parse the Web Hook response", - "type": "boolean" - }, - "web_hook_config_url": { - "description": "The URL the Web-Hook should call", - "example": "https://www.example.org/web-hook-listener", - "type": "string" - } - }, - "required": [ - "config_key", - "hook" - ], - "type": "object" - }, - "normalizedProjectRevisionIdentitySchema": { - "properties": { - "created_at": { - "description": "The Project's Revision Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "id": { - "description": "The unique ID of this entry.", - "format": "uuid", - "type": "string" - }, - "identity_schema": { - "$ref": "#/components/schemas/managedIdentitySchema" - }, - "identity_schema_id": { - "$ref": "#/components/schemas/NullUUID" - }, - "import_id": { - "description": "The imported (named) ID of the Identity Schema referenced in the Ory Kratos config.", - "type": "string" - }, - "import_url": { - "description": "The ImportURL can be used to import an Identity Schema from a bse64 encoded string.\nIn the future, this key also support HTTPS and other sources!\n\nIf you import an Ory Kratos configuration, this would be akin to the `identity.schemas.#.url` key.\n\nThe configuration will always return the import URL when you fetch it from the API.", - "example": "base64://ey...", - "type": "string" - }, - "is_default": { - "description": "If true sets the default schema for identities\n\nOnly one schema can ever be the default schema. If you\ntry to add two schemas with default to true, the\nrequest will fail.", - "type": "boolean" - }, - "preset": { - "description": "Use a preset instead of a custom identity schema.", - "type": "string" - }, - "project_revision_id": { - "description": "The Revision's ID this schema belongs to", - "format": "uuid", - "type": "string" - }, - "updated_at": { - "description": "Last Time Project's Revision was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "type": "object" - }, - "normalizedProjectRevisionIdentitySchemas": { - "items": { - "$ref": "#/components/schemas/normalizedProjectRevisionIdentitySchema" - }, - "type": "array" - }, - "normalizedProjectRevisionThirdPartyProvider": { - "properties": { - "apple_private_key": { - "$ref": "#/components/schemas/String" - }, - "apple_private_key_id": { - "description": "Apple Private Key Identifier\n\nSign In with Apple Private Key Identifier needed for generating a JWT token for client secret", - "example": "UX56C66723", - "type": "string" - }, - "apple_team_id": { - "description": "Apple Developer Team ID\n\nApple Developer Team ID needed for generating a JWT token for client secret", - "example": "KP76DQS54M", - "type": "string" - }, - "auth_url": { - "description": "AuthURL is the authorize url, typically something like: https://example.org/oauth2/auth\nShould only be used when the OAuth2 / OpenID Connect server is not supporting OpenID Connect Discovery and when\n`provider` is set to `generic`.", - "example": "https://www.googleapis.com/oauth2/v2/auth", - "type": "string" - }, - "azure_tenant": { - "description": "Tenant is the Azure AD Tenant to use for authentication, and must be set when `provider` is set to `microsoft`.\n\nCan be either `common`, `organizations`, `consumers` for a multitenant application or a specific tenant like\n`8eaef023-2b34-4da1-9baa-8bc8c9d6a490` or `contoso.onmicrosoft.com`.", - "example": "contoso.onmicrosoft.com", - "type": "string" - }, - "client_id": { - "description": "ClientID is the application's Client ID.", - "type": "string" - }, - "client_secret": { - "$ref": "#/components/schemas/String" - }, - "created_at": { - "description": "The Project's Revision Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "issuer_url": { - "description": "IssuerURL is the OpenID Connect Server URL. You can leave this empty if `provider` is not set to `generic`.\nIf set, neither `auth_url` nor `token_url` are required.", - "example": "https://accounts.google.com", - "type": "string" - }, - "label": { - "description": "Label represents an optional label which can be used in the UI generation.", - "type": "string" - }, - "mapper_url": { - "description": "Mapper specifies the JSONNet code snippet which uses the OpenID Connect Provider's data (e.g. GitHub or Google\nprofile information) to hydrate the identity's data.\n\nIt can be either a URL (file://, http(s)://, base64://) or an inline JSONNet code snippet.", - "type": "string" - }, - "project_revision_id": { - "description": "The Revision's ID this schema belongs to", - "format": "uuid", - "type": "string" - }, - "provider": { - "description": "Provider is either \"generic\" for a generic OAuth 2.0 / OpenID Connect Provider or one of:\ngeneric\ngoogle\ngithub\ngitlab\nmicrosoft\ndiscord\nslack\nfacebook\nvk\nyandex\napple", - "example": "google", - "type": "string" - }, - "provider_id": { - "description": "ID is the provider's ID", - "type": "string" - }, - "requested_claims": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "state": { - "description": "State indicates the state of the provider\n\nOnly providers with state `enabled` will be used for authentication\nenabled ThirdPartyProviderStateEnabled\ndisabled ThirdPartyProviderStateDisabled", - "enum": [ - "enabled", - "disabled" - ], - "type": "string", - "x-go-enum-desc": "enabled ThirdPartyProviderStateEnabled\ndisabled ThirdPartyProviderStateDisabled" - }, - "subject_source": { - "$ref": "#/components/schemas/String" - }, - "token_url": { - "description": "TokenURL is the token url, typically something like: https://example.org/oauth2/token\n\nShould only be used when the OAuth2 / OpenID Connect server is not supporting OpenID Connect Discovery and when\n`provider` is set to `generic`.", - "example": "https://www.googleapis.com/oauth2/v4/token", - "type": "string" - }, - "updated_at": { - "description": "Last Time Project's Revision was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "type": "object" - }, - "normalizedProjects": { - "items": { - "$ref": "#/components/schemas/normalizedProject" - }, - "type": "array" - }, - "nullBool": { - "nullable": true, - "type": "boolean" - }, - "nullDuration": { - "nullable": true, - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - }, - "nullInt64": { - "nullable": true, - "type": "integer" - }, - "nullJsonRawMessage": { - "description": "NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-", - "nullable": true, - "type": "object" - }, - "nullString": { - "type": "string" - }, - "nullTime": { - "format": "date-time", - "title": "NullTime implements sql.NullTime functionality.", - "type": "string" - }, - "oAuth2Client": { - "description": "OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.", - "properties": { - "access_token_strategy": { - "description": "OAuth 2.0 Access Token Strategy\n\nAccessTokenStrategy is the strategy used to generate access tokens.\nValid options are `jwt` and `opaque`. `jwt` is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens\nSetting the stragegy here overrides the global setting in `strategies.access_token`.", - "type": "string" - }, - "allowed_cors_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "audience": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "authorization_code_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "authorization_code_grant_id_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "authorization_code_grant_refresh_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "backchannel_logout_session_required": { - "description": "OpenID Connect Back-Channel Logout Session Required\n\nBoolean value specifying whether the RP requires that a sid (session ID) Claim be included in the Logout\nToken to identify the RP session with the OP when the backchannel_logout_uri is used.\nIf omitted, the default value is false.", - "type": "boolean" - }, - "backchannel_logout_uri": { - "description": "OpenID Connect Back-Channel Logout URI\n\nRP URL that will cause the RP to log itself out when sent a Logout Token by the OP.", - "type": "string" - }, - "client_credentials_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "client_id": { - "description": "OAuth 2.0 Client ID\n\nThe ID is autogenerated and immutable.", - "type": "string" - }, - "client_name": { - "description": "OAuth 2.0 Client Name\n\nThe human-readable name of the client to be presented to the\nend-user during authorization.", - "type": "string" - }, - "client_secret": { - "description": "OAuth 2.0 Client Secret\n\nThe secret will be included in the create request as cleartext, and then\nnever again. The secret is kept in hashed format and is not recoverable once lost.", - "type": "string" - }, - "client_secret_expires_at": { - "description": "OAuth 2.0 Client Secret Expires At\n\nThe field is currently not supported and its value is always 0.", - "format": "int64", - "type": "integer" - }, - "client_uri": { - "description": "OAuth 2.0 Client URI\n\nClientURI is a URL string of a web page providing information about the client.\nIf present, the server SHOULD display this URL to the end-user in\na clickable fashion.", - "type": "string" - }, - "contacts": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "created_at": { - "description": "OAuth 2.0 Client Creation Date\n\nCreatedAt returns the timestamp of the client's creation.", - "format": "date-time", - "type": "string" - }, - "frontchannel_logout_session_required": { - "description": "OpenID Connect Front-Channel Logout Session Required\n\nBoolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be\nincluded to identify the RP session with the OP when the frontchannel_logout_uri is used.\nIf omitted, the default value is false.", - "type": "boolean" - }, - "frontchannel_logout_uri": { - "description": "OpenID Connect Front-Channel Logout URI\n\nRP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query\nparameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the\nrequest and to determine which of the potentially multiple sessions is to be logged out; if either is\nincluded, both MUST be.", - "type": "string" - }, - "grant_types": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "implicit_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "implicit_grant_id_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "jwks": { - "description": "OAuth 2.0 Client JSON Web Key Set\n\nClient's JSON Web Key Set [JWK] document, passed by value. The semantics of the jwks parameter are the same as\nthe jwks_uri parameter, other than that the JWK Set is passed by value, rather than by reference. This parameter\nis intended only to be used by Clients that, for some reason, are unable to use the jwks_uri parameter, for\ninstance, by native applications that might not have a location to host the contents of the JWK Set. If a Client\ncan use jwks_uri, it MUST NOT use jwks. One significant downside of jwks is that it does not enable key rotation\n(which jwks_uri does, as described in Section 10 of OpenID Connect Core 1.0 [OpenID.Core]). The jwks_uri and jwks\nparameters MUST NOT be used together." - }, - "jwks_uri": { - "description": "OAuth 2.0 Client JSON Web Key Set URL\n\nURL for the Client's JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains\nthe signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the\nClient's encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing\nand encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced\nJWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both\nsignatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used\nto provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST\nmatch those in the certificate.", - "type": "string" - }, - "jwt_bearer_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "logo_uri": { - "description": "OAuth 2.0 Client Logo URI\n\nA URL string referencing the client's logo.", - "type": "string" - }, - "metadata": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "owner": { - "description": "OAuth 2.0 Client Owner\n\nOwner is a string identifying the owner of the OAuth 2.0 Client.", - "type": "string" - }, - "policy_uri": { - "description": "OAuth 2.0 Client Policy URI\n\nPolicyURI is a URL string that points to a human-readable privacy policy document\nthat describes how the deployment organization collects, uses,\nretains, and discloses personal data.", - "type": "string" - }, - "post_logout_redirect_uris": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "redirect_uris": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "refresh_token_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "refresh_token_grant_id_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "refresh_token_grant_refresh_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "registration_access_token": { - "description": "OpenID Connect Dynamic Client Registration Access Token\n\nRegistrationAccessToken can be used to update, get, or delete the OAuth2 Client. It is sent when creating a client\nusing Dynamic Client Registration.", - "type": "string" - }, - "registration_client_uri": { - "description": "OpenID Connect Dynamic Client Registration URL\n\nRegistrationClientURI is the URL used to update, get, or delete the OAuth2 Client.", - "type": "string" - }, - "request_object_signing_alg": { - "description": "OpenID Connect Request Object Signing Algorithm\n\nJWS [JWS] alg algorithm [JWA] that MUST be used for signing Request Objects sent to the OP. All Request Objects\nfrom this Client MUST be rejected, if not signed with this algorithm.", - "type": "string" - }, - "request_uris": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "response_types": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "scope": { - "description": "OAuth 2.0 Client Scope\n\nScope is a string containing a space-separated list of scope values (as\ndescribed in Section 3.3 of OAuth 2.0 [RFC6749]) that the client\ncan use when requesting access tokens.", - "example": "scope1 scope-2 scope.3 scope:4", - "type": "string" - }, - "sector_identifier_uri": { - "description": "OpenID Connect Sector Identifier URI\n\nURL using the https scheme to be used in calculating Pseudonymous Identifiers by the OP. The URL references a\nfile with a single JSON array of redirect_uri values.", - "type": "string" - }, - "skip_consent": { - "description": "SkipConsent skips the consent screen for this client. This field can only\nbe set from the admin API.", - "type": "boolean" - }, - "subject_type": { - "description": "OpenID Connect Subject Type\n\nThe `subject_types_supported` Discovery parameter contains a\nlist of the supported subject_type values for this server. Valid types include `pairwise` and `public`.", - "type": "string" - }, - "token_endpoint_auth_method": { - "default": "client_secret_basic", - "description": "OAuth 2.0 Token Endpoint Authentication Method\n\nRequested Client Authentication method for the Token Endpoint. The options are:\n\n`client_secret_basic`: (default) Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` encoded in the HTTP Authorization header.\n`client_secret_post`: Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` in the HTTP body.\n`private_key_jwt`: Use JSON Web Tokens to authenticate the client.\n`none`: Used for public clients (native apps, mobile apps) which can not have secrets.", - "type": "string" - }, - "token_endpoint_auth_signing_alg": { - "description": "OAuth 2.0 Token Endpoint Signing Algorithm\n\nRequested Client Authentication signing algorithm for the Token Endpoint.", - "type": "string" - }, - "tos_uri": { - "description": "OAuth 2.0 Client Terms of Service URI\n\nA URL string pointing to a human-readable terms of service\ndocument for the client that describes a contractual relationship\nbetween the end-user and the client that the end-user accepts when\nauthorizing the client.", - "type": "string" - }, - "updated_at": { - "description": "OAuth 2.0 Client Last Update Date\n\nUpdatedAt returns the timestamp of the last update.", - "format": "date-time", - "type": "string" - }, - "userinfo_signed_response_alg": { - "description": "OpenID Connect Request Userinfo Signed Response Algorithm\n\nJWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT\n[JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims\nas a UTF-8 encoded JSON object using the application/json content-type.", - "type": "string" - } - }, - "title": "OAuth 2.0 Client", - "type": "object" - }, - "oAuth2ClientTokenLifespans": { - "description": "Lifespans of different token types issued for this OAuth 2.0 Client.", - "properties": { - "authorization_code_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "authorization_code_grant_id_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "authorization_code_grant_refresh_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "client_credentials_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "implicit_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "implicit_grant_id_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "jwt_bearer_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "refresh_token_grant_access_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "refresh_token_grant_id_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - }, - "refresh_token_grant_refresh_token_lifespan": { - "$ref": "#/components/schemas/NullDuration" - } - }, - "title": "OAuth 2.0 Client Token Lifespans", - "type": "object" - }, - "oAuth2ConsentRequest": { - "properties": { - "acr": { - "description": "ACR represents the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it\nto express that, for example, a user authenticated using two factor authentication.", - "type": "string" - }, - "amr": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "challenge": { - "description": "ID is the identifier (\"authorization challenge\") of the consent authorization request. It is used to\nidentify the session.", - "type": "string" - }, - "client": { - "$ref": "#/components/schemas/oAuth2Client" - }, - "context": { - "$ref": "#/components/schemas/JSONRawMessage" - }, - "login_challenge": { - "description": "LoginChallenge is the login challenge this consent challenge belongs to. It can be used to associate\na login and consent request in the login \u0026 consent app.", - "type": "string" - }, - "login_session_id": { - "description": "LoginSessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag)\nthis ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false)\nthis will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back-\nchannel logout. It's value can generally be used to associate consecutive login requests by a certain user.", - "type": "string" - }, - "oidc_context": { - "$ref": "#/components/schemas/oAuth2ConsentRequestOpenIDConnectContext" - }, - "request_url": { - "description": "RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which\ninitiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but\nmight come in handy if you want to deal with additional request parameters.", - "type": "string" - }, - "requested_access_token_audience": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "requested_scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "skip": { - "description": "Skip, if true, implies that the client has requested the same scopes from the same user previously.\nIf true, you must not ask the user to grant the requested scopes. You must however either allow or deny the\nconsent request using the usual API call.", - "type": "boolean" - }, - "subject": { - "description": "Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope\nrequested by the OAuth 2.0 client.", - "type": "string" - } - }, - "required": [ - "challenge" - ], - "title": "Contains information on an ongoing consent request.", - "type": "object" - }, - "oAuth2ConsentRequestOpenIDConnectContext": { - "properties": { - "acr_values": { - "description": "ACRValues is the Authentication AuthorizationContext Class Reference requested in the OAuth 2.0 Authorization request.\nIt is a parameter defined by OpenID Connect and expresses which level of authentication (e.g. 2FA) is required.\n\nOpenID Connect defines it as follows:\n\u003e Requested Authentication AuthorizationContext Class Reference values. Space-separated string that specifies the acr values\nthat the Authorization Server is being requested to use for processing this Authentication Request, with the\nvalues appearing in order of preference. The Authentication AuthorizationContext Class satisfied by the authentication\nperformed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a\nVoluntary Claim by this parameter.", - "items": { - "type": "string" - }, - "type": "array" - }, - "display": { - "description": "Display is a string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User.\nThe defined values are:\npage: The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode.\npopup: The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over.\ntouch: The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface.\nwap: The Authorization Server SHOULD display the authentication and consent UI consistent with a \"feature phone\" type display.\n\nThe Authorization Server MAY also attempt to detect the capabilities of the User Agent and present an appropriate display.", - "type": "string" - }, - "id_token_hint_claims": { - "additionalProperties": {}, - "description": "IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the\nEnd-User's current or past authenticated session with the Client.", - "type": "object" - }, - "login_hint": { - "description": "LoginHint hints about the login identifier the End-User might use to log in (if necessary).\nThis hint can be used by an RP if it first asks the End-User for their e-mail address (or other identifier)\nand then wants to pass that value as a hint to the discovered authorization service. This value MAY also be a\nphone number in the format specified for the phone_number Claim. The use of this parameter is optional.", - "type": "string" - }, - "ui_locales": { - "description": "UILocales is the End-User'id preferred languages and scripts for the user interface, represented as a\nspace-separated list of BCP47 [RFC5646] language tag values, ordered by preference. For instance, the value\n\"fr-CA fr en\" represents a preference for French as spoken in Canada, then French (without a region designation),\nfollowed by English (without a region designation). An error SHOULD NOT result if some or all of the requested\nlocales are not supported by the OpenID Provider.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "title": "Contains optional information about the OpenID Connect request.", - "type": "object" - }, - "oAuth2ConsentSession": { - "description": "A completed OAuth 2.0 Consent Session.", - "properties": { - "consent_request": { - "$ref": "#/components/schemas/oAuth2ConsentRequest" - }, - "expires_at": { - "properties": { - "access_token": { - "format": "date-time", - "type": "string" - }, - "authorize_code": { - "format": "date-time", - "type": "string" - }, - "id_token": { - "format": "date-time", - "type": "string" - }, - "par_context": { - "format": "date-time", - "type": "string" - }, - "refresh_token": { - "format": "date-time", - "type": "string" - } - }, - "type": "object" - }, - "grant_access_token_audience": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "grant_scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "handled_at": { - "$ref": "#/components/schemas/nullTime" - }, - "remember": { - "description": "Remember Consent\n\nRemember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same\nclient asks the same user for the same, or a subset of, scope.", - "type": "boolean" - }, - "remember_for": { - "description": "Remember Consent For\n\nRememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the\nauthorization will be remembered indefinitely.", - "format": "int64", - "type": "integer" - }, - "session": { - "$ref": "#/components/schemas/acceptOAuth2ConsentRequestSession" - } - }, - "title": "OAuth 2.0 Consent Session", - "type": "object" - }, - "oAuth2ConsentSessions": { - "description": "List of OAuth 2.0 Consent Sessions", - "items": { - "$ref": "#/components/schemas/oAuth2ConsentSession" - }, - "type": "array" - }, - "oAuth2LoginRequest": { - "properties": { - "challenge": { - "description": "ID is the identifier (\"login challenge\") of the login request. It is used to\nidentify the session.", - "type": "string" - }, - "client": { - "$ref": "#/components/schemas/oAuth2Client" - }, - "oidc_context": { - "$ref": "#/components/schemas/oAuth2ConsentRequestOpenIDConnectContext" - }, - "request_url": { - "description": "RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which\ninitiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but\nmight come in handy if you want to deal with additional request parameters.", - "type": "string" - }, - "requested_access_token_audience": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "requested_scope": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "session_id": { - "description": "SessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag)\nthis ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false)\nthis will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back-\nchannel logout. It's value can generally be used to associate consecutive login requests by a certain user.", - "type": "string" - }, - "skip": { - "description": "Skip, if true, implies that the client has requested the same scopes from the same user previously.\nIf true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL.\n\nThis feature allows you to update / set session information.", - "type": "boolean" - }, - "subject": { - "description": "Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope\nrequested by the OAuth 2.0 client. If this value is set and `skip` is true, you MUST include this subject type\nwhen accepting the login request, or the request will fail.", - "type": "string" - } - }, - "required": [ - "challenge", - "requested_scope", - "requested_access_token_audience", - "skip", - "subject", - "client", - "request_url" - ], - "title": "Contains information on an ongoing login request.", - "type": "object" - }, - "oAuth2LogoutRequest": { - "properties": { - "challenge": { - "description": "Challenge is the identifier (\"logout challenge\") of the logout authentication request. It is used to\nidentify the session.", - "type": "string" - }, - "client": { - "$ref": "#/components/schemas/oAuth2Client" - }, - "request_url": { - "description": "RequestURL is the original Logout URL requested.", - "type": "string" - }, - "rp_initiated": { - "description": "RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client.", - "type": "boolean" - }, - "sid": { - "description": "SessionID is the login session ID that was requested to log out.", - "type": "string" - }, - "subject": { - "description": "Subject is the user for whom the logout was request.", - "type": "string" - } - }, - "title": "Contains information about an ongoing logout request.", - "type": "object" - }, - "oAuth2RedirectTo": { - "description": "Contains a redirect URL used to complete a login, consent, or logout request.", - "properties": { - "redirect_to": { - "description": "RedirectURL is the URL which you should redirect the user's browser to once the authentication process is completed.", - "type": "string" - } - }, - "required": [ - "redirect_to" - ], - "title": "OAuth 2.0 Redirect Browser To", - "type": "object" - }, - "oAuth2TokenExchange": { - "description": "OAuth2 Token Exchange Result", - "properties": { - "access_token": { - "description": "The access token issued by the authorization server.", - "type": "string" - }, - "expires_in": { - "description": "The lifetime in seconds of the access token. For\nexample, the value \"3600\" denotes that the access token will\nexpire in one hour from the time the response was generated.", - "format": "int64", - "type": "integer" - }, - "id_token": { - "description": "To retrieve a refresh token request the id_token scope.", - "format": "int64", - "type": "integer" - }, - "refresh_token": { - "description": "The refresh token, which can be used to obtain new\naccess tokens. To retrieve it add the scope \"offline\" to your access token request.", - "type": "string" - }, - "scope": { - "description": "The scope of the access token", - "type": "string" - }, - "token_type": { - "description": "The type of the token issued", - "type": "string" - } - }, - "type": "object" - }, - "oidcConfiguration": { - "description": "Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms\namong others.", - "properties": { - "authorization_endpoint": { - "description": "OAuth 2.0 Authorization Endpoint URL", - "example": "https://playground.ory.sh/ory-hydra/public/oauth2/auth", - "type": "string" - }, - "backchannel_logout_session_supported": { - "description": "OpenID Connect Back-Channel Logout Session Required\n\nBoolean value specifying whether the OP can pass a sid (session ID) Claim in the Logout Token to identify the RP\nsession with the OP. If supported, the sid Claim is also included in ID Tokens issued by the OP", - "type": "boolean" - }, - "backchannel_logout_supported": { - "description": "OpenID Connect Back-Channel Logout Supported\n\nBoolean value specifying whether the OP supports back-channel logout, with true indicating support.", - "type": "boolean" - }, - "claims_parameter_supported": { - "description": "OpenID Connect Claims Parameter Parameter Supported\n\nBoolean value specifying whether the OP supports use of the claims parameter, with true indicating support.", - "type": "boolean" - }, - "claims_supported": { - "description": "OpenID Connect Supported Claims\n\nJSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply\nvalues for. Note that for privacy or other reasons, this might not be an exhaustive list.", - "items": { - "type": "string" - }, - "type": "array" - }, - "code_challenge_methods_supported": { - "description": "OAuth 2.0 PKCE Supported Code Challenge Methods\n\nJSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported\nby this authorization server.", - "items": { - "type": "string" - }, - "type": "array" - }, - "credentials_endpoint_draft_00": { - "description": "OpenID Connect Verifiable Credentials Endpoint\n\nContains the URL of the Verifiable Credentials Endpoint.", - "type": "string" - }, - "credentials_supported_draft_00": { - "description": "OpenID Connect Verifiable Credentials Supported\n\nJSON array containing a list of the Verifiable Credentials supported by this authorization server.", - "items": { - "$ref": "#/components/schemas/credentialSupportedDraft00" - }, - "type": "array" - }, - "end_session_endpoint": { - "description": "OpenID Connect End-Session Endpoint\n\nURL at the OP to which an RP can perform a redirect to request that the End-User be logged out at the OP.", - "type": "string" - }, - "frontchannel_logout_session_supported": { - "description": "OpenID Connect Front-Channel Logout Session Required\n\nBoolean value specifying whether the OP can pass iss (issuer) and sid (session ID) query parameters to identify\nthe RP session with the OP when the frontchannel_logout_uri is used. If supported, the sid Claim is also\nincluded in ID Tokens issued by the OP.", - "type": "boolean" - }, - "frontchannel_logout_supported": { - "description": "OpenID Connect Front-Channel Logout Supported\n\nBoolean value specifying whether the OP supports HTTP-based logout, with true indicating support.", - "type": "boolean" - }, - "grant_types_supported": { - "description": "OAuth 2.0 Supported Grant Types\n\nJSON array containing a list of the OAuth 2.0 Grant Type values that this OP supports.", - "items": { - "type": "string" - }, - "type": "array" - }, - "id_token_signed_response_alg": { - "description": "OpenID Connect Default ID Token Signing Algorithms\n\nAlgorithm used to sign OpenID Connect ID Tokens.", - "items": { - "type": "string" - }, - "type": "array" - }, - "id_token_signing_alg_values_supported": { - "description": "OpenID Connect Supported ID Token Signing Algorithms\n\nJSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for the ID Token\nto encode the Claims in a JWT.", - "items": { - "type": "string" - }, - "type": "array" - }, - "issuer": { - "description": "OpenID Connect Issuer URL\n\nAn URL using the https scheme with no query or fragment component that the OP asserts as its IssuerURL Identifier.\nIf IssuerURL discovery is supported , this value MUST be identical to the issuer value returned\nby WebFinger. This also MUST be identical to the iss Claim value in ID Tokens issued from this IssuerURL.", - "example": "https://playground.ory.sh/ory-hydra/public/", - "type": "string" - }, - "jwks_uri": { - "description": "OpenID Connect Well-Known JSON Web Keys URL\n\nURL of the OP's JSON Web Key Set [JWK] document. This contains the signing key(s) the RP uses to validate\nsignatures from the OP. The JWK Set MAY also contain the Server's encryption key(s), which are used by RPs\nto encrypt requests to the Server. When both signing and encryption keys are made available, a use (Key Use)\nparameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage.\nAlthough some algorithms allow the same key to be used for both signatures and encryption, doing so is\nNOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of\nkeys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.", - "example": "https://{slug}.projects.oryapis.com/.well-known/jwks.json", - "type": "string" - }, - "registration_endpoint": { - "description": "OpenID Connect Dynamic Client Registration Endpoint URL", - "example": "https://playground.ory.sh/ory-hydra/admin/client", - "type": "string" - }, - "request_object_signing_alg_values_supported": { - "description": "OpenID Connect Supported Request Object Signing Algorithms\n\nJSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for Request Objects,\nwhich are described in Section 6.1 of OpenID Connect Core 1.0 [OpenID.Core]. These algorithms are used both when\nthe Request Object is passed by value (using the request parameter) and when it is passed by reference\n(using the request_uri parameter).", - "items": { - "type": "string" - }, - "type": "array" - }, - "request_parameter_supported": { - "description": "OpenID Connect Request Parameter Supported\n\nBoolean value specifying whether the OP supports use of the request parameter, with true indicating support.", - "type": "boolean" - }, - "request_uri_parameter_supported": { - "description": "OpenID Connect Request URI Parameter Supported\n\nBoolean value specifying whether the OP supports use of the request_uri parameter, with true indicating support.", - "type": "boolean" - }, - "require_request_uri_registration": { - "description": "OpenID Connect Requires Request URI Registration\n\nBoolean value specifying whether the OP requires any request_uri values used to be pre-registered\nusing the request_uris registration parameter.", - "type": "boolean" - }, - "response_modes_supported": { - "description": "OAuth 2.0 Supported Response Modes\n\nJSON array containing a list of the OAuth 2.0 response_mode values that this OP supports.", - "items": { - "type": "string" - }, - "type": "array" - }, - "response_types_supported": { - "description": "OAuth 2.0 Supported Response Types\n\nJSON array containing a list of the OAuth 2.0 response_type values that this OP supports. Dynamic OpenID\nProviders MUST support the code, id_token, and the token id_token Response Type values.", - "items": { - "type": "string" - }, - "type": "array" - }, - "revocation_endpoint": { - "description": "OAuth 2.0 Token Revocation URL\n\nURL of the authorization server's OAuth 2.0 revocation endpoint.", - "type": "string" - }, - "scopes_supported": { - "description": "OAuth 2.0 Supported Scope Values\n\nJSON array containing a list of the OAuth 2.0 [RFC6749] scope values that this server supports. The server MUST\nsupport the openid scope value. Servers MAY choose not to advertise some supported scope values even when this parameter is used", - "items": { - "type": "string" - }, - "type": "array" - }, - "subject_types_supported": { - "description": "OpenID Connect Supported Subject Types\n\nJSON array containing a list of the Subject Identifier types that this OP supports. Valid types include\npairwise and public.", - "items": { - "type": "string" - }, - "type": "array" - }, - "token_endpoint": { - "description": "OAuth 2.0 Token Endpoint URL", - "example": "https://playground.ory.sh/ory-hydra/public/oauth2/token", - "type": "string" - }, - "token_endpoint_auth_methods_supported": { - "description": "OAuth 2.0 Supported Client Authentication Methods\n\nJSON array containing a list of Client Authentication methods supported by this Token Endpoint. The options are\nclient_secret_post, client_secret_basic, client_secret_jwt, and private_key_jwt, as described in Section 9 of OpenID Connect Core 1.0", - "items": { - "type": "string" - }, - "type": "array" - }, - "userinfo_endpoint": { - "description": "OpenID Connect Userinfo URL\n\nURL of the OP's UserInfo Endpoint.", - "type": "string" - }, - "userinfo_signed_response_alg": { - "description": "OpenID Connect User Userinfo Signing Algorithm\n\nAlgorithm used to sign OpenID Connect Userinfo Responses.", - "items": { - "type": "string" - }, - "type": "array" - }, - "userinfo_signing_alg_values_supported": { - "description": "OpenID Connect Supported Userinfo Signing Algorithm\n\nJSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "issuer", - "authorization_endpoint", - "token_endpoint", - "jwks_uri", - "subject_types_supported", - "response_types_supported", - "id_token_signing_alg_values_supported", - "id_token_signed_response_alg", - "userinfo_signed_response_alg" - ], - "title": "OpenID Connect Discovery Metadata", - "type": "object" - }, - "oidcUserInfo": { - "description": "OpenID Connect Userinfo", - "properties": { - "birthdate": { - "description": "End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates.", - "type": "string" - }, - "email": { - "description": "End-User's preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The RP MUST NOT rely upon this value being unique, as discussed in Section 5.7.", - "type": "string" - }, - "email_verified": { - "description": "True if the End-User's e-mail address has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this e-mail address was controlled by the End-User at the time the verification was performed. The means by which an e-mail address is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating.", - "type": "boolean" - }, - "family_name": { - "description": "Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters.", - "type": "string" - }, - "gender": { - "description": "End-User's gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable.", - "type": "string" - }, - "given_name": { - "description": "Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters.", - "type": "string" - }, - "locale": { - "description": "End-User's locale, represented as a BCP47 [RFC5646] language tag. This is typically an ISO 639-1 Alpha-2 [ISO639‑1] language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US; Relying Parties MAY choose to accept this locale syntax as well.", - "type": "string" - }, - "middle_name": { - "description": "Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used.", - "type": "string" - }, - "name": { - "description": "End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences.", - "type": "string" - }, - "nickname": { - "description": "Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael.", - "type": "string" - }, - "phone_number": { - "description": "End-User's preferred telephone number. E.164 [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678.", - "type": "string" - }, - "phone_number_verified": { - "description": "True if the End-User's phone number has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this phone number was controlled by the End-User at the time the verification was performed. The means by which a phone number is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. When true, the phone_number Claim MUST be in E.164 format and any extensions MUST be represented in RFC 3966 format.", - "type": "boolean" - }, - "picture": { - "description": "URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User.", - "type": "string" - }, - "preferred_username": { - "description": "Non-unique shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace.", - "type": "string" - }, - "profile": { - "description": "URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User.", - "type": "string" - }, - "sub": { - "description": "Subject - Identifier for the End-User at the IssuerURL.", - "type": "string" - }, - "updated_at": { - "description": "Time the End-User's information was last updated. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time.", - "format": "int64", - "type": "integer" - }, - "website": { - "description": "URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with.", - "type": "string" - }, - "zoneinfo": { - "description": "String from zoneinfo [zoneinfo] time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles.", - "type": "string" - } - }, - "type": "object" - }, - "pagination": { - "properties": { - "page": { - "default": 1, - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "format": "int64", - "minimum": 1, - "type": "integer" - }, - "page_size": { - "default": 250, - "description": "Items per page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - }, - "page_token": { - "default": "1", - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "minimum": 1, - "type": "string" - }, - "per_page": { - "default": 250, - "description": "Items per Page\n\nThis is the number of items per page.", - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - "type": "object" - }, - "paginationHeaders": { - "properties": { - "link": { - "description": "The link header contains pagination links.\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).\n\nin: header", - "type": "string" - }, - "x-total-count": { - "description": "The total number of clients.\n\nin: header", - "type": "string" - } - }, - "type": "object" - }, - "patchIdentitiesBody": { - "description": "Patch Identities Body", - "properties": { - "identities": { - "description": "Identities holds the list of patches to apply\n\nrequired", - "items": { - "$ref": "#/components/schemas/identityPatch" - }, - "type": "array" - } - }, - "type": "object" - }, - "performNativeLogoutBody": { - "description": "Perform Native Logout Request Body", - "properties": { - "session_token": { - "description": "The Session Token\n\nInvalidate this session token.", - "type": "string" - } - }, - "required": [ - "session_token" - ], - "type": "object" - }, - "permissionsOnProject": { - "additionalProperties": { - "type": "boolean" - }, - "description": "Get Permissions on Project Request Parameters", - "type": "object" - }, - "plans": { - "$ref": "#/components/schemas/Pricing" - }, - "postCheckPermissionBody": { - "description": "Check Permission using Post Request Body", - "properties": { - "namespace": { - "description": "Namespace to query", - "type": "string" - }, - "object": { - "description": "Object to query", - "type": "string" - }, - "relation": { - "description": "Relation to query", - "type": "string" - }, - "subject_id": { - "description": "SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.", - "type": "string" - }, - "subject_set": { - "$ref": "#/components/schemas/subjectSet" - } - }, - "type": "object" - }, - "postCheckPermissionOrErrorBody": { - "description": "Post Check Permission Or Error Body", - "properties": { - "namespace": { - "description": "Namespace to query", - "type": "string" - }, - "object": { - "description": "Object to query", - "type": "string" - }, - "relation": { - "description": "Relation to query", - "type": "string" - }, - "subject_id": { - "description": "SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.", - "type": "string" - }, - "subject_set": { - "$ref": "#/components/schemas/subjectSet" - } - }, - "type": "object" - }, - "project": { - "properties": { - "cors_admin": { - "$ref": "#/components/schemas/CORS" - }, - "cors_public": { - "$ref": "#/components/schemas/CORS" - }, - "id": { - "description": "The project's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "name": { - "description": "The name of the project.", - "type": "string" - }, - "revision_id": { - "description": "The configuration revision ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "services": { - "$ref": "#/components/schemas/projectServices" - }, - "slug": { - "description": "The project's slug", - "readOnly": true, - "type": "string" - }, - "state": { - "description": "The state of the project.\nrunning Running\nhalted Halted\ndeleted Deleted", - "enum": [ - "running", - "halted", - "deleted" - ], - "readOnly": true, - "type": "string", - "x-go-enum-desc": "running Running\nhalted Halted\ndeleted Deleted" - } - }, - "required": [ - "id", - "revision_id", - "slug", - "services", - "state", - "name", - "cors_public", - "cors_admin" - ], - "type": "object" - }, - "projectApiKey": { - "properties": { - "created_at": { - "description": "The token's creation date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "id": { - "description": "The token's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "name": { - "description": "The Token's Name\n\nSet this to help you remember, for example, where you use the token.", - "type": "string" - }, - "owner_id": { - "description": "The token's owner", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "project_id": { - "description": "The Token's Project ID", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "updated_at": { - "description": "The token's last update date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "value": { - "description": "The token's value", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "name", - "owner_id" - ], - "type": "object" - }, - "projectApiKeys": { - "items": { - "$ref": "#/components/schemas/projectApiKey" - }, - "type": "array" - }, - "projectBranding": { - "properties": { - "created_at": { - "description": "The Customization Creation Date", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "default_theme": { - "$ref": "#/components/schemas/projectBrandingTheme" - }, - "id": { - "description": "The customization ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "project_id": { - "description": "The Project's ID this customization is associated with", - "format": "uuid", - "type": "string" - }, - "themes": { - "$ref": "#/components/schemas/projectBrandingThemes" - }, - "updated_at": { - "description": "Last Time Branding was Updated", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "project_id", - "default_theme", - "themes", - "created_at", - "updated_at" - ], - "title": "ProjectBranding holds all settings for customizing the Ory Account Experience.", - "type": "object" - }, - "projectBrandingColors": { - "properties": { - "accent_default_color": { - "description": "AccentDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_disabled_color": { - "description": "AccentDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_emphasis_color": { - "description": "AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_muted_color": { - "description": "AccentMutedColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_subtle_color": { - "description": "AccentSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "background_canvas_color": { - "description": "BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "background_subtle_color": { - "description": "BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "background_surface_color": { - "description": "BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "border_default_color": { - "description": "BorderDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_default_color": { - "description": "ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_emphasis_color": { - "description": "ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_muted_color": { - "description": "ErrorMutedColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_subtle_color": { - "description": "ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_default_color": { - "description": "ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_disabled_color": { - "description": "ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_muted_color": { - "description": "ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_on_accent_color": { - "description": "ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_on_dark_color": { - "description": "ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_on_disabled_color": { - "description": "ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_subtle_color": { - "description": "ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_background_color": { - "description": "InputBackgroundColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_disabled_color": { - "description": "InputDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_placeholder_color": { - "description": "InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_text_color": { - "description": "InputTextColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "primary_color": { - "description": "Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.", - "type": "string" - }, - "secondary_color": { - "description": "Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.", - "type": "string" - }, - "success_emphasis_color": { - "description": "SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "text_default_color": { - "description": "TextDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "text_disabled_color": { - "description": "TextDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - } - }, - "title": "ProjectBrandingColors are the colors used by the Ory Account Experience theme.", - "type": "object" - }, - "projectBrandingTheme": { - "properties": { - "accent_default_color": { - "description": "AccentDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_disabled_color": { - "description": "AccentDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_emphasis_color": { - "description": "AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_muted_color": { - "description": "AccentMutedColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "accent_subtle_color": { - "description": "AccentSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "background_canvas_color": { - "description": "BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "background_subtle_color": { - "description": "BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "background_surface_color": { - "description": "BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "border_default_color": { - "description": "BorderDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "created_at": { - "description": "The Customization Creation Date.", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "error_default_color": { - "description": "ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_emphasis_color": { - "description": "ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_muted_color": { - "description": "ErrorMutedColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "error_subtle_color": { - "description": "ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_default_color": { - "description": "ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_disabled_color": { - "description": "ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_muted_color": { - "description": "ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_on_accent_color": { - "description": "ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_on_dark_color": { - "description": "ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_on_disabled_color": { - "description": "ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "foreground_subtle_color": { - "description": "ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "id": { - "description": "The customization theme ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "input_background_color": { - "description": "InputBackgroundColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_disabled_color": { - "description": "InputDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_placeholder_color": { - "description": "InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "input_text_color": { - "description": "InputTextColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "logo_type": { - "description": "Logo Type\nThe Logo mime type.", - "type": "string" - }, - "logo_url": { - "description": "Logo URL\nLogo can be an https:// or base64:// URL. If the URL is not allowed, the logo will be stored inside the Ory Network storage bucket.", - "type": "string" - }, - "name": { - "description": "The customization theme name.", - "type": "string" - }, - "primary_color": { - "description": "Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.", - "type": "string" - }, - "project_branding_id": { - "description": "The ProjectBranding ID this customization is associated with.", - "format": "uuid", - "type": "string" - }, - "secondary_color": { - "description": "Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.", - "type": "string" - }, - "success_emphasis_color": { - "description": "SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "text_default_color": { - "description": "TextDefaultColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "text_disabled_color": { - "description": "TextDisabledColor is a hex color code used by the Ory Account Experience theme.", - "type": "string" - }, - "updated_at": { - "description": "Last Time Branding was Updated.", - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "project_branding_id", - "name", - "created_at", - "updated_at" - ], - "title": "ProjectBrandingTheme represents a Theme for the Ory Account Experience.", - "type": "object" - }, - "projectBrandingThemes": { - "items": { - "$ref": "#/components/schemas/projectBrandingTheme" - }, - "title": "ProjectBrandingThemes is a list of ProjectBrandingTheme.", - "type": "array" - }, - "projectHost": { - "properties": { - "host": { - "description": "The project's host.", - "type": "string" - }, - "id": { - "description": "The mapping's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "project_id": { - "description": "The Revision's Project ID", - "format": "uuid", - "type": "string" - } - }, - "required": [ - "id", - "host", - "project_id" - ], - "type": "object" - }, - "projectMember": { - "$ref": "#/components/schemas/cloudAccount" - }, - "projectMembers": { - "items": { - "$ref": "#/components/schemas/projectMember" - }, - "type": "array" - }, - "projectMetadata": { - "properties": { - "created_at": { - "description": "The Project's Creation Date", - "format": "date-time", - "type": "string" - }, - "hosts": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "id": { - "description": "The project's ID.", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "name": { - "description": "The project's name if set", - "type": "string" - }, - "slug": { - "description": "The project's slug", - "readOnly": true, - "type": "string" - }, - "state": { - "description": "The state of the project.\nrunning Running\nhalted Halted\ndeleted Deleted", - "enum": [ - "running", - "halted", - "deleted" - ], - "type": "string", - "x-go-enum-desc": "running Running\nhalted Halted\ndeleted Deleted" - }, - "subscription_id": { - "$ref": "#/components/schemas/NullUUID" - }, - "subscription_plan": { - "$ref": "#/components/schemas/String" - }, - "updated_at": { - "description": "Last Time Project was Updated", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id", - "hosts", - "state", - "created_at", - "updated_at", - "name" - ], - "type": "object" - }, - "projectMetadataList": { - "items": { - "$ref": "#/components/schemas/projectMetadata" - }, - "type": "array" - }, - "projectRevisionHooks": { - "items": { - "$ref": "#/components/schemas/normalizedProjectRevisionHook" - }, - "type": "array" - }, - "projectRevisionIdentitySchemas": { - "items": { - "$ref": "#/components/schemas/normalizedProjectRevisionIdentitySchema" - }, - "type": "array" - }, - "projectRevisionThirdPartyLoginProviders": { - "items": { - "$ref": "#/components/schemas/normalizedProjectRevisionThirdPartyProvider" - }, - "type": "array" - }, - "projectRevisions": { - "items": { - "$ref": "#/components/schemas/normalizedProjectRevision" - }, - "type": "array" - }, - "projectServiceIdentity": { - "properties": { - "config": { - "type": "object" - } - }, - "required": [ - "config" - ], - "type": "object" - }, - "projectServiceOAuth2": { - "properties": { - "config": { - "type": "object" - } - }, - "required": [ - "config" - ], - "type": "object" - }, - "projectServicePermission": { - "properties": { - "config": { - "type": "object" - } - }, - "required": [ - "config" - ], - "type": "object" - }, - "projectServices": { - "properties": { - "identity": { - "$ref": "#/components/schemas/projectServiceIdentity" - }, - "oauth2": { - "$ref": "#/components/schemas/projectServiceOAuth2" - }, - "permission": { - "$ref": "#/components/schemas/projectServicePermission" - } - }, - "type": "object" - }, - "projects": { - "items": { - "$ref": "#/components/schemas/project" - }, - "type": "array" - }, - "quotaUsage": { - "properties": { - "additional_price": { - "format": "int64", - "type": "integer" - }, - "can_use_more": { - "type": "boolean" - }, - "feature": { - "description": "\nregion_eu RegionEU\nregion_us RegionUS\nregion_apac RegionAPAC\nregion_global RegionGlobal\nproduction_projects ProductionProjects\ndaily_active_users DailyActiveUsers\ncustom_domains CustomDomains\nsla SLA\ncollaborator_seats CollaboratorSeats\nedge_cache EdgeCache\nbranding_themes BrandingThemes\nzendesk_support ZendeskSupport\nproject_metrics ProjectMetrics\nrate_limit_tier RateLimitTier\nsession_rate_limit_tier RateLimitTierSessions", - "enum": [ - "region_eu", - "region_us", - "region_apac", - "region_global", - "production_projects", - "daily_active_users", - "custom_domains", - "sla", - "collaborator_seats", - "edge_cache", - "branding_themes", - "zendesk_support", - "project_metrics", - "rate_limit_tier", - "session_rate_limit_tier" - ], - "type": "string", - "x-go-enum-desc": "region_eu RegionEU\nregion_us RegionUS\nregion_apac RegionAPAC\nregion_global RegionGlobal\nproduction_projects ProductionProjects\ndaily_active_users DailyActiveUsers\ncustom_domains CustomDomains\nsla SLA\ncollaborator_seats CollaboratorSeats\nedge_cache EdgeCache\nbranding_themes BrandingThemes\nzendesk_support ZendeskSupport\nproject_metrics ProjectMetrics\nrate_limit_tier RateLimitTier\nsession_rate_limit_tier RateLimitTierSessions" - }, - "feature_available": { - "type": "boolean" - }, - "included": { - "format": "int64", - "type": "integer" - }, - "used": { - "format": "int64", - "type": "integer" - } - }, - "required": [ - "feature", - "included", - "used", - "additional_price", - "can_use_more", - "feature_available" - ], - "type": "object" - }, - "recoveryCodeForIdentity": { - "description": "Used when an administrator creates a recovery code for an identity.", - "properties": { - "expires_at": { - "description": "Expires At is the timestamp of when the recovery flow expires\n\nThe timestamp when the recovery link expires.", - "format": "date-time", - "type": "string" - }, - "recovery_code": { - "description": "RecoveryCode is the code that can be used to recover the account", - "type": "string" - }, - "recovery_link": { - "description": "RecoveryLink with flow\n\nThis link opens the recovery UI with an empty `code` field.", - "type": "string" - } - }, - "required": [ - "recovery_link", - "recovery_code" - ], - "title": "Recovery Code for Identity", - "type": "object" - }, - "recoveryFlow": { - "description": "This request is used when an identity wants to recover their account.\n\nWe recommend reading the [Account Recovery Documentation](../self-service/flows/password-reset-account-recovery)", - "properties": { - "active": { - "description": "Active, if set, contains the recovery method that is being used. It is initially\nnot set.", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the request expires. If the user still wishes to update the setting,\na new request has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the request's unique ID. When performing the recovery flow, this\nrepresents the id in the recovery ui's query parameter: http://\u003cselfservice.flows.recovery.ui_url\u003e?request=\u003cid\u003e", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the request occurred.", - "format": "date-time", - "type": "string" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/recoveryFlowState" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui", - "state" - ], - "title": "A Recovery Flow", - "type": "object" - }, - "recoveryFlowState": { - "description": "The state represents the state of the recovery flow.\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed.", - "enum": [ - "choose_method", - "sent_email", - "passed_challenge" - ], - "title": "Recovery Flow State", - "type": "string" - }, - "recoveryIdentityAddress": { - "properties": { - "created_at": { - "description": "CreatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "id": { - "format": "uuid", - "type": "string" - }, - "updated_at": { - "description": "UpdatedAt is a helper struct field for gobuffalo.pop.", - "format": "date-time", - "type": "string" - }, - "value": { - "type": "string" - }, - "via": { - "$ref": "#/components/schemas/RecoveryAddressType" - } - }, - "required": [ - "id", - "value", - "via" - ], - "type": "object" - }, - "recoveryLinkForIdentity": { - "description": "Used when an administrator creates a recovery link for an identity.", - "properties": { - "expires_at": { - "description": "Recovery Link Expires At\n\nThe timestamp when the recovery link expires.", - "format": "date-time", - "type": "string" - }, - "recovery_link": { - "description": "Recovery Link\n\nThis link can be used to recover the account.", - "type": "string" - } - }, - "required": [ - "recovery_link" - ], - "title": "Identity Recovery Link", - "type": "object" - }, - "registrationFlow": { - "properties": { - "active": { - "$ref": "#/components/schemas/identityCredentialsType" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in,\na new flow has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the flow's unique ID. When performing the registration flow, this\nrepresents the id in the registration ui's query parameter: http://\u003cselfservice.flows.registration.ui_url\u003e/?flow=\u003cid\u003e", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the flow occurred.", - "format": "date-time", - "type": "string" - }, - "oauth2_login_challenge": { - "description": "Ory OAuth 2.0 Login Challenge.\n\nThis value is set using the `login_challenge` query parameter of the registration and login endpoints.\nIf set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.", - "type": "string" - }, - "oauth2_login_request": { - "$ref": "#/components/schemas/oAuth2LoginRequest" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "session_token_exchange_code": { - "description": "SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed.\nThis is only set if the client has requested a session token exchange code, and if the flow is of type \"api\",\nand only on creating the flow.", - "type": "string" - }, - "transient_payload": { - "description": "TransientPayload is used to pass data from the registration to a webhook", - "type": "object" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui" - ], - "type": "object" - }, - "rejectOAuth2Request": { - "properties": { - "error": { - "description": "The error should follow the OAuth2 error format (e.g. `invalid_request`, `login_required`).\n\nDefaults to `request_denied`.", - "type": "string" - }, - "error_debug": { - "description": "Debug contains information to help resolve the problem as a developer. Usually not exposed\nto the public but only in the server logs.", - "type": "string" - }, - "error_description": { - "description": "Description of the error in a human readable format.", - "type": "string" - }, - "error_hint": { - "description": "Hint to help resolve the error.", - "type": "string" - }, - "status_code": { - "description": "Represents the HTTP status code of the error (e.g. 401 or 403)\n\nDefaults to 400", - "format": "int64", - "type": "integer" - } - }, - "title": "The request payload used to accept a login or consent request.", - "type": "object" - }, - "relationQuery": { - "description": "Relation Query", - "properties": { - "namespace": { - "description": "Namespace to query", - "type": "string" - }, - "object": { - "description": "Object to query", - "type": "string" - }, - "relation": { - "description": "Relation to query", - "type": "string" - }, - "subject_id": { - "description": "SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.", - "type": "string" - }, - "subject_set": { - "$ref": "#/components/schemas/subjectSet" - } - }, - "type": "object" - }, - "relationship": { - "description": "Relationship", - "properties": { - "namespace": { - "description": "Namespace of the Relation Tuple", - "type": "string" - }, - "object": { - "description": "Object of the Relation Tuple", - "type": "string" - }, - "relation": { - "description": "Relation of the Relation Tuple", - "type": "string" - }, - "subject_id": { - "description": "SubjectID of the Relation Tuple\n\nEither SubjectSet or SubjectID can be provided.", - "type": "string" - }, - "subject_set": { - "$ref": "#/components/schemas/subjectSet" - } - }, - "required": [ - "namespace", - "object", - "relation" - ], - "type": "object" - }, - "relationshipNamespaces": { - "description": "Relationship Namespace List", - "properties": { - "namespaces": { - "items": { - "$ref": "#/components/schemas/namespace" - }, - "type": "array" - } - }, - "type": "object" - }, - "relationshipPatch": { - "description": "Payload for patching a relationship", - "properties": { - "action": { - "enum": [ - "insert", - "delete" - ], - "type": "string", - "x-go-enum-desc": "insert ActionInsert\ndelete ActionDelete" - }, - "relation_tuple": { - "$ref": "#/components/schemas/relationship" - } - }, - "type": "object" - }, - "relationships": { - "description": "Paginated Relationship List", - "properties": { - "next_page_token": { - "description": "The opaque token to provide in a subsequent request\nto get the next page. It is the empty string iff this is\nthe last page.", - "type": "string" - }, - "relation_tuples": { - "items": { - "$ref": "#/components/schemas/relationship" - }, - "type": "array" - } - }, - "type": "object" - }, - "schemaPatch": { - "properties": { - "data": { - "description": "The json schema", - "type": "object" - }, - "name": { - "description": "The user defined schema name", - "type": "string" - } - }, - "required": [ - "name", - "data" - ], - "type": "object" - }, - "selfServiceFlowExpiredError": { - "description": "Is sent when a flow is expired", - "properties": { - "error": { - "$ref": "#/components/schemas/genericError" - }, - "expired_at": { - "description": "When the flow has expired", - "format": "date-time", - "type": "string" - }, - "since": { - "$ref": "#/components/schemas/Duration" - }, - "use_flow_id": { - "description": "The flow ID that should be used for the new flow as it contains the correct messages.", - "format": "uuid", - "type": "string" - } - }, - "type": "object" - }, - "selfServiceFlowType": { - "description": "The flow type can either be `api` or `browser`.", - "title": "Type is the flow type.", - "type": "string" - }, - "session": { - "description": "A Session", - "properties": { - "active": { - "description": "Active state. If false the session is no longer active.", - "type": "boolean" - }, - "authenticated_at": { - "description": "The Session Authentication Timestamp\n\nWhen this session was authenticated at. If multi-factor authentication was used this\nis the time when the last factor was authenticated (e.g. the TOTP code challenge was completed).", - "format": "date-time", - "type": "string" - }, - "authentication_methods": { - "$ref": "#/components/schemas/sessionAuthenticationMethods" - }, - "authenticator_assurance_level": { - "$ref": "#/components/schemas/authenticatorAssuranceLevel" - }, - "devices": { - "description": "Devices has history of all endpoints where the session was used", - "items": { - "$ref": "#/components/schemas/sessionDevice" - }, - "type": "array" - }, - "expires_at": { - "description": "The Session Expiry\n\nWhen this session expires at.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "Session ID", - "format": "uuid", - "type": "string" - }, - "identity": { - "$ref": "#/components/schemas/identity" - }, - "issued_at": { - "description": "The Session Issuance Timestamp\n\nWhen this session was issued at. Usually equal or close to `authenticated_at`.", - "format": "date-time", - "type": "string" - } - }, - "required": [ - "id", - "identity" - ], - "type": "object" - }, - "sessionAuthenticationMethod": { - "description": "A singular authenticator used during authentication / login.", - "properties": { - "aal": { - "$ref": "#/components/schemas/authenticatorAssuranceLevel" - }, - "completed_at": { - "description": "When the authentication challenge was completed.", - "format": "date-time", - "type": "string" - }, - "method": { - "enum": [ - "link_recovery", - "code_recovery", - "password", - "totp", - "oidc", - "webauthn", - "lookup_secret", - "v0.6_legacy_session" - ], - "title": "The method used", - "type": "string" - }, - "provider": { - "description": "OIDC or SAML provider id used for authentication", - "type": "string" - } - }, - "title": "AuthenticationMethod identifies an authentication method", - "type": "object" - }, - "sessionAuthenticationMethods": { - "description": "A list of authenticators which were used to authenticate the session.", - "items": { - "$ref": "#/components/schemas/sessionAuthenticationMethod" - }, - "title": "List of (Used) AuthenticationMethods", - "type": "array" - }, - "sessionDevice": { - "description": "Device corresponding to a Session", - "properties": { - "id": { - "description": "Device record ID", - "format": "uuid", - "type": "string" - }, - "ip_address": { - "description": "IPAddress of the client", - "type": "string" - }, - "location": { - "description": "Geo Location corresponding to the IP Address", - "type": "string" - }, - "user_agent": { - "description": "UserAgent of the client", - "type": "string" - } - }, - "required": [ - "id" - ], - "type": "object" - }, - "setActiveProjectInConsoleBody": { - "description": "Set active project in the Ory Network Console Request Body", - "properties": { - "project_id": { - "description": "Project ID\n\nThe Project ID you want to set active.\n\nformat: uuid", - "type": "string" - } - }, - "required": [ - "project_id" - ], - "type": "object" - }, - "setCustomDomainBody": { - "description": "Update Custom Hostname Body", - "properties": { - "cookie_domain": { - "description": "The domain where cookies will be set. Has to be a parent domain of the custom hostname to work.", - "type": "string" - }, - "cors_allowed_origins": { - "description": "CORS Allowed origins for the custom hostname.", - "items": { - "type": "string" - }, - "type": "array" - }, - "cors_enabled": { - "description": "CORS Enabled for the custom hostname.", - "type": "boolean" - }, - "custom_ui_base_url": { - "description": "The custom UI base URL where the UI will be exposed.", - "type": "string" - }, - "hostname": { - "description": "The custom hostname where the API will be exposed.", - "type": "string" - } - }, - "type": "object" - }, - "setProject": { - "properties": { - "cors_admin": { - "$ref": "#/components/schemas/CORS" - }, - "cors_public": { - "$ref": "#/components/schemas/CORS" - }, - "name": { - "description": "The name of the project.", - "type": "string" - }, - "services": { - "$ref": "#/components/schemas/projectServices" - } - }, - "required": [ - "services", - "name", - "cors_public", - "cors_admin" - ], - "type": "object" - }, - "setProjectBrandingThemeBody": { - "properties": { - "logo_type": { - "description": "Logo type", - "type": "string" - }, - "logo_url": { - "description": "Logo URL", - "type": "string" - }, - "name": { - "description": "Branding name", - "type": "string" - }, - "theme": { - "$ref": "#/components/schemas/projectBrandingColors" - } - }, - "title": "SetProjectBrandingThemeBody is the request body for the set project branding theme endpoint.", - "type": "object" - }, - "settingsFlow": { - "description": "This flow is used when an identity wants to update settings\n(e.g. profile data, passwords, ...) in a selfservice manner.\n\nWe recommend reading the [User Settings Documentation](../self-service/flows/user-settings)", - "properties": { - "active": { - "description": "Active, if set, contains the registration method that is being used. It is initially\nnot set.", - "type": "string" - }, - "continue_with": { - "description": "Contains a list of actions, that could follow this flow\n\nIt can, for example, contain a reference to the verification flow, created as part of the user's\nregistration.", - "items": { - "$ref": "#/components/schemas/continueWith" - }, - "type": "array" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to update the setting,\na new flow has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the flow's unique ID. When performing the settings flow, this\nrepresents the id in the settings ui's query parameter: http://\u003cselfservice.flows.settings.ui_url\u003e?flow=\u003cid\u003e", - "format": "uuid", - "type": "string" - }, - "identity": { - "$ref": "#/components/schemas/identity" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the flow occurred.", - "format": "date-time", - "type": "string" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/settingsFlowState" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "expires_at", - "issued_at", - "request_url", - "ui", - "identity", - "state" - ], - "title": "Flow represents a Settings Flow", - "type": "object" - }, - "settingsFlowState": { - "description": "show_form: No user data has been collected, or it is invalid, and thus the form should be shown.\nsuccess: Indicates that the settings flow has been updated successfully with the provided data.\nDone will stay true when repeatedly checking. If set to true, done will revert back to false only\nwhen a flow with invalid (e.g. \"please use a valid phone number\") data was sent.", - "enum": [ - "show_form", - "success" - ], - "title": "State represents the state of this flow. It knows two states:", - "type": "string" - }, - "stripeCustomer": { - "properties": { - "id": { - "type": "string" - } - }, - "type": "object" - }, - "subjectSet": { - "properties": { - "namespace": { - "description": "Namespace of the Subject Set", - "type": "string" - }, - "object": { - "description": "Object of the Subject Set", - "type": "string" - }, - "relation": { - "description": "Relation of the Subject Set", - "type": "string" - } - }, - "required": [ - "namespace", - "object", - "relation" - ], - "type": "object" - }, - "subscription": { - "properties": { - "created_at": { - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "currency": { - "description": "The currency of the subscription. To change this, a new subscription must be created.\nusd USD\neur Euro", - "enum": [ - "usd", - "eur" - ], - "readOnly": true, - "type": "string", - "x-go-enum-desc": "usd USD\neur Euro" - }, - "current_interval": { - "description": "The currently active interval of the subscription\nmonthly Monthly\nyearly Yearly", - "enum": [ - "monthly", - "yearly" - ], - "readOnly": true, - "type": "string", - "x-go-enum-desc": "monthly Monthly\nyearly Yearly" - }, - "current_plan": { - "description": "The currently active plan of the subscription", - "readOnly": true, - "type": "string" - }, - "customer_id": { - "description": "The ID of the stripe customer", - "readOnly": true, - "type": "string" - }, - "id": { - "description": "The ID of the subscription", - "format": "uuid", - "readOnly": true, - "type": "string" - }, - "interval_changes_to": { - "$ref": "#/components/schemas/String" - }, - "ongoing_stripe_checkout_id": { - "$ref": "#/components/schemas/String" - }, - "payed_until": { - "description": "Until when the subscription is payed", - "format": "date-time", - "readOnly": true, - "type": "string" - }, - "plan_changes_at": { - "$ref": "#/components/schemas/Time" - }, - "plan_changes_to": { - "$ref": "#/components/schemas/String" - }, - "status": { - "$ref": "#/components/schemas/SubscriptionStatus" - }, - "updated_at": { - "format": "date-time", - "readOnly": true, - "type": "string" - } - }, - "required": [ - "id", - "customer_id", - "status", - "payed_until", - "current_plan", - "current_interval", - "plan_changes_to", - "interval_changes_to", - "currency", - "created_at", - "updated_at" - ], - "type": "object" - }, - "successfulCodeExchangeResponse": { - "description": "The Response for Registration Flows via API", - "properties": { - "session": { - "$ref": "#/components/schemas/session" - }, - "session_token": { - "description": "The Session Token\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!", - "type": "string" - } - }, - "required": [ - "session" - ], - "type": "object" - }, - "successfulNativeLogin": { - "description": "The Response for Login Flows via API", - "properties": { - "session": { - "$ref": "#/components/schemas/session" - }, - "session_token": { - "description": "The Session Token\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!", - "type": "string" - } - }, - "required": [ - "session" - ], - "type": "object" - }, - "successfulNativeRegistration": { - "description": "The Response for Registration Flows via API", - "properties": { - "continue_with": { - "description": "Contains a list of actions, that could follow this flow\n\nIt can, for example, this will contain a reference to the verification flow, created as part of the user's\nregistration or the token of the session.", - "items": { - "$ref": "#/components/schemas/continueWith" - }, - "type": "array" - }, - "identity": { - "$ref": "#/components/schemas/identity" - }, - "session": { - "$ref": "#/components/schemas/session" - }, - "session_token": { - "description": "The Session Token\n\nThis field is only set when the session hook is configured as a post-registration hook.\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!", - "type": "string" - } - }, - "required": [ - "identity" - ], - "type": "object" - }, - "successfulProjectUpdate": { - "properties": { - "project": { - "$ref": "#/components/schemas/project" - }, - "warnings": { - "description": "Import Warnings\n\nNot all configuration items can be imported to the Ory Network. For example,\nsetting the port does not make sense because the Ory Network provides the runtime\nand networking.\n\nThis field contains warnings where configuration keys were found but can not\nbe imported. These keys will be ignored by the Ory Network. This field will help\nyou understand why certain configuration keys might not be respected!", - "items": { - "$ref": "#/components/schemas/Warning" - }, - "type": "array" - } - }, - "required": [ - "project", - "warnings" - ], - "type": "object" - }, - "tokenPagination": { - "properties": { - "page_size": { - "default": 250, - "description": "Items per page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - }, - "page_token": { - "default": "1", - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "minimum": 1, - "type": "string" - } - }, - "type": "object" - }, - "tokenPaginationHeaders": { - "properties": { - "link": { - "description": "The link header contains pagination links.\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).\n\nin: header", - "type": "string" - }, - "x-total-count": { - "description": "The total number of clients.\n\nin: header", - "type": "string" - } - }, - "type": "object" - }, - "tokenPaginationRequestParameters": { - "description": "The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as:\n`\u003chttps://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}\u0026page_token={offset}\u003e; rel=\"{page}\"`\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "properties": { - "page_size": { - "default": 250, - "description": "Items per Page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "format": "int64", - "maximum": 500, - "minimum": 1, - "type": "integer" - }, - "page_token": { - "default": "1", - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "minimum": 1, - "type": "string" - } - }, - "title": "Pagination Request Parameters", - "type": "object" - }, - "tokenPaginationResponseHeaders": { - "description": "The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as:\n`\u003chttps://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}\u0026page_token={offset}\u003e; rel=\"{page}\"`\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "properties": { - "link": { - "description": "The Link HTTP Header\n\nThe `Link` header contains a comma-delimited list of links to the following pages:\n\nfirst: The first page of results.\nnext: The next page of results.\nprev: The previous page of results.\nlast: The last page of results.\n\nPages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples:\n\n\u003c/clients?page_size=5\u0026page_token=0\u003e; rel=\"first\",\u003c/clients?page_size=5\u0026page_token=15\u003e; rel=\"next\",\u003c/clients?page_size=5\u0026page_token=5\u003e; rel=\"prev\",\u003c/clients?page_size=5\u0026page_token=20\u003e; rel=\"last\"", - "type": "string" - }, - "x-total-count": { - "description": "The X-Total-Count HTTP Header\n\nThe `X-Total-Count` header contains the total number of items in the collection.", - "format": "int64", - "type": "integer" - } - }, - "title": "Pagination Response Header", - "type": "object" - }, - "trustOAuth2JwtGrantIssuer": { - "description": "Trust OAuth2 JWT Bearer Grant Type Issuer Request Body", - "properties": { - "allow_any_subject": { - "description": "The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT.", - "type": "boolean" - }, - "expires_at": { - "description": "The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".", - "format": "date-time", - "type": "string" - }, - "issuer": { - "description": "The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).", - "example": "https://jwt-idp.example.com", - "type": "string" - }, - "jwk": { - "$ref": "#/components/schemas/jsonWebKey" - }, - "scope": { - "description": "The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])", - "example": [ - "openid", - "offline" - ], - "items": { - "type": "string" - }, - "type": "array" - }, - "subject": { - "description": "The \"subject\" identifies the principal that is the subject of the JWT.", - "example": "mike@example.com", - "type": "string" - } - }, - "required": [ - "issuer", - "scope", - "jwk", - "expires_at" - ], - "type": "object" - }, - "trustedOAuth2JwtGrantIssuer": { - "description": "OAuth2 JWT Bearer Grant Type Issuer Trust Relationship", - "properties": { - "allow_any_subject": { - "description": "The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT.", - "type": "boolean" - }, - "created_at": { - "description": "The \"created_at\" indicates, when grant was created.", - "format": "date-time", - "type": "string" - }, - "expires_at": { - "description": "The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".", - "format": "date-time", - "type": "string" - }, - "id": { - "example": "9edc811f-4e28-453c-9b46-4de65f00217f", - "type": "string" - }, - "issuer": { - "description": "The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).", - "example": "https://jwt-idp.example.com", - "type": "string" - }, - "public_key": { - "$ref": "#/components/schemas/trustedOAuth2JwtGrantJsonWebKey" - }, - "scope": { - "description": "The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])", - "example": [ - "openid", - "offline" - ], - "items": { - "type": "string" - }, - "type": "array" - }, - "subject": { - "description": "The \"subject\" identifies the principal that is the subject of the JWT.", - "example": "mike@example.com", - "type": "string" - } - }, - "type": "object" - }, - "trustedOAuth2JwtGrantIssuers": { - "description": "OAuth2 JWT Bearer Grant Type Issuer Trust Relationships", - "items": { - "$ref": "#/components/schemas/trustedOAuth2JwtGrantIssuer" - }, - "type": "array" - }, - "trustedOAuth2JwtGrantJsonWebKey": { - "description": "OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key", - "properties": { - "kid": { - "description": "The \"key_id\" is key unique identifier (same as kid header in jws/jwt).", - "example": "123e4567-e89b-12d3-a456-426655440000", - "type": "string" - }, - "set": { - "description": "The \"set\" is basically a name for a group(set) of keys. Will be the same as \"issuer\" in grant.", - "example": "https://jwt-idp.example.com", - "type": "string" - } - }, - "type": "object" - }, - "uiContainer": { - "description": "Container represents a HTML Form. The container can work with both HTTP Form and JSON requests", - "properties": { - "action": { - "description": "Action should be used as the form action URL `\u003cform action=\"{{ .Action }}\" method=\"post\"\u003e`.", - "type": "string" - }, - "messages": { - "$ref": "#/components/schemas/uiTexts" - }, - "method": { - "description": "Method is the form method (e.g. POST)", - "type": "string" - }, - "nodes": { - "$ref": "#/components/schemas/uiNodes" - } - }, - "required": [ - "action", - "method", - "nodes" - ], - "type": "object" - }, - "uiNode": { - "description": "Nodes are represented as HTML elements or their native UI equivalents. For example,\na node can be an `\u003cimg\u003e` tag, or an `\u003cinput element\u003e` but also `some plain text`.", - "properties": { - "attributes": { - "$ref": "#/components/schemas/uiNodeAttributes" - }, - "group": { - "description": "Group specifies which group (e.g. password authenticator) this node belongs to.\ndefault DefaultGroup\npassword PasswordGroup\noidc OpenIDConnectGroup\nprofile ProfileGroup\nlink LinkGroup\ncode CodeGroup\ntotp TOTPGroup\nlookup_secret LookupGroup\nwebauthn WebAuthnGroup", - "enum": [ - "default", - "password", - "oidc", - "profile", - "link", - "code", - "totp", - "lookup_secret", - "webauthn" - ], - "type": "string", - "x-go-enum-desc": "default DefaultGroup\npassword PasswordGroup\noidc OpenIDConnectGroup\nprofile ProfileGroup\nlink LinkGroup\ncode CodeGroup\ntotp TOTPGroup\nlookup_secret LookupGroup\nwebauthn WebAuthnGroup" - }, - "messages": { - "$ref": "#/components/schemas/uiTexts" - }, - "meta": { - "$ref": "#/components/schemas/uiNodeMeta" - }, - "type": { - "description": "The node's type\ntext Text\ninput Input\nimg Image\na Anchor\nscript Script", - "enum": [ - "text", - "input", - "img", - "a", - "script" - ], - "type": "string", - "x-go-enum-desc": "text Text\ninput Input\nimg Image\na Anchor\nscript Script" - } - }, - "required": [ - "type", - "group", - "attributes", - "messages", - "meta" - ], - "title": "Node represents a flow's nodes", - "type": "object" - }, - "uiNodeAnchorAttributes": { - "properties": { - "href": { - "description": "The link's href (destination) URL.\n\nformat: uri", - "type": "string" - }, - "id": { - "description": "A unique identifier", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"a\".", - "type": "string" - }, - "title": { - "$ref": "#/components/schemas/uiText" - } - }, - "required": [ - "href", - "title", - "id", - "node_type" - ], - "title": "AnchorAttributes represents the attributes of an anchor node.", - "type": "object" - }, - "uiNodeAttributes": { - "discriminator": { - "mapping": { - "a": "#/components/schemas/uiNodeAnchorAttributes", - "img": "#/components/schemas/uiNodeImageAttributes", - "input": "#/components/schemas/uiNodeInputAttributes", - "script": "#/components/schemas/uiNodeScriptAttributes", - "text": "#/components/schemas/uiNodeTextAttributes" - }, - "propertyName": "node_type" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/uiNodeInputAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeTextAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeImageAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeAnchorAttributes" - }, - { - "$ref": "#/components/schemas/uiNodeScriptAttributes" - } - ], - "title": "Attributes represents a list of attributes (e.g. `href=\"foo\"` for links)." - }, - "uiNodeImageAttributes": { - "properties": { - "height": { - "description": "Height of the image", - "format": "int64", - "type": "integer" - }, - "id": { - "description": "A unique identifier", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"img\".", - "type": "string" - }, - "src": { - "description": "The image's source URL.\n\nformat: uri", - "type": "string" - }, - "width": { - "description": "Width of the image", - "format": "int64", - "type": "integer" - } - }, - "required": [ - "src", - "id", - "width", - "height", - "node_type" - ], - "title": "ImageAttributes represents the attributes of an image node.", - "type": "object" - }, - "uiNodeInputAttributes": { - "description": "InputAttributes represents the attributes of an input node", - "properties": { - "autocomplete": { - "description": "The autocomplete attribute for the input.\nemail InputAttributeAutocompleteEmail\ntel InputAttributeAutocompleteTel\nurl InputAttributeAutocompleteUrl\ncurrent-password InputAttributeAutocompleteCurrentPassword\nnew-password InputAttributeAutocompleteNewPassword\none-time-code InputAttributeAutocompleteOneTimeCode", - "enum": [ - "email", - "tel", - "url", - "current-password", - "new-password", - "one-time-code" - ], - "type": "string", - "x-go-enum-desc": "email InputAttributeAutocompleteEmail\ntel InputAttributeAutocompleteTel\nurl InputAttributeAutocompleteUrl\ncurrent-password InputAttributeAutocompleteCurrentPassword\nnew-password InputAttributeAutocompleteNewPassword\none-time-code InputAttributeAutocompleteOneTimeCode" - }, - "disabled": { - "description": "Sets the input's disabled field to true or false.", - "type": "boolean" - }, - "label": { - "$ref": "#/components/schemas/uiText" - }, - "name": { - "description": "The input's element name.", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"input\".", - "type": "string" - }, - "onclick": { - "description": "OnClick may contain javascript which should be executed on click. This is primarily\nused for WebAuthn.", - "type": "string" - }, - "pattern": { - "description": "The input's pattern.", - "type": "string" - }, - "required": { - "description": "Mark this input field as required.", - "type": "boolean" - }, - "type": { - "description": "The input's element type.\ntext InputAttributeTypeText\npassword InputAttributeTypePassword\nnumber InputAttributeTypeNumber\ncheckbox InputAttributeTypeCheckbox\nhidden InputAttributeTypeHidden\nemail InputAttributeTypeEmail\ntel InputAttributeTypeTel\nsubmit InputAttributeTypeSubmit\nbutton InputAttributeTypeButton\ndatetime-local InputAttributeTypeDateTimeLocal\ndate InputAttributeTypeDate\nurl InputAttributeTypeURI", - "enum": [ - "text", - "password", - "number", - "checkbox", - "hidden", - "email", - "tel", - "submit", - "button", - "datetime-local", - "date", - "url" - ], - "type": "string", - "x-go-enum-desc": "text InputAttributeTypeText\npassword InputAttributeTypePassword\nnumber InputAttributeTypeNumber\ncheckbox InputAttributeTypeCheckbox\nhidden InputAttributeTypeHidden\nemail InputAttributeTypeEmail\ntel InputAttributeTypeTel\nsubmit InputAttributeTypeSubmit\nbutton InputAttributeTypeButton\ndatetime-local InputAttributeTypeDateTimeLocal\ndate InputAttributeTypeDate\nurl InputAttributeTypeURI" - }, - "value": { - "description": "The input's value.", - "nullable": true - } - }, - "required": [ - "name", - "type", - "disabled", - "node_type" - ], - "type": "object" - }, - "uiNodeMeta": { - "description": "This might include a label and other information that can optionally\nbe used to render UIs.", - "properties": { - "label": { - "$ref": "#/components/schemas/uiText" - } - }, - "title": "A Node's Meta Information", - "type": "object" - }, - "uiNodeScriptAttributes": { - "properties": { - "async": { - "description": "The script async type", - "type": "boolean" - }, - "crossorigin": { - "description": "The script cross origin policy", - "type": "string" - }, - "id": { - "description": "A unique identifier", - "type": "string" - }, - "integrity": { - "description": "The script's integrity hash", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"script\".", - "type": "string" - }, - "nonce": { - "description": "Nonce for CSP\n\nA nonce you may want to use to improve your Content Security Policy.\nYou do not have to use this value but if you want to improve your CSP\npolicies you may use it. You can also choose to use your own nonce value!", - "type": "string" - }, - "referrerpolicy": { - "description": "The script referrer policy", - "type": "string" - }, - "src": { - "description": "The script source", - "type": "string" - }, - "type": { - "description": "The script MIME type", - "type": "string" - } - }, - "required": [ - "src", - "async", - "referrerpolicy", - "crossorigin", - "integrity", - "type", - "id", - "nonce", - "node_type" - ], - "title": "ScriptAttributes represent script nodes which load javascript.", - "type": "object" - }, - "uiNodeTextAttributes": { - "properties": { - "id": { - "description": "A unique identifier", - "type": "string" - }, - "node_type": { - "description": "NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"text\".", - "type": "string" - }, - "text": { - "$ref": "#/components/schemas/uiText" - } - }, - "required": [ - "text", - "id", - "node_type" - ], - "title": "TextAttributes represents the attributes of a text node.", - "type": "object" - }, - "uiNodes": { - "items": { - "$ref": "#/components/schemas/uiNode" - }, - "type": "array" - }, - "uiText": { - "properties": { - "context": { - "description": "The message's context. Useful when customizing messages.", - "type": "object" - }, - "id": { - "$ref": "#/components/schemas/ID" - }, - "text": { - "description": "The message text. Written in american english.", - "type": "string" - }, - "type": { - "description": "The message type.\ninfo Info\nerror Error\nsuccess Success", - "enum": [ - "info", - "error", - "success" - ], - "type": "string", - "x-go-enum-desc": "info Info\nerror Error\nsuccess Success" - } - }, - "required": [ - "id", - "text", - "type" - ], - "type": "object" - }, - "uiTexts": { - "items": { - "$ref": "#/components/schemas/uiText" - }, - "type": "array" - }, - "unexpectedError": { - "type": "string" - }, - "updateIdentityBody": { - "description": "Update Identity Body", - "properties": { - "credentials": { - "$ref": "#/components/schemas/identityWithCredentials" - }, - "metadata_admin": { - "description": "Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/\u003cid\u003e`." - }, - "metadata_public": { - "description": "Store metadata about the identity which the identity itself can see when calling for example the\nsession endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field." - }, - "schema_id": { - "description": "SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. If set\nwill update the Identity's SchemaID.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/identityState" - }, - "traits": { - "description": "Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_id`.", - "type": "object" - } - }, - "required": [ - "schema_id", - "traits", - "state" - ], - "type": "object" - }, - "updateLoginFlowBody": { - "discriminator": { - "mapping": { - "lookup_secret": "#/components/schemas/updateLoginFlowWithLookupSecretMethod", - "oidc": "#/components/schemas/updateLoginFlowWithOidcMethod", - "password": "#/components/schemas/updateLoginFlowWithPasswordMethod", - "totp": "#/components/schemas/updateLoginFlowWithTotpMethod", - "webauthn": "#/components/schemas/updateLoginFlowWithWebAuthnMethod" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/updateLoginFlowWithPasswordMethod" - }, - { - "$ref": "#/components/schemas/updateLoginFlowWithOidcMethod" - }, - { - "$ref": "#/components/schemas/updateLoginFlowWithTotpMethod" - }, - { - "$ref": "#/components/schemas/updateLoginFlowWithWebAuthnMethod" - }, - { - "$ref": "#/components/schemas/updateLoginFlowWithLookupSecretMethod" - } - ] - }, - "updateLoginFlowWithLookupSecretMethod": { - "description": "Update Login Flow with Lookup Secret Method", - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "lookup_secret": { - "description": "The lookup secret.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"lookup_secret\" when logging in using the lookup_secret strategy.", - "type": "string" - } - }, - "required": [ - "method", - "lookup_secret" - ], - "type": "object" - }, - "updateLoginFlowWithOidcMethod": { - "description": "Update Login Flow with OpenID Connect Method", - "properties": { - "csrf_token": { - "description": "The CSRF Token", - "type": "string" - }, - "method": { - "description": "Method to use\n\nThis field must be set to `oidc` when using the oidc method.", - "type": "string" - }, - "provider": { - "description": "The provider to register with", - "type": "string" - }, - "traits": { - "description": "The identity traits. This is a placeholder for the registration flow.", - "type": "object" - }, - "upstream_parameters": { - "description": "UpstreamParameters are the parameters that are passed to the upstream identity provider.\n\nThese parameters are optional and depend on what the upstream identity provider supports.\nSupported parameters are:\n`login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session.\n`hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`.\n`prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.", - "type": "object" - } - }, - "required": [ - "provider", - "method" - ], - "type": "object" - }, - "updateLoginFlowWithPasswordMethod": { - "description": "Update Login Flow with Password Method", - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "identifier": { - "description": "Identifier is the email or username of the user trying to log in.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"password\" when logging in using the identifier and password strategy.", - "type": "string" - }, - "password": { - "description": "The user's password.", - "type": "string" - }, - "password_identifier": { - "description": "Identifier is the email or username of the user trying to log in.\nThis field is deprecated!", - "type": "string" - } - }, - "required": [ - "method", - "password", - "identifier" - ], - "type": "object" - }, - "updateLoginFlowWithTotpMethod": { - "description": "Update Login Flow with TOTP Method", - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"totp\" when logging in using the TOTP strategy.", - "type": "string" - }, - "totp_code": { - "description": "The TOTP code.", - "type": "string" - } - }, - "required": [ - "method", - "totp_code" - ], - "type": "object" - }, - "updateLoginFlowWithWebAuthnMethod": { - "description": "Update Login Flow with WebAuthn Method", - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "identifier": { - "description": "Identifier is the email or username of the user trying to log in.", - "type": "string" - }, - "method": { - "description": "Method should be set to \"webAuthn\" when logging in using the WebAuthn strategy.", - "type": "string" - }, - "webauthn_login": { - "description": "Login a WebAuthn Security Key\n\nThis must contain the ID of the WebAuthN connection.", - "type": "string" - } - }, - "required": [ - "identifier", - "method" - ], - "type": "object" - }, - "updateRecoveryFlowBody": { - "description": "Update Recovery Flow Request Body", - "discriminator": { - "mapping": { - "code": "#/components/schemas/updateRecoveryFlowWithCodeMethod", - "link": "#/components/schemas/updateRecoveryFlowWithLinkMethod" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/updateRecoveryFlowWithLinkMethod" - }, - { - "$ref": "#/components/schemas/updateRecoveryFlowWithCodeMethod" - } - ] - }, - "updateRecoveryFlowWithCodeMethod": { - "description": "Update Recovery Flow with Code Method", - "properties": { - "code": { - "description": "Code from the recovery email\n\nIf you want to submit a code, use this field, but make sure to _not_ include the email field, as well.", - "type": "string" - }, - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "email": { - "description": "The email address of the account to recover\n\nIf the email belongs to a valid account, a recovery email will be sent.\n\nIf you want to notify the email address if the account does not exist, see\nthe [notify_unknown_recipients flag](https://www.ory.sh/docs/kratos/self-service/flows/account-recovery-password-reset#attempted-recovery-notifications)\n\nIf a code was already sent, including this field in the payload will invalidate the sent code and re-send a new code.\n\nformat: email", - "type": "string" - }, - "method": { - "description": "Method is the method that should be used for this recovery flow\n\nAllowed values are `link` and `code`.\nlink RecoveryStrategyLink\ncode RecoveryStrategyCode", - "enum": [ - "link", - "code" - ], - "type": "string", - "x-go-enum-desc": "link RecoveryStrategyLink\ncode RecoveryStrategyCode" - } - }, - "required": [ - "method" - ], - "type": "object" - }, - "updateRecoveryFlowWithLinkMethod": { - "description": "Update Recovery Flow with Link Method", - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "email": { - "description": "Email to Recover\n\nNeeds to be set when initiating the flow. If the email is a registered\nrecovery email, a recovery link will be sent. If the email is not known,\na email with details on what happened will be sent instead.\n\nformat: email", - "type": "string" - }, - "method": { - "description": "Method is the method that should be used for this recovery flow\n\nAllowed values are `link` and `code`\nlink RecoveryStrategyLink\ncode RecoveryStrategyCode", - "enum": [ - "link", - "code" - ], - "type": "string", - "x-go-enum-desc": "link RecoveryStrategyLink\ncode RecoveryStrategyCode" - } - }, - "required": [ - "email", - "method" - ], - "type": "object" - }, - "updateRegistrationFlowBody": { - "description": "Update Registration Request Body", - "discriminator": { - "mapping": { - "oidc": "#/components/schemas/updateRegistrationFlowWithOidcMethod", - "password": "#/components/schemas/updateRegistrationFlowWithPasswordMethod", - "webauthn": "#/components/schemas/updateRegistrationFlowWithWebAuthnMethod" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/updateRegistrationFlowWithPasswordMethod" - }, - { - "$ref": "#/components/schemas/updateRegistrationFlowWithOidcMethod" - }, - { - "$ref": "#/components/schemas/updateRegistrationFlowWithWebAuthnMethod" - } - ] - }, - "updateRegistrationFlowWithOidcMethod": { - "description": "Update Registration Flow with OpenID Connect Method", - "properties": { - "csrf_token": { - "description": "The CSRF Token", - "type": "string" - }, - "method": { - "description": "Method to use\n\nThis field must be set to `oidc` when using the oidc method.", - "type": "string" - }, - "provider": { - "description": "The provider to register with", - "type": "string" - }, - "traits": { - "description": "The identity traits", - "type": "object" - }, - "transient_payload": { - "description": "Transient data to pass along to any webhooks", - "type": "object" - }, - "upstream_parameters": { - "description": "UpstreamParameters are the parameters that are passed to the upstream identity provider.\n\nThese parameters are optional and depend on what the upstream identity provider supports.\nSupported parameters are:\n`login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session.\n`hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`.\n`prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.", - "type": "object" - } - }, - "required": [ - "provider", - "method" - ], - "type": "object" - }, - "updateRegistrationFlowWithPasswordMethod": { - "description": "Update Registration Flow with Password Method", - "properties": { - "csrf_token": { - "description": "The CSRF Token", - "type": "string" - }, - "method": { - "description": "Method to use\n\nThis field must be set to `password` when using the password method.", - "type": "string" - }, - "password": { - "description": "Password to sign the user up with", - "type": "string" - }, - "traits": { - "description": "The identity's traits", - "type": "object" - }, - "transient_payload": { - "description": "Transient data to pass along to any webhooks", - "type": "object" - } - }, - "required": [ - "password", - "traits", - "method" - ], - "type": "object" - }, - "updateRegistrationFlowWithWebAuthnMethod": { - "description": "Update Registration Flow with WebAuthn Method", - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.", - "type": "string" - }, - "traits": { - "description": "The identity's traits", - "type": "object" - }, - "transient_payload": { - "description": "Transient data to pass along to any webhooks", - "type": "object" - }, - "webauthn_register": { - "description": "Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.", - "type": "string" - }, - "webauthn_register_displayname": { - "description": "Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.", - "type": "string" - } - }, - "required": [ - "traits", - "method" - ], - "type": "object" - }, - "updateSettingsFlowBody": { - "description": "Update Settings Flow Request Body", - "discriminator": { - "mapping": { - "lookup_secret": "#/components/schemas/updateSettingsFlowWithLookupMethod", - "oidc": "#/components/schemas/updateSettingsFlowWithOidcMethod", - "password": "#/components/schemas/updateSettingsFlowWithPasswordMethod", - "profile": "#/components/schemas/updateSettingsFlowWithProfileMethod", - "totp": "#/components/schemas/updateSettingsFlowWithTotpMethod", - "webauthn": "#/components/schemas/updateSettingsFlowWithWebAuthnMethod" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/updateSettingsFlowWithPasswordMethod" - }, - { - "$ref": "#/components/schemas/updateSettingsFlowWithProfileMethod" - }, - { - "$ref": "#/components/schemas/updateSettingsFlowWithOidcMethod" - }, - { - "$ref": "#/components/schemas/updateSettingsFlowWithOidcMethod" - }, - { - "$ref": "#/components/schemas/updateSettingsFlowWithTotpMethod" - }, - { - "$ref": "#/components/schemas/updateSettingsFlowWithWebAuthnMethod" - }, - { - "$ref": "#/components/schemas/updateSettingsFlowWithLookupMethod" - } - ] - }, - "updateSettingsFlowWithLookupMethod": { - "description": "Update Settings Flow with Lookup Method", - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "lookup_secret_confirm": { - "description": "If set to true will save the regenerated lookup secrets", - "type": "boolean" - }, - "lookup_secret_disable": { - "description": "Disables this method if true.", - "type": "boolean" - }, - "lookup_secret_regenerate": { - "description": "If set to true will regenerate the lookup secrets", - "type": "boolean" - }, - "lookup_secret_reveal": { - "description": "If set to true will reveal the lookup secrets", - "type": "boolean" - }, - "method": { - "description": "Method\n\nShould be set to \"lookup\" when trying to add, update, or remove a lookup pairing.", - "type": "string" - } - }, - "required": [ - "method" - ], - "type": "object" - }, - "updateSettingsFlowWithOidcMethod": { - "description": "Update Settings Flow with OpenID Connect Method", - "properties": { - "flow": { - "description": "Flow ID is the flow's ID.\n\nin: query", - "type": "string" - }, - "link": { - "description": "Link this provider\n\nEither this or `unlink` must be set.\n\ntype: string\nin: body", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to profile when trying to update a profile.", - "type": "string" - }, - "traits": { - "description": "The identity's traits\n\nin: body", - "type": "object" - }, - "unlink": { - "description": "Unlink this provider\n\nEither this or `link` must be set.\n\ntype: string\nin: body", - "type": "string" - }, - "upstream_parameters": { - "description": "UpstreamParameters are the parameters that are passed to the upstream identity provider.\n\nThese parameters are optional and depend on what the upstream identity provider supports.\nSupported parameters are:\n`login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session.\n`hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`.\n`prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.", - "type": "object" - } - }, - "required": [ - "method" - ], - "type": "object" - }, - "updateSettingsFlowWithPasswordMethod": { - "description": "Update Settings Flow with Password Method", - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to password when trying to update a password.", - "type": "string" - }, - "password": { - "description": "Password is the updated password", - "type": "string" - } - }, - "required": [ - "password", - "method" - ], - "type": "object" - }, - "updateSettingsFlowWithProfileMethod": { - "description": "Update Settings Flow with Profile Method", - "properties": { - "csrf_token": { - "description": "The Anti-CSRF Token\n\nThis token is only required when performing browser flows.", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to profile when trying to update a profile.", - "type": "string" - }, - "traits": { - "description": "Traits\n\nThe identity's traits.", - "type": "object" - } - }, - "required": [ - "traits", - "method" - ], - "type": "object" - }, - "updateSettingsFlowWithTotpMethod": { - "description": "Update Settings Flow with TOTP Method", - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to \"totp\" when trying to add, update, or remove a totp pairing.", - "type": "string" - }, - "totp_code": { - "description": "ValidationTOTP must contain a valid TOTP based on the", - "type": "string" - }, - "totp_unlink": { - "description": "UnlinkTOTP if true will remove the TOTP pairing,\neffectively removing the credential. This can be used\nto set up a new TOTP device.", - "type": "boolean" - } - }, - "required": [ - "method" - ], - "type": "object" - }, - "updateSettingsFlowWithWebAuthnMethod": { - "description": "Update Settings Flow with WebAuthn Method", - "properties": { - "csrf_token": { - "description": "CSRFToken is the anti-CSRF token", - "type": "string" - }, - "method": { - "description": "Method\n\nShould be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.", - "type": "string" - }, - "webauthn_register": { - "description": "Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.", - "type": "string" - }, - "webauthn_register_displayname": { - "description": "Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.", - "type": "string" - }, - "webauthn_remove": { - "description": "Remove a WebAuthn Security Key\n\nThis must contain the ID of the WebAuthN connection.", - "type": "string" - } - }, - "required": [ - "method" - ], - "type": "object" - }, - "updateSubscriptionBody": { - "description": "Update Subscription Request Body", - "properties": { - "interval": { - "description": "\nmonthly Monthly\nyearly Yearly", - "enum": [ - "monthly", - "yearly" - ], - "type": "string", - "x-go-enum-desc": "monthly Monthly\nyearly Yearly" - }, - "plan": { - "type": "string" - }, - "return_to": { - "type": "string" - } - }, - "required": [ - "plan", - "interval" - ], - "type": "object" - }, - "updateVerificationFlowBody": { - "description": "Update Verification Flow Request Body", - "discriminator": { - "mapping": { - "code": "#/components/schemas/updateVerificationFlowWithCodeMethod", - "link": "#/components/schemas/updateVerificationFlowWithLinkMethod" - }, - "propertyName": "method" - }, - "oneOf": [ - { - "$ref": "#/components/schemas/updateVerificationFlowWithLinkMethod" - }, - { - "$ref": "#/components/schemas/updateVerificationFlowWithCodeMethod" - } - ] - }, - "updateVerificationFlowWithCodeMethod": { - "properties": { - "code": { - "description": "Code from the recovery email\n\nIf you want to submit a code, use this field, but make sure to _not_ include the email field, as well.", - "type": "string" - }, - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "email": { - "description": "The email address to verify\n\nIf the email belongs to a valid account, a verifiation email will be sent.\n\nIf you want to notify the email address if the account does not exist, see\nthe [notify_unknown_recipients flag](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation#attempted-verification-notifications)\n\nIf a code was already sent, including this field in the payload will invalidate the sent code and re-send a new code.\n\nformat: email", - "type": "string" - }, - "method": { - "description": "Method is the method that should be used for this verification flow\n\nAllowed values are `link` and `code`.\nlink VerificationStrategyLink\ncode VerificationStrategyCode", - "enum": [ - "link", - "code" - ], - "type": "string", - "x-go-enum-desc": "link VerificationStrategyLink\ncode VerificationStrategyCode" - } - }, - "required": [ - "method" - ], - "type": "object" - }, - "updateVerificationFlowWithLinkMethod": { - "description": "Update Verification Flow with Link Method", - "properties": { - "csrf_token": { - "description": "Sending the anti-csrf token is only required for browser login flows.", - "type": "string" - }, - "email": { - "description": "Email to Verify\n\nNeeds to be set when initiating the flow. If the email is a registered\nverification email, a verification link will be sent. If the email is not known,\na email with details on what happened will be sent instead.\n\nformat: email", - "type": "string" - }, - "method": { - "description": "Method is the method that should be used for this verification flow\n\nAllowed values are `link` and `code`\nlink VerificationStrategyLink\ncode VerificationStrategyCode", - "enum": [ - "link", - "code" - ], - "type": "string", - "x-go-enum-desc": "link VerificationStrategyLink\ncode VerificationStrategyCode" - } - }, - "required": [ - "email", - "method" - ], - "type": "object" - }, - "verifiableCredentialPrimingResponse": { - "properties": { - "c_nonce": { - "type": "string" - }, - "c_nonce_expires_in": { - "format": "int64", - "type": "integer" - }, - "error": { - "type": "string" - }, - "error_debug": { - "type": "string" - }, - "error_description": { - "type": "string" - }, - "error_hint": { - "type": "string" - }, - "format": { - "type": "string" - }, - "status_code": { - "format": "int64", - "type": "integer" - } - }, - "title": "VerifiableCredentialPrimingResponse contains the nonce to include in the proof-of-possession JWT.", - "type": "object" - }, - "verifiableCredentialResponse": { - "properties": { - "credential_draft_00": { - "type": "string" - }, - "format": { - "type": "string" - } - }, - "title": "VerifiableCredentialResponse contains the verifiable credential.", - "type": "object" - }, - "verifiableIdentityAddress": { - "description": "VerifiableAddress is an identity's verifiable address", - "properties": { - "created_at": { - "description": "When this entry was created", - "example": "2014-01-01T23:28:56.782Z", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "The ID", - "format": "uuid", - "type": "string" - }, - "status": { - "$ref": "#/components/schemas/identityVerifiableAddressStatus" - }, - "updated_at": { - "description": "When this entry was last updated", - "example": "2014-01-01T23:28:56.782Z", - "format": "date-time", - "type": "string" - }, - "value": { - "description": "The address value\n\nexample foo@user.com", - "type": "string" - }, - "verified": { - "description": "Indicates if the address has already been verified", - "example": true, - "type": "boolean" - }, - "verified_at": { - "$ref": "#/components/schemas/nullTime" - }, - "via": { - "$ref": "#/components/schemas/identityVerifiableAddressType" - } - }, - "required": [ - "value", - "verified", - "via", - "status" - ], - "type": "object" - }, - "verificationFlow": { - "description": "Used to verify an out-of-band communication\nchannel such as an email address or a phone number.\n\nFor more information head over to: https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation", - "properties": { - "active": { - "description": "Active, if set, contains the registration method that is being used. It is initially\nnot set.", - "type": "string" - }, - "expires_at": { - "description": "ExpiresAt is the time (UTC) when the request expires. If the user still wishes to verify the address,\na new request has to be initiated.", - "format": "date-time", - "type": "string" - }, - "id": { - "description": "ID represents the request's unique ID. When performing the verification flow, this\nrepresents the id in the verify ui's query parameter: http://\u003cselfservice.flows.verification.ui_url\u003e?request=\u003cid\u003e\n\ntype: string\nformat: uuid", - "format": "uuid", - "type": "string" - }, - "issued_at": { - "description": "IssuedAt is the time (UTC) when the request occurred.", - "format": "date-time", - "type": "string" - }, - "request_url": { - "description": "RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.", - "type": "string" - }, - "return_to": { - "description": "ReturnTo contains the requested return_to URL.", - "type": "string" - }, - "state": { - "$ref": "#/components/schemas/verificationFlowState" - }, - "type": { - "$ref": "#/components/schemas/selfServiceFlowType" - }, - "ui": { - "$ref": "#/components/schemas/uiContainer" - } - }, - "required": [ - "id", - "type", - "ui", - "state" - ], - "title": "A Verification Flow", - "type": "object" - }, - "verificationFlowState": { - "description": "The state represents the state of the verification flow.\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed.", - "enum": [ - "choose_method", - "sent_email", - "passed_challenge" - ], - "title": "Verification Flow State", - "type": "string" - }, - "version": { - "properties": { - "version": { - "description": "Version is the service's version.", - "type": "string" - } - }, - "type": "object" - }, - "webAuthnJavaScript": { - "type": "string" - } - }, - "securitySchemes": { - "basic": { - "scheme": "basic", - "type": "http" - }, - "bearer": { - "scheme": "bearer", - "type": "http" - }, - "oauth2": { - "flows": { - "authorizationCode": { - "authorizationUrl": "https://hydra.demo.ory.sh/oauth2/auth", - "scopes": { - "offline": "A scope required when requesting refresh tokens (alias for `offline_access`)", - "offline_access": "A scope required when requesting refresh tokens", - "openid": "Request an OpenID Connect ID Token" - }, - "tokenUrl": "https://hydra.demo.ory.sh/oauth2/token" - } - }, - "type": "oauth2" - }, - "oryAccessToken": { - "scheme": "bearer", - "type": "http" - } - } - }, - "info": { - "contact": { - "email": "support@ory.sh", - "name": "API Support" - }, - "description": "Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed\nwith a valid Personal Access Token. Public APIs are mostly used in browsers.\n", - "license": { - "name": "Apache 2.0", - "url": "https://www.apache.org/licenses/LICENSE-2.0.html" - }, - "termsOfService": "/ptos", - "title": "Ory APIs", - "version": "latest" - }, - "openapi": "3.0.3", - "paths": { - "/.well-known/jwks.json": { - "get": { - "description": "This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and,\nif enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like\n[node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others.", - "operationId": "discoverJsonWebKeys", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKeySet" - } - } - }, - "description": "jsonWebKeySet" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "summary": "Discover Well-Known JSON Web Keys", - "tags": [ - "wellknown" - ] - } - }, - "/.well-known/openid-configuration": { - "get": { - "description": "A mechanism for an OpenID Connect Relying Party to discover the End-User's OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations.\n\nPopular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others.\nFor a full list of clients go here: https://openid.net/developers/certified/", - "operationId": "discoverOidcConfiguration", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oidcConfiguration" - } - } - }, - "description": "oidcConfiguration" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "summary": "OpenID Connect Discovery", - "tags": [ - "oidc" - ] - } - }, - "/.well-known/ory/webauthn.js": { - "get": { - "description": "This endpoint provides JavaScript which is needed in order to perform WebAuthn login and registration.\n\nIf you are building a JavaScript Browser App (e.g. in ReactJS or AngularJS) you will need to load this file:\n\n```html\n\u003cscript src=\"https://public-kratos.example.org/.well-known/ory/webauthn.js\" type=\"script\" async /\u003e\n```\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "getWebAuthnJavaScript", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/webAuthnJavaScript" - } - } - }, - "description": "webAuthnJavaScript" - } - }, - "summary": "Get WebAuthn JavaScript", - "tags": [ - "frontend" - ] - } - }, - "/admin/clients": { - "get": { - "description": "This endpoint lists all clients in the database, and never returns client secrets.\nAs a default it lists the first 100 clients.", - "operationId": "listOAuth2Clients", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_size", - "schema": { - "default": 250, - "format": "int64", - "maximum": 500, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_token", - "schema": { - "default": "1", - "minimum": 1, - "type": "string" - } - }, - { - "description": "The name of the clients to filter by.", - "in": "query", - "name": "client_name", - "schema": { - "type": "string" - } - }, - { - "description": "The owner of the clients to filter by.", - "in": "query", - "name": "owner", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/listOAuth2Clients" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List OAuth 2.0 Clients", - "tags": [ - "oAuth2" - ] - }, - "post": { - "description": "Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret\nis generated. The secret is echoed in the response. It is not possible to retrieve it later on.", - "operationId": "createOAuth2Client", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "OAuth 2.0 Client Request Body", - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "400": { - "$ref": "#/components/responses/errorOAuth2BadRequest" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create OAuth 2.0 Client", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/clients/{id}": { - "delete": { - "description": "Delete an existing OAuth 2.0 Client by its ID.\n\nOAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.\n\nMake sure that this endpoint is well protected and only callable by first-party components.", - "operationId": "deleteOAuth2Client", - "parameters": [ - { - "description": "The id of the OAuth 2.0 Client.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete OAuth 2.0 Client", - "tags": [ - "oAuth2" - ] - }, - "get": { - "description": "Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret.\n\nOAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.", - "operationId": "getOAuth2Client", - "parameters": [ - { - "description": "The id of the OAuth 2.0 Client.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get an OAuth 2.0 Client", - "tags": [ - "oAuth2" - ] - }, - "patch": { - "description": "Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret`\nthe secret will be updated and returned via the API. This is the\nonly time you will be able to retrieve the client secret, so write it down and keep it safe.\n\nOAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.", - "operationId": "patchOAuth2Client", - "parameters": [ - { - "description": "The id of the OAuth 2.0 Client.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonPatchDocument" - } - } - }, - "description": "OAuth 2.0 Client JSON Patch Body", - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "404": { - "$ref": "#/components/responses/errorOAuth2NotFound" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Patch OAuth 2.0 Client", - "tags": [ - "oAuth2" - ] - }, - "put": { - "description": "Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used,\notherwise the existing secret is used.\n\nIf set, the secret is echoed in the response. It is not possible to retrieve it later on.\n\nOAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.", - "operationId": "setOAuth2Client", - "parameters": [ - { - "description": "OAuth 2.0 Client ID", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "OAuth 2.0 Client Request Body", - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "400": { - "$ref": "#/components/responses/errorOAuth2BadRequest" - }, - "404": { - "$ref": "#/components/responses/errorOAuth2NotFound" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Set OAuth 2.0 Client", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/clients/{id}/lifespans": { - "put": { - "description": "Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields.", - "operationId": "setOAuth2ClientLifespans", - "parameters": [ - { - "description": "OAuth 2.0 Client ID", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2ClientTokenLifespans" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Set OAuth2 Client Token Lifespans", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/courier/messages": { - "get": { - "description": "Lists all messages by given status and recipient.", - "operationId": "listCourierMessages", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_size", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_token", - "schema": { - "type": "string" - } - }, - { - "description": "Status filters out messages based on status.\nIf no value is provided, it doesn't take effect on filter.", - "in": "query", - "name": "status", - "schema": { - "$ref": "#/components/schemas/courierMessageStatus" - } - }, - { - "description": "Recipient filters out messages based on recipient.\nIf no value is provided, it doesn't take effect on filter.", - "in": "query", - "name": "recipient", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/listCourierMessages" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List Messages", - "tags": [ - "courier" - ] - } - }, - "/admin/courier/messages/{id}": { - "get": { - "description": "Gets a specific messages by the given ID.", - "operationId": "getCourierMessage", - "parameters": [ - { - "description": "MessageID is the ID of the message.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/message" - } - } - }, - "description": "message" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get a Message", - "tags": [ - "courier" - ] - } - }, - "/admin/identities": { - "get": { - "description": "Lists all [identities](https://www.ory.sh/docs/kratos/concepts/identity-user-model) in the system.", - "operationId": "listIdentities", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - }, - { - "description": "CredentialsIdentifier is the identifier (username, email) of the credentials to look up.", - "in": "query", - "name": "credentials_identifier", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/listIdentities" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List Identities", - "tags": [ - "identity" - ] - }, - "patch": { - "description": "Creates or delete multiple\n[identities](https://www.ory.sh/docs/kratos/concepts/identity-user-model).\nThis endpoint can also be used to [import\ncredentials](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities)\nfor instance passwords, social sign in configurations or multifactor methods.", - "operationId": "batchPatchIdentities", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/patchIdentitiesBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/batchPatchIdentitiesResponse" - } - } - }, - "description": "batchPatchIdentitiesResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create and deletes multiple identities", - "tags": [ - "identity" - ] - }, - "post": { - "description": "Create an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model). This endpoint can also be used to\n[import credentials](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities)\nfor instance passwords, social sign in configurations or multifactor methods.", - "operationId": "createIdentity", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/createIdentityBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create an Identity", - "tags": [ - "identity" - ] - } - }, - "/admin/identities/{id}": { - "delete": { - "description": "Calling this endpoint irrecoverably and permanently deletes the [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) given its ID. This action can not be undone.\nThis endpoint returns 204 when the identity was deleted or when the identity was not found, in which case it is\nassumed that is has been deleted already.", - "operationId": "deleteIdentity", - "parameters": [ - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete an Identity", - "tags": [ - "identity" - ] - }, - "get": { - "description": "Return an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) by its ID. You can optionally\ninclude credentials (e.g. social sign in connections) in the response by using the `include_credential` query parameter.", - "operationId": "getIdentity", - "parameters": [ - { - "description": "ID must be set to the ID of identity you want to get", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Include Credentials in Response\n\nInclude any credential, for example `password` or `oidc`, in the response. When set to `oidc`, This will return\nthe initial OAuth 2.0 Access Token, OAuth 2.0 Refresh Token and the OpenID Connect ID Token if available.", - "in": "query", - "name": "include_credential", - "schema": { - "items": { - "enum": [ - "password", - "totp", - "oidc", - "webauthn", - "lookup_secret" - ], - "type": "string" - }, - "type": "array" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get an Identity", - "tags": [ - "identity" - ] - }, - "patch": { - "description": "Partially updates an [identity's](https://www.ory.sh/docs/kratos/concepts/identity-user-model) field using [JSON Patch](https://jsonpatch.com/).\nThe fields `id`, `stateChangedAt` and `credentials` can not be updated using this method.", - "operationId": "patchIdentity", - "parameters": [ - { - "description": "ID must be set to the ID of identity you want to update", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonPatchDocument" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Patch an Identity", - "tags": [ - "identity" - ] - }, - "put": { - "description": "This endpoint updates an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model). The full identity\npayload (except credentials) is expected. It is possible to update the identity's credentials as well.", - "operationId": "updateIdentity", - "parameters": [ - { - "description": "ID must be set to the ID of identity you want to update", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/updateIdentityBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identity" - } - } - }, - "description": "identity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "409": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Update an Identity", - "tags": [ - "identity" - ] - } - }, - "/admin/identities/{id}/credentials/{type}": { - "delete": { - "description": "Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type\nYou can only delete second factor (aal2) credentials.", - "operationId": "deleteIdentityCredentials", - "parameters": [ - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Type is the credential's Type.\nOne of totp, webauthn, lookup", - "in": "path", - "name": "type", - "required": true, - "schema": { - "enum": [ - "totp", - "webauthn", - "lookup" - ], - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete a credential for a specific identity", - "tags": [ - "identity" - ] - } - }, - "/admin/identities/{id}/sessions": { - "delete": { - "description": "Calling this endpoint irrecoverably and permanently deletes and invalidates all sessions that belong to the given Identity.", - "operationId": "deleteIdentitySessions", - "parameters": [ - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete \u0026 Invalidate an Identity's Sessions", - "tags": [ - "identity" - ] - }, - "get": { - "description": "This endpoint returns all sessions that belong to the given Identity.", - "operationId": "listIdentitySessions", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - }, - { - "description": "ID is the identity's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Active is a boolean flag that filters out sessions based on the state. If no value is provided, all sessions are returned.", - "in": "query", - "name": "active", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/listIdentitySessions" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List an Identity's Sessions", - "tags": [ - "identity" - ] - } - }, - "/admin/keys/{set}": { - "delete": { - "description": "Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set.\n\nA JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.", - "operationId": "deleteJsonWebKeySet", - "parameters": [ - { - "description": "The JSON Web Key Set", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete JSON Web Key Set", - "tags": [ - "jwk" - ] - }, - "get": { - "description": "This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.\n\nA JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.", - "operationId": "getJsonWebKeySet", - "parameters": [ - { - "description": "JSON Web Key Set ID", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKeySet" - } - } - }, - "description": "jsonWebKeySet" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Retrieve a JSON Web Key Set", - "tags": [ - "jwk" - ] - }, - "post": { - "description": "This endpoint is capable of generating JSON Web Key Sets for you. There a different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created.\n\nA JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.", - "operationId": "createJsonWebKeySet", - "parameters": [ - { - "description": "The JSON Web Key Set ID", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/createJsonWebKeySet" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKeySet" - } - } - }, - "description": "jsonWebKeySet" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create JSON Web Key", - "tags": [ - "jwk" - ] - }, - "put": { - "description": "Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.\n\nA JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.", - "operationId": "setJsonWebKeySet", - "parameters": [ - { - "description": "The JSON Web Key Set ID", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKeySet" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKeySet" - } - } - }, - "description": "jsonWebKeySet" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Update a JSON Web Key Set", - "tags": [ - "jwk" - ] - } - }, - "/admin/keys/{set}/{kid}": { - "delete": { - "description": "Use this endpoint to delete a single JSON Web Key.\n\nA JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A\nJWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses\nthis functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens),\nand allows storing user-defined keys as well.", - "operationId": "deleteJsonWebKey", - "parameters": [ - { - "description": "The JSON Web Key Set", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The JSON Web Key ID (kid)", - "in": "path", - "name": "kid", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete JSON Web Key", - "tags": [ - "jwk" - ] - }, - "get": { - "description": "This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid).", - "operationId": "getJsonWebKey", - "parameters": [ - { - "description": "JSON Web Key Set ID", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "JSON Web Key ID", - "in": "path", - "name": "kid", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKeySet" - } - } - }, - "description": "jsonWebKeySet" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get JSON Web Key", - "tags": [ - "jwk" - ] - }, - "put": { - "description": "Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.\n\nA JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.", - "operationId": "setJsonWebKey", - "parameters": [ - { - "description": "The JSON Web Key Set ID", - "in": "path", - "name": "set", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "JSON Web Key ID", - "in": "path", - "name": "kid", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKey" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/jsonWebKey" - } - } - }, - "description": "jsonWebKey" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Set JSON Web Key", - "tags": [ - "jwk" - ] - } - }, - "/admin/oauth2/auth/requests/consent": { - "get": { - "description": "When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider\nto authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if\nthe OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.\n\nThe consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent\nprovider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted\nor rejected the request.\n\nThe default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please\nhead over to the OAuth 2.0 documentation.", - "operationId": "getOAuth2ConsentRequest", - "parameters": [ - { - "description": "OAuth 2.0 Consent Request Challenge", - "in": "query", - "name": "consent_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2ConsentRequest" - } - } - }, - "description": "oAuth2ConsentRequest" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get OAuth 2.0 Consent Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/consent/accept": { - "put": { - "description": "When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider\nto authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if\nthe OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.\n\nThe consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent\nprovider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted\nor rejected the request.\n\nThis endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf.\nThe consent provider includes additional information, such as session data for access and ID tokens, and if the\nconsent request should be used as basis for future requests.\n\nThe response contains a redirect URL which the consent provider should redirect the user-agent to.\n\nThe default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please\nhead over to the OAuth 2.0 documentation.", - "operationId": "acceptOAuth2ConsentRequest", - "parameters": [ - { - "description": "OAuth 2.0 Consent Request Challenge", - "in": "query", - "name": "consent_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/acceptOAuth2ConsentRequest" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Accept OAuth 2.0 Consent Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/consent/reject": { - "put": { - "description": "When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider\nto authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if\nthe OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.\n\nThe consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent\nprovider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted\nor rejected the request.\n\nThis endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf.\nThe consent provider must include a reason why the consent was not granted.\n\nThe response contains a redirect URL which the consent provider should redirect the user-agent to.\n\nThe default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please\nhead over to the OAuth 2.0 documentation.", - "operationId": "rejectOAuth2ConsentRequest", - "parameters": [ - { - "description": "OAuth 2.0 Consent Request Challenge", - "in": "query", - "name": "consent_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/rejectOAuth2Request" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Reject OAuth 2.0 Consent Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/login": { - "get": { - "description": "When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider\nto authenticate the subject and then tell the Ory OAuth2 Service about it.\n\nPer default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app\nyou write and host, and it must be able to authenticate (\"show the subject a login screen\")\na subject (in OAuth2 the proper name for subject is \"resource owner\").\n\nThe authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login\nprovider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.", - "operationId": "getOAuth2LoginRequest", - "parameters": [ - { - "description": "OAuth 2.0 Login Request Challenge", - "in": "query", - "name": "login_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2LoginRequest" - } - } - }, - "description": "oAuth2LoginRequest" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get OAuth 2.0 Login Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/login/accept": { - "put": { - "description": "When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider\nto authenticate the subject and then tell the Ory OAuth2 Service about it.\n\nThe authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login\nprovider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.\n\nThis endpoint tells Ory that the subject has successfully authenticated and includes additional information such as\nthe subject's ID and if Ory should remember the subject's subject agent for future authentication attempts by setting\na cookie.\n\nThe response contains a redirect URL which the login provider should redirect the user-agent to.", - "operationId": "acceptOAuth2LoginRequest", - "parameters": [ - { - "description": "OAuth 2.0 Login Request Challenge", - "in": "query", - "name": "login_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/acceptOAuth2LoginRequest" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Accept OAuth 2.0 Login Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/login/reject": { - "put": { - "description": "When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider\nto authenticate the subject and then tell the Ory OAuth2 Service about it.\n\nThe authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login\nprovider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.\n\nThis endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication\nwas denied.\n\nThe response contains a redirect URL which the login provider should redirect the user-agent to.", - "operationId": "rejectOAuth2LoginRequest", - "parameters": [ - { - "description": "OAuth 2.0 Login Request Challenge", - "in": "query", - "name": "login_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/rejectOAuth2Request" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Reject OAuth 2.0 Login Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/logout": { - "get": { - "description": "Use this endpoint to fetch an Ory OAuth 2.0 logout request.", - "operationId": "getOAuth2LogoutRequest", - "parameters": [ - { - "in": "query", - "name": "logout_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2LogoutRequest" - } - } - }, - "description": "oAuth2LogoutRequest" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get OAuth 2.0 Session Logout Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/logout/accept": { - "put": { - "description": "When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request.\n\nThe response contains a redirect URL which the consent provider should redirect the user-agent to.", - "operationId": "acceptOAuth2LogoutRequest", - "parameters": [ - { - "description": "OAuth 2.0 Logout Request Challenge", - "in": "query", - "name": "logout_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2RedirectTo" - } - } - }, - "description": "oAuth2RedirectTo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Accept OAuth 2.0 Session Logout Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/requests/logout/reject": { - "put": { - "description": "When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request.\nNo HTTP request body is required.\n\nThe response is empty as the logout provider has to chose what action to perform next.", - "operationId": "rejectOAuth2LogoutRequest", - "parameters": [ - { - "in": "query", - "name": "logout_challenge", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Reject OAuth 2.0 Session Logout Request", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/sessions/consent": { - "delete": { - "description": "This endpoint revokes a subject's granted consent sessions and invalidates all\nassociated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID.", - "operationId": "revokeOAuth2ConsentSessions", - "parameters": [ - { - "description": "OAuth 2.0 Consent Subject\n\nThe subject whose consent sessions should be deleted.", - "in": "query", - "name": "subject", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "OAuth 2.0 Client ID\n\nIf set, deletes only those consent sessions that have been granted to the specified OAuth 2.0 Client ID.", - "in": "query", - "name": "client", - "schema": { - "type": "string" - } - }, - { - "description": "Revoke All Consent Sessions\n\nIf set to `true` deletes all consent sessions by the Subject that have been granted.", - "in": "query", - "name": "all", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Revoke OAuth 2.0 Consent Sessions of a Subject", - "tags": [ - "oAuth2" - ] - }, - "get": { - "description": "This endpoint lists all subject's granted consent sessions, including client and granted scope.\nIf the subject is unknown or has not granted any consent sessions yet, the endpoint returns an\nempty JSON array with status code 200 OK.", - "operationId": "listOAuth2ConsentSessions", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_size", - "schema": { - "default": 250, - "format": "int64", - "maximum": 500, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_token", - "schema": { - "default": "1", - "minimum": 1, - "type": "string" - } - }, - { - "description": "The subject to list the consent sessions for.", - "in": "query", - "name": "subject", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The login session id to list the consent sessions for.", - "in": "query", - "name": "login_session_id", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2ConsentSessions" - } - } - }, - "description": "oAuth2ConsentSessions" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List OAuth 2.0 Consent Sessions of a Subject", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/auth/sessions/login": { - "delete": { - "description": "This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject\nhas to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens.\n\nIf you send the subject in a query param, all authentication sessions that belong to that subject are revoked.\nNo OpennID Connect Front- or Back-channel logout is performed in this case.\n\nAlternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected\nto that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case.", - "operationId": "revokeOAuth2LoginSessions", - "parameters": [ - { - "description": "OAuth 2.0 Subject\n\nThe subject to revoke authentication sessions for.", - "in": "query", - "name": "subject", - "schema": { - "type": "string" - } - }, - { - "description": "OAuth 2.0 Subject\n\nThe subject to revoke authentication sessions for.", - "in": "query", - "name": "sid", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/introspect": { - "post": { - "description": "The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token\nis neither expired nor revoked. If a token is active, additional information on the token will be included. You can\nset additional data for a token by setting `session.access_token` during the consent flow.", - "operationId": "introspectOAuth2Token", - "requestBody": { - "content": { - "application/x-www-form-urlencoded": { - "schema": { - "properties": { - "scope": { - "description": "An optional, space separated list of required scopes. If the access token was not granted one of the\nscopes, the result of active will be false.", - "type": "string", - "x-formData-name": "scope" - }, - "token": { - "description": "The string value of the token. For access tokens, this\nis the \"access_token\" value returned from the token endpoint\ndefined in OAuth 2.0. For refresh tokens, this is the \"refresh_token\"\nvalue returned.", - "required": [ - "token" - ], - "type": "string", - "x-formData-name": "token" - } - }, - "required": [ - "token" - ], - "type": "object" - } - } - } - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/introspectedOAuth2Token" - } - } - }, - "description": "introspectedOAuth2Token" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Introspect OAuth2 Access and Refresh Tokens", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/oauth2/tokens": { - "delete": { - "description": "This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database.", - "operationId": "deleteOAuth2Token", - "parameters": [ - { - "description": "OAuth 2.0 Client ID", - "in": "query", - "name": "client_id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/recovery/code": { - "post": { - "description": "This endpoint creates a recovery code which should be given to the user in order for them to recover\n(or activate) their account.", - "operationId": "createRecoveryCodeForIdentity", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/createRecoveryCodeForIdentityBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryCodeForIdentity" - } - } - }, - "description": "recoveryCodeForIdentity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create a Recovery Code", - "tags": [ - "identity" - ] - } - }, - "/admin/recovery/link": { - "post": { - "description": "This endpoint creates a recovery link which should be given to the user in order for them to recover\n(or activate) their account.", - "operationId": "createRecoveryLinkForIdentity", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/createRecoveryLinkForIdentityBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryLinkForIdentity" - } - } - }, - "description": "recoveryLinkForIdentity" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create a Recovery Link", - "tags": [ - "identity" - ] - } - }, - "/admin/relation-tuples": { - "delete": { - "description": "Use this endpoint to delete relationships", - "operationId": "deleteRelationships", - "parameters": [ - { - "description": "Namespace of the Relationship", - "in": "query", - "name": "namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Relationship", - "in": "query", - "name": "object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Relationship", - "in": "query", - "name": "relation", - "schema": { - "type": "string" - } - }, - { - "description": "SubjectID of the Relationship", - "in": "query", - "name": "subject_id", - "schema": { - "type": "string" - } - }, - { - "description": "Namespace of the Subject Set", - "in": "query", - "name": "subject_set.namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Subject Set", - "in": "query", - "name": "subject_set.object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Subject Set", - "in": "query", - "name": "subject_set.relation", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete Relationships", - "tags": [ - "relationship" - ] - }, - "patch": { - "description": "Use this endpoint to patch one or more relationships.", - "operationId": "patchRelationships", - "requestBody": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/relationshipPatch" - }, - "type": "array" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Patch Multiple Relationships", - "tags": [ - "relationship" - ] - }, - "put": { - "description": "Use this endpoint to create a relationship.", - "operationId": "createRelationship", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/createRelationshipBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/relationship" - } - } - }, - "description": "relationship" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create a Relationship", - "tags": [ - "relationship" - ] - } - }, - "/admin/sessions": { - "get": { - "description": "Listing all sessions that exist.", - "operationId": "listSessions", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_size", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).", - "in": "query", - "name": "page_token", - "schema": { - "type": "string" - } - }, - { - "description": "Active is a boolean flag that filters out sessions based on the state. If no value is provided, all sessions are returned.", - "in": "query", - "name": "active", - "schema": { - "type": "boolean" - } - }, - { - "description": "ExpandOptions is a query parameter encoded list of all properties that must be expanded in the Session.\nIf no value is provided, the expandable properties are skipped.", - "in": "query", - "name": "expand", - "schema": { - "enum": [ - "identity", - "devices" - ], - "items": { - "type": "string" - }, - "type": "array" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/listSessions" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List All Sessions", - "tags": [ - "identity" - ] - } - }, - "/admin/sessions/{id}": { - "delete": { - "description": "Calling this endpoint deactivates the specified session. Session data is not deleted.", - "operationId": "disableSession", - "parameters": [ - { - "description": "ID is the session's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Deactivate a Session", - "tags": [ - "identity" - ] - }, - "get": { - "description": "This endpoint is useful for:\n\nGetting a session object with all specified expandables that exist in an administrative context.", - "operationId": "getSession", - "parameters": [ - { - "description": "ExpandOptions is a query parameter encoded list of all properties that must be expanded in the Session.\nExample - ?expand=Identity\u0026expand=Devices\nIf no value is provided, the expandable properties are skipped.", - "in": "query", - "name": "expand", - "schema": { - "enum": [ - "identity", - "devices" - ], - "items": { - "type": "string" - }, - "type": "array" - } - }, - { - "description": "ID is the session's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/session" - } - } - }, - "description": "session" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get Session", - "tags": [ - "identity" - ] - } - }, - "/admin/sessions/{id}/extend": { - "patch": { - "description": "Calling this endpoint extends the given session ID. If `session.earliest_possible_extend` is set it\nwill only extend the session after the specified time has passed.\n\nRetrieve the session ID from the `/sessions/whoami` endpoint / `toSession` SDK method.", - "operationId": "extendSession", - "parameters": [ - { - "description": "ID is the session's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/session" - } - } - }, - "description": "session" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Extend a Session", - "tags": [ - "identity" - ] - } - }, - "/admin/trust/grants/jwt-bearer/issuers": { - "get": { - "description": "Use this endpoint to list all trusted JWT Bearer Grant Type Issuers.", - "operationId": "listTrustedOAuth2JwtGrantIssuers", - "parameters": [ - { - "in": "query", - "name": "MaxItems", - "schema": { - "format": "int64", - "type": "integer" - } - }, - { - "in": "query", - "name": "DefaultItems", - "schema": { - "format": "int64", - "type": "integer" - } - }, - { - "description": "If optional \"issuer\" is supplied, only jwt-bearer grants with this issuer will be returned.", - "in": "query", - "name": "issuer", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/trustedOAuth2JwtGrantIssuers" - } - } - }, - "description": "trustedOAuth2JwtGrantIssuers" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List Trusted OAuth2 JWT Bearer Grant Type Issuers", - "tags": [ - "oAuth2" - ] - }, - "post": { - "description": "Use this endpoint to establish a trust relationship for a JWT issuer\nto perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication\nand Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523).", - "operationId": "trustOAuth2JwtGrantIssuer", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/trustOAuth2JwtGrantIssuer" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/trustedOAuth2JwtGrantIssuer" - } - } - }, - "description": "trustedOAuth2JwtGrantIssuer" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Trust OAuth2 JWT Bearer Grant Type Issuer", - "tags": [ - "oAuth2" - ] - } - }, - "/admin/trust/grants/jwt-bearer/issuers/{id}": { - "delete": { - "description": "Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you\ncreated the trust relationship.\n\nOnce deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile\nfor OAuth 2.0 Client Authentication and Authorization Grant.", - "operationId": "deleteTrustedOAuth2JwtGrantIssuer", - "parameters": [ - { - "description": "The id of the desired grant", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete Trusted OAuth2 JWT Bearer Grant Type Issuer", - "tags": [ - "oAuth2" - ] - }, - "get": { - "description": "Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you\ncreated the trust relationship.", - "operationId": "getTrustedOAuth2JwtGrantIssuer", - "parameters": [ - { - "description": "The id of the desired grant", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/trustedOAuth2JwtGrantIssuer" - } - } - }, - "description": "trustedOAuth2JwtGrantIssuer" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get Trusted OAuth2 JWT Bearer Grant Type Issuer", - "tags": [ - "oAuth2" - ] - } - }, - "/console/active/project": { - "get": { - "description": "Use this API to get your active project in the Ory Network Console UI.", - "operationId": "getActiveProjectInConsole", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/activeProjectInConsole" - } - } - }, - "description": "activeProjectInConsole" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Returns the Ory Network Project selected in the Ory Network Console", - "tags": [ - "project" - ] - }, - "put": { - "description": "Use this API to set your active project in the Ory Network Console UI.", - "operationId": "setActiveProjectInConsole", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/setActiveProjectInConsoleBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Sets the Ory Network Project active in the Ory Network Console", - "tags": [ - "project" - ] - } - }, - "/credentials": { - "post": { - "description": "This endpoint creates a verifiable credential that attests that the user\nauthenticated with the provided access token owns a certain public/private key\npair.\n\nMore information can be found at\nhttps://openid.net/specs/openid-connect-userinfo-vc-1_0.html.", - "operationId": "createVerifiableCredential", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateVerifiableCredentialRequestBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verifiableCredentialResponse" - } - } - }, - "description": "verifiableCredentialResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verifiableCredentialPrimingResponse" - } - } - }, - "description": "verifiableCredentialPrimingResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "summary": "Issues a Verifiable Credential", - "tags": [ - "oidc" - ] - } - }, - "/health/alive": { - "get": { - "description": "This endpoint returns a HTTP 200 status code when Ory Kratos is accepting incoming\nHTTP requests. This status does currently not include checks whether the database connection is working.\n\nIf the service supports TLS Edge Termination, this endpoint does not require the\n`X-Forwarded-Proto` header to be set.\n\nBe aware that if you are running multiple nodes of this service, the health status will never\nrefer to the cluster state, only to a single instance.", - "operationId": "isAlive", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/healthStatus", - "properties": { - "status": { - "description": "Always \"ok\".", - "type": "string" - } - }, - "required": [ - "status" - ], - "type": "object" - } - } - }, - "description": "Ory Kratos is ready to accept connections." - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "text/plain": { - "schema": { - "type": "string" - } - } - }, - "description": "Unexpected error" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check HTTP Server Status", - "tags": [ - "metadata" - ] - } - }, - "/health/ready": { - "get": { - "description": "This endpoint returns a HTTP 200 status code when Ory Kratos is up running and the environment dependencies (e.g.\nthe database) are responsive as well.\n\nIf the service supports TLS Edge Termination, this endpoint does not require the\n`X-Forwarded-Proto` header to be set.\n\nBe aware that if you are running multiple nodes of Ory Kratos, the health status will never\nrefer to the cluster state, only to a single instance.", - "operationId": "isReady", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "status": { - "description": "Always \"ok\".", - "type": "string" - } - }, - "required": [ - "status" - ], - "type": "object" - } - } - }, - "description": "Ory Kratos is ready to accept requests." - }, - "503": { - "content": { - "application/json": { - "schema": { - "properties": { - "errors": { - "additionalProperties": { - "type": "string" - }, - "description": "Errors contains a list of errors that caused the not ready status.", - "type": "object" - } - }, - "required": [ - "errors" - ], - "type": "object" - } - } - }, - "description": "Ory Kratos is not yet ready to accept requests." - }, - "default": { - "content": { - "text/plain": { - "schema": { - "type": "string" - } - } - }, - "description": "Unexpected error" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check HTTP Server and Database Status", - "tags": [ - "metadata" - ] - } - }, - "/namespaces": { - "get": { - "description": "Get all namespaces", - "operationId": "listRelationshipNamespaces", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/relationshipNamespaces" - } - } - }, - "description": "relationshipNamespaces" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Query namespaces", - "tags": [ - "relationship" - ] - } - }, - "/oauth2/auth": { - "get": { - "description": "Use open source libraries to perform OAuth 2.0 and OpenID Connect\navailable for any programming language. You can find a list of libraries at https://oauth.net/code/\n\nThe Ory SDK is not yet able to this endpoint properly.", - "operationId": "oAuth2Authorize", - "responses": { - "302": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "summary": "OAuth 2.0 Authorize Endpoint", - "tags": [ - "oAuth2" - ] - } - }, - "/oauth2/register": { - "post": { - "description": "This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the\npublic internet directly and can be used in self-service. It implements the OpenID Connect\nDynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint\nis disabled by default. It can be enabled by an administrator.\n\nPlease note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those\nvalues will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or\n`client_secret_post`.\n\nThe `client_secret` will be returned in the response and you will not be able to retrieve it later on.\nWrite the secret down and keep it somewhere safe.", - "operationId": "createOidcDynamicClient", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "Dynamic Client Registration Request Body", - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "400": { - "$ref": "#/components/responses/errorOAuth2BadRequest" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "summary": "Register OAuth2 Client using OpenID Dynamic Client Registration", - "tags": [ - "oidc" - ] - } - }, - "/oauth2/register/{id}": { - "delete": { - "description": "This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the\npublic internet directly and can be used in self-service. It implements the OpenID Connect\nDynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint\nis disabled by default. It can be enabled by an administrator.\n\nTo use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client\nuses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query.\nIf it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.\n\nOAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.", - "operationId": "deleteOidcDynamicClient", - "parameters": [ - { - "description": "The id of the OAuth 2.0 Client.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "bearer": [] - } - ], - "summary": "Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol", - "tags": [ - "oidc" - ] - }, - "get": { - "description": "This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the\npublic internet directly and can be used in self-service. It implements the OpenID Connect\nDynamic Client Registration Protocol.\n\nTo use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client\nuses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query.\nIf it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.", - "operationId": "getOidcDynamicClient", - "parameters": [ - { - "description": "The id of the OAuth 2.0 Client.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "bearer": [] - } - ], - "summary": "Get OAuth2 Client using OpenID Dynamic Client Registration", - "tags": [ - "oidc" - ] - }, - "put": { - "description": "This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the\npublic internet directly to be used by third parties. It implements the OpenID Connect\nDynamic Client Registration Protocol.\n\nThis feature is disabled per default. It can be enabled by a system administrator.\n\nIf you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response.\nIt is not possible to retrieve it later on.\n\nTo use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client\nuses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query.\nIf it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.\n\nOAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.", - "operationId": "setOidcDynamicClient", - "parameters": [ - { - "description": "OAuth 2.0 Client ID", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "OAuth 2.0 Client Request Body", - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2Client" - } - } - }, - "description": "oAuth2Client" - }, - "404": { - "$ref": "#/components/responses/errorOAuth2NotFound" - }, - "default": { - "$ref": "#/components/responses/errorOAuth2Default" - } - }, - "security": [ - { - "bearer": [] - } - ], - "summary": "Set OAuth2 Client using OpenID Dynamic Client Registration", - "tags": [ - "oidc" - ] - } - }, - "/oauth2/revoke": { - "post": { - "description": "Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no\nlonger be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token.\nRevoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by\nthe client the token was generated for.", - "operationId": "revokeOAuth2Token", - "requestBody": { - "content": { - "application/x-www-form-urlencoded": { - "schema": { - "properties": { - "client_id": { - "type": "string", - "x-formData-name": "client_id" - }, - "client_secret": { - "type": "string", - "x-formData-name": "client_secret" - }, - "token": { - "required": [ - "token" - ], - "type": "string", - "x-formData-name": "token" - } - }, - "required": [ - "token" - ], - "type": "object" - } - } - } - }, - "responses": { - "200": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "basic": [] - }, - { - "oauth2": [] - } - ], - "summary": "Revoke OAuth 2.0 Access or Refresh Token", - "tags": [ - "oAuth2" - ] - } - }, - "/oauth2/sessions/logout": { - "get": { - "description": "This endpoint initiates and completes user logout at the Ory OAuth2 \u0026 OpenID provider and initiates OpenID Connect Front- / Back-channel logout:\n\nhttps://openid.net/specs/openid-connect-frontchannel-1_0.html\nhttps://openid.net/specs/openid-connect-backchannel-1_0.html\n\nBack-channel logout is performed asynchronously and does not affect logout flow.", - "operationId": "revokeOidcSession", - "responses": { - "302": { - "$ref": "#/components/responses/emptyResponse" - } - }, - "summary": "OpenID Connect Front- and Back-channel Enabled Logout", - "tags": [ - "oidc" - ] - } - }, - "/oauth2/token": { - "post": { - "description": "Use open source libraries to perform OAuth 2.0 and OpenID Connect\navailable for any programming language. You can find a list of libraries here https://oauth.net/code/\n\nThe Ory SDK is not yet able to this endpoint properly.", - "operationId": "oauth2TokenExchange", - "requestBody": { - "content": { - "application/x-www-form-urlencoded": { - "schema": { - "properties": { - "client_id": { - "type": "string", - "x-formData-name": "client_id" - }, - "code": { - "type": "string", - "x-formData-name": "code" - }, - "grant_type": { - "required": [ - "grant_type" - ], - "type": "string", - "x-formData-name": "grant_type" - }, - "redirect_uri": { - "type": "string", - "x-formData-name": "redirect_uri" - }, - "refresh_token": { - "type": "string", - "x-formData-name": "refresh_token" - } - }, - "required": [ - "grant_type" - ], - "type": "object" - } - } - } - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oAuth2TokenExchange" - } - } - }, - "description": "oAuth2TokenExchange" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "basic": [] - }, - { - "oauth2": [] - } - ], - "summary": "The OAuth 2.0 Token Endpoint", - "tags": [ - "oAuth2" - ] - } - }, - "/opl/syntax/check": { - "post": { - "description": "The OPL file is expected in the body of the request.", - "operationId": "checkOplSyntax", - "requestBody": { - "content": { - "text/plain": { - "schema": { - "$ref": "#/components/schemas/checkOplSyntaxBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkOplSyntaxResult" - } - } - }, - "description": "checkOplSyntaxResult" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check the syntax of an OPL file", - "tags": [ - "relationship" - ] - } - }, - "/projects": { - "get": { - "description": "Lists all projects you have access to.", - "operationId": "listProjects", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/projectMetadataList" - } - } - }, - "description": "projectMetadataList" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List All Projects", - "tags": [ - "project" - ] - }, - "post": { - "description": "Creates a new project.", - "operationId": "createProject", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/createProjectBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/project" - } - } - }, - "description": "project" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create a Project", - "tags": [ - "project" - ] - } - }, - "/projects/{project_id}": { - "delete": { - "description": "!! Use with extreme caution !!\n\nUsing this API endpoint you can purge (completely delete) a project and its data.\nThis action can not be undone and will delete ALL your data.\n\n!! Use with extreme caution !!", - "operationId": "purgeProject", - "parameters": [ - { - "description": "Project ID\n\nThe project's ID.", - "in": "path", - "name": "project_id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Irrecoverably purge a project", - "tags": [ - "project" - ] - }, - "get": { - "description": "Get a projects you have access to by its ID.", - "operationId": "getProject", - "parameters": [ - { - "description": "Project ID\n\nThe project's ID.", - "in": "path", - "name": "project_id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/project" - } - } - }, - "description": "project" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get a Project", - "tags": [ - "project" - ] - }, - "patch": { - "description": "Deprecated: Use the `patchProjectWithRevision` endpoint instead to specify the exact revision the patch was generated for.\n\nThis endpoints allows you to patch individual Ory Network project configuration keys for\nOry's services (identity, permission, ...). The configuration format is fully compatible\nwith the open source projects for the respective services (e.g. Ory Kratos for Identity, Ory Keto for Permissions).\n\nThis endpoint expects the `version` key to be set in the payload. If it is unset, it\nwill try to import the config as if it is from the most recent version.\n\nIf you have an older version of a configuration, you should set the version key in the payload!\n\nWhile this endpoint is able to process all configuration items related to features (e.g. password reset),\nit does not support operational configuration items (e.g. port, tracing, logging) otherwise available in the\nopen source.\n\nFor configuration items that can not be translated to the Ory Network, this endpoint will return a list of warnings\nto help you understand which parts of your config could not be processed.", - "operationId": "patchProject", - "parameters": [ - { - "description": "Project ID\n\nThe project's ID.", - "in": "path", - "name": "project_id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/jsonPatch" - }, - "type": "array" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulProjectUpdate" - } - } - }, - "description": "successfulProjectUpdate" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Patch an Ory Network Project Configuration", - "tags": [ - "project" - ] - }, - "put": { - "description": "This endpoints allows you to update the Ory Network project configuration for\nindividual services (identity, permission, ...). The configuration is fully compatible\nwith the open source projects for the respective services (e.g. Ory Kratos for Identity, Ory Keto for Permissions).\n\nThis endpoint expects the `version` key to be set in the payload. If it is unset, it\nwill try to import the config as if it is from the most recent version.\n\nIf you have an older version of a configuration, you should set the version key in the payload!\n\nWhile this endpoint is able to process all configuration items related to features (e.g. password reset),\nit does not support operational configuration items (e.g. port, tracing, logging) otherwise available in the\nopen source.\n\nFor configuration items that can not be translated to the Ory Network, this endpoint will return a list of warnings\nto help you understand which parts of your config could not be processed.\n\nBe aware that updating any service's configuration will completely override your current configuration for that\nservice!", - "operationId": "setProject", - "parameters": [ - { - "description": "Project ID\n\nThe project's ID.", - "in": "path", - "name": "project_id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/setProject" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulProjectUpdate" - } - } - }, - "description": "successfulProjectUpdate" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Update an Ory Network Project Configuration", - "tags": [ - "project" - ] - } - }, - "/projects/{project_id}/metrics": { - "get": { - "description": "Retrieves project metrics for the specified event type and time range", - "operationId": "getProjectMetrics", - "parameters": [ - { - "description": "Project ID", - "in": "path", - "name": "project_id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The event type to query for", - "in": "query", - "name": "event_type", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The resolution of the buckets\n\nThe minimum resolution is 1 hour.", - "in": "query", - "name": "resolution", - "required": true, - "schema": { - "pattern": "^[0-9]+(ns|us|ms|s|m|h)$", - "type": "string" - } - }, - { - "description": "The start time of the time window", - "in": "query", - "name": "from", - "required": true, - "schema": { - "format": "date-time", - "type": "string" - } - }, - { - "description": "The end time of the time window", - "in": "query", - "name": "to", - "required": true, - "schema": { - "format": "date-time", - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/getProjectMetricsResponse" - } - } - }, - "description": "getProjectMetricsResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "tags": [ - "project" - ] - } - }, - "/projects/{project}/members": { - "get": { - "description": "This endpoint requires the user to be a member of the project with the role `OWNER` or `DEVELOPER`.", - "operationId": "getProjectMembers", - "parameters": [ - { - "in": "path", - "name": "project", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/projectMembers" - } - } - }, - "description": "projectMembers" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "406": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Get all members associated with this project", - "tags": [ - "project" - ] - } - }, - "/projects/{project}/members/{member}": { - "delete": { - "description": "This also sets their invite status to `REMOVED`.\nThis endpoint requires the user to be a member of the project with the role `OWNER`.", - "operationId": "removeProjectMember", - "parameters": [ - { - "in": "path", - "name": "project", - "required": true, - "schema": { - "type": "string" - } - }, - { - "in": "path", - "name": "member", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "406": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/genericError" - } - } - }, - "description": "genericError" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Remove a member associated with this project", - "tags": [ - "project" - ] - } - }, - "/projects/{project}/tokens": { - "get": { - "description": "A list of all the project's API tokens.", - "operationId": "listProjectApiKeys", - "parameters": [ - { - "description": "The Project ID or Project slug", - "in": "path", - "name": "project", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/projectApiKeys" - } - } - }, - "description": "projectApiKeys" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "List a project's API Tokens", - "tags": [ - "project" - ] - }, - "post": { - "description": "Create an API token for a project.", - "operationId": "createProjectApiKey", - "parameters": [ - { - "description": "The Project ID or Project slug", - "in": "path", - "name": "project", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "properties": { - "name": { - "description": "The Token Name\n\nA descriptive name for the token.\n\nin: body", - "type": "string" - } - }, - "required": [ - "name" - ], - "type": "object" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "201": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/projectApiKey" - } - } - }, - "description": "projectApiKey" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Create project API token", - "tags": [ - "project" - ] - } - }, - "/projects/{project}/tokens/{token_id}": { - "delete": { - "description": "Deletes an API token and immediately removes it.", - "operationId": "deleteProjectApiKey", - "parameters": [ - { - "description": "The Project ID or Project slug", - "in": "path", - "name": "project", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Token ID", - "in": "path", - "name": "token_id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Delete project API token", - "tags": [ - "project" - ] - } - }, - "/relation-tuples": { - "get": { - "description": "Get all relationships that match the query. Only the namespace field is required.", - "operationId": "getRelationships", - "parameters": [ - { - "in": "query", - "name": "page_token", - "schema": { - "type": "string" - } - }, - { - "in": "query", - "name": "page_size", - "schema": { - "format": "int64", - "type": "integer" - } - }, - { - "description": "Namespace of the Relationship", - "in": "query", - "name": "namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Relationship", - "in": "query", - "name": "object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Relationship", - "in": "query", - "name": "relation", - "schema": { - "type": "string" - } - }, - { - "description": "SubjectID of the Relationship", - "in": "query", - "name": "subject_id", - "schema": { - "type": "string" - } - }, - { - "description": "Namespace of the Subject Set", - "in": "query", - "name": "subject_set.namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Subject Set", - "in": "query", - "name": "subject_set.object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Subject Set", - "in": "query", - "name": "subject_set.relation", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/relationships" - } - } - }, - "description": "relationships" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Query relationships", - "tags": [ - "relationship" - ] - } - }, - "/relation-tuples/check": { - "get": { - "description": "To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).", - "operationId": "checkPermissionOrError", - "parameters": [ - { - "description": "Namespace of the Relationship", - "in": "query", - "name": "namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Relationship", - "in": "query", - "name": "object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Relationship", - "in": "query", - "name": "relation", - "schema": { - "type": "string" - } - }, - { - "description": "SubjectID of the Relationship", - "in": "query", - "name": "subject_id", - "schema": { - "type": "string" - } - }, - { - "description": "Namespace of the Subject Set", - "in": "query", - "name": "subject_set.namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Subject Set", - "in": "query", - "name": "subject_set.object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Subject Set", - "in": "query", - "name": "subject_set.relation", - "schema": { - "type": "string" - } - }, - { - "in": "query", - "name": "max-depth", - "schema": { - "format": "int64", - "type": "integer" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkPermissionResult" - } - } - }, - "description": "checkPermissionResult" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkPermissionResult" - } - } - }, - "description": "checkPermissionResult" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check a permission", - "tags": [ - "permission" - ] - }, - "post": { - "description": "To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).", - "operationId": "postCheckPermissionOrError", - "parameters": [ - { - "description": "nolint:deadcode,unused", - "in": "query", - "name": "max-depth", - "schema": { - "format": "int64", - "type": "integer" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/postCheckPermissionOrErrorBody" - } - } - }, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkPermissionResult" - } - } - }, - "description": "checkPermissionResult" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkPermissionResult" - } - } - }, - "description": "checkPermissionResult" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check a permission", - "tags": [ - "permission" - ] - } - }, - "/relation-tuples/check/openapi": { - "get": { - "description": "To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).", - "operationId": "checkPermission", - "parameters": [ - { - "description": "Namespace of the Relationship", - "in": "query", - "name": "namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Relationship", - "in": "query", - "name": "object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Relationship", - "in": "query", - "name": "relation", - "schema": { - "type": "string" - } - }, - { - "description": "SubjectID of the Relationship", - "in": "query", - "name": "subject_id", - "schema": { - "type": "string" - } - }, - { - "description": "Namespace of the Subject Set", - "in": "query", - "name": "subject_set.namespace", - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Subject Set", - "in": "query", - "name": "subject_set.object", - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Subject Set", - "in": "query", - "name": "subject_set.relation", - "schema": { - "type": "string" - } - }, - { - "in": "query", - "name": "max-depth", - "schema": { - "format": "int64", - "type": "integer" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkPermissionResult" - } - } - }, - "description": "checkPermissionResult" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check a permission", - "tags": [ - "permission" - ] - }, - "post": { - "description": "To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).", - "operationId": "postCheckPermission", - "parameters": [ - { - "in": "query", - "name": "max-depth", - "schema": { - "format": "int64", - "type": "integer" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/postCheckPermissionBody" - } - } - }, - "x-originalParamName": "Payload" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/checkPermissionResult" - } - } - }, - "description": "checkPermissionResult" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Check a permission", - "tags": [ - "permission" - ] - } - }, - "/relation-tuples/expand": { - "get": { - "description": "Use this endpoint to expand a relationship tuple into permissions.", - "operationId": "expandPermissions", - "parameters": [ - { - "description": "Namespace of the Subject Set", - "in": "query", - "name": "namespace", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Object of the Subject Set", - "in": "query", - "name": "object", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Relation of the Subject Set", - "in": "query", - "name": "relation", - "required": true, - "schema": { - "type": "string" - } - }, - { - "in": "query", - "name": "max-depth", - "schema": { - "format": "int64", - "type": "integer" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/expandedPermissionTree" - } - } - }, - "description": "expandedPermissionTree" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Expand a Relationship into permissions.", - "tags": [ - "permission" - ] - } - }, - "/schemas": { - "get": { - "description": "Returns a list of all identity schemas currently in use.", - "operationId": "listIdentitySchemas", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/identitySchemas" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get all Identity Schemas", - "tags": [ - "identity" - ] - } - }, - "/schemas/{id}": { - "get": { - "description": "Return a specific identity schema.", - "operationId": "getIdentitySchema", - "parameters": [ - { - "description": "ID must be set to the ID of schema you want to get", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/identitySchema" - } - } - }, - "description": "identitySchema" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get Identity JSON Schema", - "tags": [ - "identity" - ] - } - }, - "/self-service/errors": { - "get": { - "description": "This endpoint returns the error associated with a user-facing self service errors.\n\nThis endpoint supports stub values to help you implement the error UI:\n\n`?id=stub:500` - returns a stub 500 (Internal Server Error) error.\n\nMore information can be found at [Ory Kratos User User Facing Error Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-facing-errors).", - "operationId": "getFlowError", - "parameters": [ - { - "description": "Error is the error's ID", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/flowError" - } - } - }, - "description": "flowError" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get User-Flow Errors", - "tags": [ - "frontend" - ] - } - }, - "/self-service/login": { - "post": { - "description": "Use this endpoint to complete a login flow. This endpoint\nbehaves differently for API and browser flows.\n\nAPI flows expect `application/json` to be sent in the body and responds with\nHTTP 200 and a application/json body with the session token on success;\nHTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body;\nHTTP 400 on form validation errors.\n\nBrowser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with\na HTTP 303 redirect to the post/after login URL or the `return_to` value if it was set and if the login succeeded;\na HTTP 303 redirect to the login UI URL with the flow ID containing the validation errors otherwise.\n\nBrowser flows with an accept header of `application/json` will not redirect but instead respond with\nHTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;\nHTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;\nHTTP 400 on form validation errors.\n\nIf this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.\nMost likely used in Social Sign In flows.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "updateLoginFlow", - "parameters": [ - { - "description": "The Login Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/login?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/updateLoginFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/updateLoginFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulNativeLogin" - } - } - }, - "description": "successfulNativeLogin" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/loginFlow" - } - } - }, - "description": "loginFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorBrowserLocationChangeRequired" - } - } - }, - "description": "errorBrowserLocationChangeRequired" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Submit a Login Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/login/api": { - "get": { - "description": "This endpoint initiates a login flow for native apps that do not use a browser, such as mobile devices, smart TVs, and so on.\n\nIf a valid provided session cookie or session token is provided, a 400 Bad Request error\nwill be returned unless the URL query parameter `?refresh=true` is set.\n\nTo fetch an existing login flow call `/self-service/login/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks, including CSRF login attacks.\n\nIn the case of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "createNativeLoginFlow", - "parameters": [ - { - "description": "Refresh a login session\n\nIf set to true, this will refresh an existing login session by\nasking the user to sign in again. This will reset the\nauthenticated_at time of the session.", - "in": "query", - "name": "refresh", - "schema": { - "type": "boolean" - } - }, - { - "description": "Request a Specific AuthenticationMethod Assurance Level\n\nUse this parameter to upgrade an existing session's authenticator assurance level (AAL). This\nallows you to ask for multi-factor authentication. When an identity sign in using e.g. username+password,\nthe AAL is 1. If you wish to \"upgrade\" the session's security by asking the user to perform TOTP / WebAuth/ ...\nyou would set this to \"aal2\".", - "in": "query", - "name": "aal", - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token\nafter the login flow has been completed.", - "in": "query", - "name": "return_session_token_exchange_code", - "schema": { - "type": "boolean" - } - }, - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/loginFlow" - } - } - }, - "description": "loginFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Login Flow for Native Apps", - "tags": [ - "frontend" - ] - } - }, - "/self-service/login/browser": { - "get": { - "description": "This endpoint initializes a browser-based user login flow. This endpoint will set the appropriate\ncookies and anti-CSRF measures required for browser-based flows.\n\nIf this endpoint is opened as a link in the browser, it will be redirected to\n`selfservice.flows.login.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session\nexists already, the browser will be redirected to `urls.default_redirect_url` unless the query parameter\n`?refresh=true` was set.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n\nThe optional query parameter login_challenge is set when using Kratos with\nHydra in an OAuth2 flow. See the oauth2_provider.url configuration\noption.\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "createBrowserLoginFlow", - "parameters": [ - { - "description": "Refresh a login session\n\nIf set to true, this will refresh an existing login session by\nasking the user to sign in again. This will reset the\nauthenticated_at time of the session.", - "in": "query", - "name": "refresh", - "schema": { - "type": "boolean" - } - }, - { - "description": "Request a Specific AuthenticationMethod Assurance Level\n\nUse this parameter to upgrade an existing session's authenticator assurance level (AAL). This\nallows you to ask for multi-factor authentication. When an identity sign in using e.g. username+password,\nthe AAL is 1. If you wish to \"upgrade\" the session's security by asking the user to perform TOTP / WebAuth/ ...\nyou would set this to \"aal2\".", - "in": "query", - "name": "aal", - "schema": { - "type": "string" - } - }, - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - }, - { - "description": "An optional Hydra login challenge. If present, Kratos will cooperate with\nOry Hydra to act as an OAuth2 identity provider.\n\nThe value for this parameter comes from `login_challenge` URL Query parameter sent to your\napplication (e.g. `/login?login_challenge=abcde`).", - "in": "query", - "name": "login_challenge", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/loginFlow" - } - } - }, - "description": "loginFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Login Flow for Browsers", - "tags": [ - "frontend" - ] - } - }, - "/self-service/login/flows": { - "get": { - "description": "This endpoint returns a login flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/login', async function (req, res) {\nconst flow = await client.getLoginFlow(req.header('cookie'), req.query['flow'])\n\nres.render('login', flow)\n})\n```\n\nThis request may fail due to several reasons. The `error.id` can be one of:\n\n`session_already_available`: The user is already signed in.\n`self_service_flow_expired`: The flow is expired and you should request a new one.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "getLoginFlow", - "parameters": [ - { - "description": "The Login Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/login?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/loginFlow" - } - } - }, - "description": "loginFlow" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get Login Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/logout": { - "get": { - "description": "This endpoint logs out an identity in a self-service manner.\n\nIf the `Accept` HTTP header is not set to `application/json`, the browser will be redirected (HTTP 303 See Other)\nto the `return_to` parameter of the initial request or fall back to `urls.default_return_to`.\n\nIf the `Accept` HTTP header is set to `application/json`, a 204 No Content response\nwill be sent on successful logout instead.\n\nThis endpoint is NOT INTENDED for API clients and only works\nwith browsers (Chrome, Firefox, ...). For API clients you can\ncall the `/self-service/logout/api` URL directly with the Ory Session Token.\n\nMore information can be found at [Ory Kratos User Logout Documentation](https://www.ory.sh/docs/next/kratos/self-service/flows/user-logout).", - "operationId": "updateLogoutFlow", - "parameters": [ - { - "description": "A Valid Logout Token\n\nIf you do not have a logout token because you only have a session cookie,\ncall `/self-service/logout/browser` to generate a URL for this endpoint.", - "in": "query", - "name": "token", - "schema": { - "type": "string" - } - }, - { - "description": "The URL to return to after the logout was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Update Logout Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/logout/api": { - "delete": { - "description": "Use this endpoint to log out an identity using an Ory Session Token. If the Ory Session Token was successfully\nrevoked, the server returns a 204 No Content response. A 204 No Content response is also sent when\nthe Ory Session Token has been revoked already before.\n\nIf the Ory Session Token is malformed or does not exist a 403 Forbidden response will be returned.\n\nThis endpoint does not remove any HTTP\nCookies - use the Browser-Based Self-Service Logout Flow instead.", - "operationId": "performNativeLogout", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/performNativeLogoutBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Perform Logout for Native Apps", - "tags": [ - "frontend" - ] - } - }, - "/self-service/logout/browser": { - "get": { - "description": "This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user.\n\nThis endpoint is NOT INTENDED for API clients and only works\nwith browsers (Chrome, Firefox, ...). For API clients you can\ncall the `/self-service/logout/api` URL directly with the Ory Session Token.\n\nThe URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns\na 401 error.\n\nWhen calling this endpoint from a backend, please ensure to properly forward the HTTP cookies.", - "operationId": "createBrowserLogoutFlow", - "parameters": [ - { - "description": "HTTP Cookies\n\nIf you call this endpoint from a backend, please include the\noriginal Cookie header in the request.", - "in": "header", - "name": "cookie", - "schema": { - "type": "string" - } - }, - { - "description": "Return to URL\n\nThe URL to which the browser should be redirected to after the logout\nhas been performed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/logoutFlow" - } - } - }, - "description": "logoutFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "500": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create a Logout URL for Browsers", - "tags": [ - "frontend" - ] - } - }, - "/self-service/recovery": { - "post": { - "description": "Use this endpoint to complete a recovery flow. This endpoint\nbehaves differently for API and browser flows and has several states:\n\n`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent\nand works with API- and Browser-initiated flows.\nFor API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid.\nand a HTTP 303 See Other redirect with a fresh recovery flow if the flow was otherwise invalid (e.g. expired).\nFor Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Recovery UI URL with the Recovery Flow ID appended.\n`sent_email` is the success state after `choose_method` for the `link` method and allows the user to request another recovery email. It\nworks for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state.\n`passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow (\"sending a recovery link\")\ndoes not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL\n(if the link was valid) and instructs the user to update their password, or a redirect to the Recover UI URL with\na new Recovery Flow ID which contains an error message that the recovery link was invalid.\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "updateRecoveryFlow", - "parameters": [ - { - "description": "The Recovery Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/recovery?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Recovery Token\n\nThe recovery token which completes the recovery request. If the token\nis invalid (e.g. expired) an error will be shown to the end-user.\n\nThis parameter is usually set in a link and not used by any direct API call.", - "in": "query", - "name": "token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/updateRecoveryFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/updateRecoveryFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryFlow" - } - } - }, - "description": "recoveryFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryFlow" - } - } - }, - "description": "recoveryFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorBrowserLocationChangeRequired" - } - } - }, - "description": "errorBrowserLocationChangeRequired" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Complete Recovery Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/recovery/api": { - "get": { - "description": "This endpoint initiates a recovery flow for API clients such as mobile devices, smart TVs, and so on.\n\nIf a valid provided session cookie or session token is provided, a 400 Bad Request error.\n\nTo fetch an existing recovery flow call `/self-service/recovery/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "createNativeRecoveryFlow", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryFlow" - } - } - }, - "description": "recoveryFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Recovery Flow for Native Apps", - "tags": [ - "frontend" - ] - } - }, - "/self-service/recovery/browser": { - "get": { - "description": "This endpoint initializes a browser-based account recovery flow. Once initialized, the browser will be redirected to\n`selfservice.flows.recovery.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session\nexists, the browser is returned to the configured return URL.\n\nIf this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects\nor a 400 bad request error if the user is already authenticated.\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "createBrowserRecoveryFlow", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryFlow" - } - } - }, - "description": "recoveryFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Recovery Flow for Browsers", - "tags": [ - "frontend" - ] - } - }, - "/self-service/recovery/flows": { - "get": { - "description": "This endpoint returns a recovery flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/recovery', async function (req, res) {\nconst flow = await client.getRecoveryFlow(req.header('Cookie'), req.query['flow'])\n\nres.render('recovery', flow)\n})\n```\n\nMore information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).", - "operationId": "getRecoveryFlow", - "parameters": [ - { - "description": "The Flow ID\n\nThe value for this parameter comes from `request` URL Query parameter sent to your\napplication (e.g. `/recovery?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/recoveryFlow" - } - } - }, - "description": "recoveryFlow" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get Recovery Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/registration": { - "post": { - "description": "Use this endpoint to complete a registration flow by sending an identity's traits and password. This endpoint\nbehaves differently for API and browser flows.\n\nAPI flows expect `application/json` to be sent in the body and respond with\nHTTP 200 and a application/json body with the created identity success - if the session hook is configured the\n`session` and `session_token` will also be included;\nHTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body;\nHTTP 400 on form validation errors.\n\nBrowser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with\na HTTP 303 redirect to the post/after registration URL or the `return_to` value if it was set and if the registration succeeded;\na HTTP 303 redirect to the registration UI URL with the flow ID containing the validation errors otherwise.\n\nBrowser flows with an accept header of `application/json` will not redirect but instead respond with\nHTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;\nHTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;\nHTTP 400 on form validation errors.\n\nIf this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.\nMost likely used in Social Sign In flows.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "updateRegistrationFlow", - "parameters": [ - { - "description": "The Registration Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/registration?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/updateRegistrationFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/updateRegistrationFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulNativeRegistration" - } - } - }, - "description": "successfulNativeRegistration" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/registrationFlow" - } - } - }, - "description": "registrationFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorBrowserLocationChangeRequired" - } - } - }, - "description": "errorBrowserLocationChangeRequired" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Update Registration Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/registration/api": { - "get": { - "description": "This endpoint initiates a registration flow for API clients such as mobile devices, smart TVs, and so on.\n\nIf a valid provided session cookie or session token is provided, a 400 Bad Request error\nwill be returned unless the URL query parameter `?refresh=true` is set.\n\nTo fetch an existing registration flow call `/self-service/registration/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nIn the case of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "createNativeRegistrationFlow", - "parameters": [ - { - "description": "EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token\nafter the login flow has been completed.", - "in": "query", - "name": "return_session_token_exchange_code", - "schema": { - "type": "boolean" - } - }, - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/registrationFlow" - } - } - }, - "description": "registrationFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Registration Flow for Native Apps", - "tags": [ - "frontend" - ] - } - }, - "/self-service/registration/browser": { - "get": { - "description": "This endpoint initializes a browser-based user registration flow. This endpoint will set the appropriate\ncookies and anti-CSRF measures required for browser-based flows.\n\nIf this endpoint is opened as a link in the browser, it will be redirected to\n`selfservice.flows.registration.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session\nexists already, the browser will be redirected to `urls.default_redirect_url`.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_already_available`: The user is already signed in.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n\nIf this endpoint is called via an AJAX request, the response contains the registration flow without a redirect.\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "createBrowserRegistrationFlow", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - }, - { - "description": "Ory OAuth 2.0 Login Challenge.\n\nIf set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.\n\nThe value for this parameter comes from `login_challenge` URL Query parameter sent to your\napplication (e.g. `/registration?login_challenge=abcde`).\n\nThis feature is compatible with Ory Hydra when not running on the Ory Network.", - "in": "query", - "name": "login_challenge", - "schema": { - "type": "string" - } - }, - { - "description": "The URL to return the browser to after the verification flow was completed.\n\nAfter the registration flow is completed, the user will be sent a verification email.\nUpon completing the verification flow, this URL will be used to override the default\n`selfservice.flows.verification.after.default_redirect_to` value.", - "in": "query", - "name": "after_verification_return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/registrationFlow" - } - } - }, - "description": "registrationFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Registration Flow for Browsers", - "tags": [ - "frontend" - ] - } - }, - "/self-service/registration/flows": { - "get": { - "description": "This endpoint returns a registration flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/registration', async function (req, res) {\nconst flow = await client.getRegistrationFlow(req.header('cookie'), req.query['flow'])\n\nres.render('registration', flow)\n})\n```\n\nThis request may fail due to several reasons. The `error.id` can be one of:\n\n`session_already_available`: The user is already signed in.\n`self_service_flow_expired`: The flow is expired and you should request a new one.\n\nMore information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).", - "operationId": "getRegistrationFlow", - "parameters": [ - { - "description": "The Registration Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/registration?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/registrationFlow" - } - } - }, - "description": "registrationFlow" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get Registration Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/settings": { - "post": { - "description": "Use this endpoint to complete a settings flow by sending an identity's updated password. This endpoint\nbehaves differently for API and browser flows.\n\nAPI-initiated flows expect `application/json` to be sent in the body and respond with\nHTTP 200 and an application/json body with the session token on success;\nHTTP 303 redirect to a fresh settings flow if the original flow expired with the appropriate error messages set;\nHTTP 400 on form validation errors.\nHTTP 401 when the endpoint is called without a valid session token.\nHTTP 403 when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.\nImplies that the user needs to re-authenticate.\n\nBrowser flows without HTTP Header `Accept` or with `Accept: text/*` respond with\na HTTP 303 redirect to the post/after settings URL or the `return_to` value if it was set and if the flow succeeded;\na HTTP 303 redirect to the Settings UI URL with the flow ID containing the validation errors otherwise.\na HTTP 303 redirect to the login endpoint when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.\n\nBrowser flows with HTTP Header `Accept: application/json` respond with\nHTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;\nHTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;\nHTTP 401 when the endpoint is called without a valid session cookie.\nHTTP 403 when the page is accessed without a session cookie or the session's AAL is too low.\nHTTP 400 on form validation errors.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.\n\nIf this endpoint is called with a `Accept: application/json` HTTP header, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`session_refresh_required`: The identity requested to change something that needs a privileged session. Redirect\nthe identity to the login init endpoint with query parameters `?refresh=true\u0026return_to=\u003cthe-current-browser-url\u003e`,\nor initiate a refresh login flow otherwise.\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n`security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other\nidentity logged in instead.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.\nMost likely used in Social Sign In flows.\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "updateSettingsFlow", - "parameters": [ - { - "description": "The Settings Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/settings?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/updateSettingsFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/updateSettingsFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/settingsFlow" - } - } - }, - "description": "settingsFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/settingsFlow" - } - } - }, - "description": "settingsFlow" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "422": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorBrowserLocationChangeRequired" - } - } - }, - "description": "errorBrowserLocationChangeRequired" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "security": [ - { - "sessionToken": [] - } - ], - "summary": "Complete Settings Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/settings/api": { - "get": { - "description": "This endpoint initiates a settings flow for API clients such as mobile devices, smart TVs, and so on.\nYou must provide a valid Ory Kratos Session Token for this endpoint to respond with HTTP 200 OK.\n\nTo fetch an existing settings flow call `/self-service/settings/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor or change the configuration.\n\nIn the case of an error, the `error.id` of the JSON response body can be one of:\n\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "createNativeSettingsFlow", - "parameters": [ - { - "description": "The Session Token of the Identity performing the settings flow.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/settingsFlow" - } - } - }, - "description": "settingsFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Settings Flow for Native Apps", - "tags": [ - "frontend" - ] - } - }, - "/self-service/settings/browser": { - "get": { - "description": "This endpoint initializes a browser-based user settings flow. Once initialized, the browser will be redirected to\n`selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid\nOry Kratos Session Cookie is included in the request, a login flow will be initialized.\n\nIf this endpoint is opened as a link in the browser, it will be redirected to\n`selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid user session\nwas set, the browser will be redirected to the login endpoint.\n\nIf this endpoint is called via an AJAX request, the response contains the settings flow without any redirects\nor a 401 forbidden error if no valid session was set.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!\n\nThis endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "createBrowserSettingsFlow", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/settingsFlow" - } - } - }, - "description": "settingsFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Settings Flow for Browsers", - "tags": [ - "frontend" - ] - } - }, - "/self-service/settings/flows": { - "get": { - "description": "When accessing this endpoint through Ory Kratos' Public API you must ensure that either the Ory Kratos Session Cookie\nor the Ory Kratos Session Token are set.\n\nDepending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor or change the configuration.\n\nYou can access this endpoint without credentials when using Ory Kratos' Admin API.\n\nIf this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the\ncase of an error, the `error.id` of the JSON response body can be one of:\n\n`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.\n`session_inactive`: No Ory Session was found - sign in a user first.\n`security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other\nidentity logged in instead.\n\nMore information can be found at [Ory Kratos User Settings \u0026 Profile Management Documentation](../self-service/flows/user-settings).", - "operationId": "getSettingsFlow", - "parameters": [ - { - "description": "ID is the Settings Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/settings?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The Session Token\n\nWhen using the SDK in an app without a browser, please include the\nsession token here.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/settingsFlow" - } - } - }, - "description": "settingsFlow" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get Settings Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/verification": { - "post": { - "description": "Use this endpoint to complete a verification flow. This endpoint\nbehaves differently for API and browser flows and has several states:\n\n`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent\nand works with API- and Browser-initiated flows.\nFor API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid\nand a HTTP 303 See Other redirect with a fresh verification flow if the flow was otherwise invalid (e.g. expired).\nFor Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Verification UI URL with the Verification Flow ID appended.\n`sent_email` is the success state after `choose_method` when using the `link` method and allows the user to request another verification email. It\nworks for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state.\n`passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow (\"sending a verification link\")\ndoes not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL\n(if the link was valid) and instructs the user to update their password, or a redirect to the Verification UI URL with\na new Verification Flow ID which contains an error message that the verification link was invalid.\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).", - "operationId": "updateVerificationFlow", - "parameters": [ - { - "description": "The Verification Flow ID\n\nThe value for this parameter comes from `flow` URL Query parameter sent to your\napplication (e.g. `/verification?flow=abcde`).", - "in": "query", - "name": "flow", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Verification Token\n\nThe verification token which completes the verification request. If the token\nis invalid (e.g. expired) an error will be shown to the end-user.\n\nThis parameter is usually set in a link and not used by any direct API call.", - "in": "query", - "name": "token", - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK in a browser app, on the server side you must include the HTTP Cookie Header\nsent by the client to your server here. This ensures that CSRF and session cookies are respected.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/updateVerificationFlowBody" - } - }, - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/updateVerificationFlowBody" - } - } - }, - "required": true, - "x-originalParamName": "Body" - }, - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verificationFlow" - } - } - }, - "description": "verificationFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verificationFlow" - } - } - }, - "description": "verificationFlow" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Complete Verification Flow", - "tags": [ - "frontend" - ] - } - }, - "/self-service/verification/api": { - "get": { - "description": "This endpoint initiates a verification flow for API clients such as mobile devices, smart TVs, and so on.\n\nTo fetch an existing verification flow call `/self-service/verification/flows?flow=\u003cflow_id\u003e`.\n\nYou MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server\nPages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make\nyou vulnerable to a variety of CSRF attacks.\n\nThis endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).\n\nMore information can be found at [Ory Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).", - "operationId": "createNativeVerificationFlow", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verificationFlow" - } - } - }, - "description": "verificationFlow" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Verification Flow for Native Apps", - "tags": [ - "frontend" - ] - } - }, - "/self-service/verification/browser": { - "get": { - "description": "This endpoint initializes a browser-based account verification flow. Once initialized, the browser will be redirected to\n`selfservice.flows.verification.ui_url` with the flow ID set as the query parameter `?flow=`.\n\nIf this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects.\n\nThis endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...).\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).", - "operationId": "createBrowserVerificationFlow", - "parameters": [ - { - "description": "The URL to return the browser to after the flow was completed.", - "in": "query", - "name": "return_to", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verificationFlow" - } - } - }, - "description": "verificationFlow" - }, - "303": { - "$ref": "#/components/responses/emptyResponse" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Create Verification Flow for Browser Clients", - "tags": [ - "frontend" - ] - } - }, - "/self-service/verification/flows": { - "get": { - "description": "This endpoint returns a verification flow's context with, for example, error details and other information.\n\nBrowser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.\nFor AJAX requests you must ensure that cookies are included in the request or requests will fail.\n\nIf you use the browser-flow for server-side apps, the services need to run on a common top-level-domain\nand you need to forward the incoming HTTP Cookie header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/recovery', async function (req, res) {\nconst flow = await client.getVerificationFlow(req.header('cookie'), req.query['flow'])\n\nres.render('verification', flow)\n})\n```\n\nMore information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).", - "operationId": "getVerificationFlow", - "parameters": [ - { - "description": "The Flow ID\n\nThe value for this parameter comes from `request` URL Query parameter sent to your\napplication (e.g. `/verification?flow=abcde`).", - "in": "query", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "HTTP Cookies\n\nWhen using the SDK on the server side you must include the HTTP Cookie Header\noriginally sent to your HTTP handler here.", - "in": "header", - "name": "cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/verificationFlow" - } - } - }, - "description": "verificationFlow" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get Verification Flow", - "tags": [ - "frontend" - ] - } - }, - "/sessions": { - "delete": { - "description": "Calling this endpoint invalidates all except the current session that belong to the logged-in user.\nSession data are not deleted.", - "operationId": "disableMyOtherSessions", - "parameters": [ - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/deleteMySessionsCount" - } - } - }, - "description": "deleteMySessionsCount" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Disable my other sessions", - "tags": [ - "frontend" - ] - }, - "get": { - "description": "This endpoints returns all other active sessions that belong to the logged-in user.\nThe current session can be retrieved by calling the `/sessions/whoami` endpoint.", - "operationId": "listMySessions", - "parameters": [ - { - "description": "Items per Page\n\nThis is the number of items per page.", - "in": "query", - "name": "per_page", - "schema": { - "default": 250, - "format": "int64", - "maximum": 1000, - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.", - "in": "query", - "name": "page", - "schema": { - "default": 1, - "format": "int64", - "minimum": 1, - "type": "integer" - } - }, - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "$ref": "#/components/responses/listMySessions" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Get My Active Sessions", - "tags": [ - "frontend" - ] - } - }, - "/sessions/token-exchange": { - "get": { - "operationId": "exchangeSessionToken", - "parameters": [ - { - "description": "The part of the code return when initializing the flow.", - "in": "query", - "name": "init_code", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "The part of the code returned by the return_to URL.", - "in": "query", - "name": "return_to_code", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/successfulNativeLogin" - } - } - }, - "description": "successfulNativeLogin" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "404": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "410": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Exchange Session Token", - "tags": [ - "frontend" - ] - } - }, - "/sessions/whoami": { - "get": { - "description": "Uses the HTTP Headers in the GET request to determine (e.g. by using checking the cookies) who is authenticated.\nReturns a session object in the body or 401 if the credentials are invalid or no credentials were sent.\nWhen the request it successful it adds the user ID to the 'X-Kratos-Authenticated-Identity-Id' header\nin the response.\n\nIf you call this endpoint from a server-side application, you must forward the HTTP Cookie Header to this endpoint:\n\n```js\npseudo-code example\nrouter.get('/protected-endpoint', async function (req, res) {\nconst session = await client.toSession(undefined, req.header('cookie'))\n\nconsole.log(session)\n})\n```\n\nWhen calling this endpoint from a non-browser application (e.g. mobile app) you must include the session token:\n\n```js\npseudo-code example\n...\nconst session = await client.toSession(\"the-session-token\")\n\nconsole.log(session)\n```\n\nDepending on your configuration this endpoint might return a 403 status code if the session has a lower Authenticator\nAssurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn\ncredentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user\nto sign in with the second factor or change the configuration.\n\nThis endpoint is useful for:\n\nAJAX calls. Remember to send credentials and set up CORS correctly!\nReverse proxies and API Gateways\nServer-side calls - use the `X-Session-Token` header!\n\nThis endpoint authenticates users by checking:\n\nif the `Cookie` HTTP header was set containing an Ory Kratos Session Cookie;\nif the `Authorization: bearer \u003cory-session-token\u003e` HTTP header was set with a valid Ory Kratos Session Token;\nif the `X-Session-Token` HTTP header was set with a valid Ory Kratos Session Token.\n\nIf none of these headers are set or the cookie or token are invalid, the endpoint returns a HTTP 401 status code.\n\nAs explained above, this request may fail due to several reasons. The `error.id` can be one of:\n\n`session_inactive`: No active session was found in the request (e.g. no Ory Session Cookie / Ory Session Token).\n`session_aal2_required`: An active session was found but it does not fulfil the Authenticator Assurance Level, implying that the session must (e.g.) authenticate the second factor.", - "operationId": "toSession", - "parameters": [ - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "example": "MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "example": "ory_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/session" - } - } - }, - "description": "session" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "403": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Check Who the Current HTTP Session Belongs To", - "tags": [ - "frontend" - ] - } - }, - "/sessions/{id}": { - "delete": { - "description": "Calling this endpoint invalidates the specified session. The current session cannot be revoked.\nSession data are not deleted.", - "operationId": "disableMySession", - "parameters": [ - { - "description": "ID is the session's ID.", - "in": "path", - "name": "id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Set the Session Token when calling from non-browser clients. A session token has a format of `MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj`.", - "in": "header", - "name": "X-Session-Token", - "schema": { - "type": "string" - } - }, - { - "description": "Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that\nscenario you must include the HTTP Cookie Header which originally was included in the request to your server.\nAn example of a session in the HTTP Cookie Header is: `ory_kratos_session=a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f==`.\n\nIt is ok if more than one cookie are included here as all other cookies will be ignored.", - "in": "header", - "name": "Cookie", - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "$ref": "#/components/responses/emptyResponse" - }, - "400": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "401": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorGeneric" - } - } - }, - "description": "errorGeneric" - } - }, - "summary": "Disable one of my sessions", - "tags": [ - "frontend" - ] - } - }, - "/userinfo": { - "get": { - "description": "This endpoint returns the payload of the ID Token, including `session.id_token` values, of\nthe provided OAuth 2.0 Access Token's consent request.\n\nIn the case of authentication error, a WWW-Authenticate header might be set in the response\nwith more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3)\nfor more details about header format.", - "operationId": "getOidcUserInfo", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oidcUserInfo" - } - } - }, - "description": "oidcUserInfo" - }, - "default": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/errorOAuth2" - } - } - }, - "description": "errorOAuth2" - } - }, - "security": [ - { - "oauth2": [] - } - ], - "summary": "OpenID Connect Userinfo", - "tags": [ - "oidc" - ] - } - }, - "/version": { - "get": { - "description": "This endpoint returns the version of Ory Kratos.\n\nIf the service supports TLS Edge Termination, this endpoint does not require the\n`X-Forwarded-Proto` header to be set.\n\nBe aware that if you are running multiple nodes of this service, the version will never\nrefer to the cluster state, only to a single instance.", - "operationId": "getVersion", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "version": { - "description": "The version of Ory Kratos.", - "type": "string" - } - }, - "required": [ - "version" - ], - "type": "object" - } - } - }, - "description": "Returns the Ory Kratos version." - } - }, - "security": [ - { - "oryAccessToken": [] - } - ], - "summary": "Return Running Software Version.", - "tags": [ - "metadata" - ] - } - } - }, - "servers": [ - { - "url": "https://{project}.projects.oryapis.com/", - "variables": { - "project": { - "default": "playground", - "description": "Project slug as provided by the Ory Console." - } - } - } - ], - "tags": [ - { - "description": "APIs for managing identities.", - "name": "identity" - }, - { - "description": "Endpoints used by frontend applications (e.g. Single-Page-App, Native Apps, Server Apps, ...) to manage a user's own profile.", - "name": "frontend" - }, - { - "description": "APIs for managing email and SMS message delivery.", - "name": "courier" - }, - { - "description": "Server Metadata provides relevant information about the running server. Only available when self-hosting this service.", - "name": "metadata" - } - ], - "x-forwarded-proto": "string", - "x-request-id": "string" -} +{"components":{"responses":{"emptyResponse":{"description":"Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is\ntypically 201."},"errorOAuth2BadRequest":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/errorOAuth2"}}},"description":"Bad Request Error Response"},"errorOAuth2Default":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/errorOAuth2"}}},"description":"Default Error Response"},"errorOAuth2NotFound":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/errorOAuth2"}}},"description":"Not Found Error Response"},"identitySchemas":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/identitySchemas"}}},"description":"List Identity JSON Schemas Response"},"listCourierMessages":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/message"},"type":"array"}}},"description":"Paginated Courier Message List Response"},"listIdentities":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/identity"},"type":"array"}}},"description":"Paginated Identity List Response"},"listIdentitySessions":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/session"},"type":"array"}}},"description":"List Identity Sessions Response"},"listMySessions":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/session"},"type":"array"}}},"description":"List My Session Response"},"listOAuth2Clients":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/oAuth2Client"},"type":"array"}}},"description":"Paginated OAuth2 Client List Response"},"listSessions":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/session"},"type":"array"}}},"description":"Session List Response\n\nThe response given when listing sessions in an administrative context."}},"schemas":{"CORS":{"properties":{"enabled":{"description":"Whether CORS is enabled for this endpoint.","type":"boolean"},"origins":{"description":"The allowed origins. Use `*` to allow all origins. A wildcard can also be used in the subdomain, i.e. `https://*.example.com` will allow all origins on all subdomains of `example.com`.","items":{"type":"string"},"type":"array"}},"required":["enabled","origins"],"type":"object"},"CreateInviteResponse":{"properties":{"all_invites":{"description":"A list of all invites for this resource","items":{"$ref":"#/components/schemas/memberInvite"},"type":"array"},"created_invite":{"$ref":"#/components/schemas/memberInvite"}},"required":["created_invite","all_invites"],"type":"object"},"CreateProjectMemberInviteBody":{"description":"Create Project MemberInvite Request Body","properties":{"invitee_email":{"description":"A email to invite","type":"string"}},"type":"object"},"CreateVerifiableCredentialRequestBody":{"properties":{"format":{"type":"string"},"proof":{"$ref":"#/components/schemas/VerifiableCredentialProof"},"types":{"items":{"type":"string"},"type":"array"}},"title":"CreateVerifiableCredentialRequestBody contains the request body to request a verifiable credential.","type":"object"},"CustomHostnameStatus":{"title":"CustomHostnameStatus is the enumeration of valid state values in the CustomHostnameSSL.","type":"string"},"DefaultError":{},"Duration":{"description":"A Duration represents the elapsed time between two instants\nas an int64 nanosecond count. The representation limits the\nlargest representable duration to approximately 290 years.","format":"int64","type":"integer"},"GenericUsage":{"properties":{"additional_price":{"description":"AdditionalPrice is the price per-unit exceeding IncludedUsage. A price of 0 means that no other items can be consumed.","format":"int64","type":"integer"},"included_usage":{"description":"IncludedUsage is the number of included items.","format":"int64","type":"integer"}},"required":["included_usage","additional_price"],"title":"GenericUsage is the generic usage type that can be used for any feature.","type":"object"},"ID":{"format":"int64","type":"integer"},"JSONRawMessage":{"title":"JSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger.","type":"object"},"KetoNamespace":{"properties":{"id":{"format":"int64","type":"integer"},"name":{"type":"string"}},"type":"object"},"KetoNamespaces":{"items":{"$ref":"#/components/schemas/KetoNamespace"},"type":"array"},"NullBool":{"nullable":true,"type":"boolean"},"NullDuration":{"nullable":true,"pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"NullInt":{"nullable":true,"type":"integer"},"NullString":{"nullable":true,"type":"string"},"NullTime":{"format":"date-time","nullable":true,"type":"string"},"NullUUID":{"format":"uuid4","nullable":true,"type":"string"},"ParseError":{"properties":{"end":{"$ref":"#/components/schemas/SourcePosition"},"message":{"type":"string"},"start":{"$ref":"#/components/schemas/SourcePosition"}},"type":"object"},"Plan":{"properties":{"name":{"description":"Name is the name of the plan.","type":"string"},"version":{"description":"Version is the version of the plan. The combination of `name@version` must be unique.","format":"int64","type":"integer"}},"required":["name","version"],"type":"object"},"PlanDetails":{"properties":{"base_fee_monthly":{"description":"BaseFeeMonthly is the monthly base fee for the plan.","format":"int64","type":"integer"},"base_fee_yearly":{"description":"BaseFeeYearly is the yearly base fee for the plan.","format":"int64","type":"integer"},"custom":{"description":"Custom is true if the plan is custom. This means it will be hidden from the pricing page.","type":"boolean"},"description":{"description":"Description is the description of the plan.","type":"string"},"features":{"additionalProperties":{"$ref":"#/components/schemas/GenericUsage"},"description":"Features are the feature definitions included in the plan.","type":"object"},"name":{"description":"Name is the name of the plan.","type":"string"},"version":{"description":"Version is the version of the plan. The combination of `name@version` must be unique.","format":"int64","type":"integer"}},"required":["name","version","description","custom","base_fee_monthly","base_fee_yearly","features"],"type":"object"},"Pricing":{"items":{"$ref":"#/components/schemas/PlanDetails"},"type":"array"},"RFC6749ErrorJson":{"properties":{"error":{"type":"string"},"error_debug":{"type":"string"},"error_description":{"type":"string"},"error_hint":{"type":"string"},"status_code":{"format":"int64","type":"integer"}},"title":"RFC6749ErrorJson is a helper struct for JSON encoding/decoding of RFC6749Error.","type":"object"},"RecoveryAddressType":{"title":"RecoveryAddressType must not exceed 16 characters as that is the limitation in the SQL Schema.","type":"string"},"SourcePosition":{"properties":{"Line":{"format":"int64","type":"integer"},"column":{"format":"int64","type":"integer"}},"type":"object"},"String":{"$ref":"#/components/schemas/NullString"},"StringSliceJSONFormat":{"items":{"type":"string"},"title":"StringSliceJSONFormat represents []string{} which is encoded to/from JSON for SQL storage.","type":"array"},"SubscriptionStatus":{"description":"For `collection_method=charge_automatically` a subscription moves into `incomplete` if the initial payment attempt fails. A subscription in this state can only have metadata and default_source updated. Once the first invoice is paid, the subscription moves into an `active` state. If the first invoice is not paid within 23 hours, the subscription transitions to `incomplete_expired`. This is a terminal state, the open invoice will be voided and no further invoices will be generated.\n\nA subscription that is currently in a trial period is `trialing` and moves to `active` when the trial period is over.\n\nIf subscription `collection_method=charge_automatically` it becomes `past_due` when payment to renew it fails and `canceled` or `unpaid` (depending on your subscriptions settings) when Stripe has exhausted all payment retry attempts.\n\nIf subscription `collection_method=send_invoice` it becomes `past_due` when its invoice is not paid by the due date, and `canceled` or `unpaid` if it is still not paid by an additional deadline after that. Note that when a subscription has a status of `unpaid`, no subsequent invoices will be attempted (invoices will be created, but then immediately automatically closed). After receiving updated payment information from a customer, you may choose to reopen and pay their closed invoices.","title":"Possible values are `incomplete`, `incomplete_expired`, `trialing`, `active`, `past_due`, `canceled`, or `unpaid`.","type":"string"},"Time":{"format":"date-time","type":"string"},"UUID":{"format":"uuid4","type":"string"},"Usage":{"properties":{"GenericUsage":{"$ref":"#/components/schemas/GenericUsage"}},"type":"object"},"VerifiableCredentialProof":{"properties":{"jwt":{"type":"string"},"proof_type":{"type":"string"}},"title":"VerifiableCredentialProof contains the proof of a verifiable credential.","type":"object"},"Warning":{"properties":{"code":{"format":"int64","type":"integer"},"message":{"type":"string"}},"type":"object"},"acceptOAuth2ConsentRequest":{"properties":{"grant_access_token_audience":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"grant_scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"handled_at":{"$ref":"#/components/schemas/nullTime"},"remember":{"description":"Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same\nclient asks the same user for the same, or a subset of, scope.","type":"boolean"},"remember_for":{"description":"RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the\nauthorization will be remembered indefinitely.","format":"int64","type":"integer"},"session":{"$ref":"#/components/schemas/acceptOAuth2ConsentRequestSession"}},"title":"The request payload used to accept a consent request.","type":"object"},"acceptOAuth2ConsentRequestSession":{"properties":{"access_token":{"description":"AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the\nrefresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection.\nIf only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties\ncan access that endpoint as well, sensitive data from the session might be exposed to them. Use with care!"},"id_token":{"description":"IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session'id payloads are readable\nby anyone that has access to the ID Challenge. Use with care!"}},"title":"Pass session data to a consent request.","type":"object"},"acceptOAuth2LoginRequest":{"properties":{"acr":{"description":"ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it\nto express that, for example, a user authenticated using two factor authentication.","type":"string"},"amr":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"context":{"$ref":"#/components/schemas/JSONRawMessage"},"extend_session_lifespan":{"description":"Extend OAuth2 authentication session lifespan\n\nIf set to `true`, the OAuth2 authentication cookie lifespan is extended. This is for example useful if you want the user to be able to use `prompt=none` continuously.\n\nThis value can only be set to `true` if the user has an authentication, which is the case if the `skip` value is `true`.","type":"boolean"},"force_subject_identifier":{"description":"ForceSubjectIdentifier forces the \"pairwise\" user ID of the end-user that authenticated. The \"pairwise\" user ID refers to the\n(Pairwise Identifier Algorithm)[http://openid.net/specs/openid-connect-core-1_0.html#PairwiseAlg] of the OpenID\nConnect specification. It allows you to set an obfuscated subject (\"user\") identifier that is unique to the client.\n\nPlease note that this changes the user ID on endpoint /userinfo and sub claim of the ID Token. It does not change the\nsub claim in the OAuth 2.0 Introspection.\n\nPer default, ORY Hydra handles this value with its own algorithm. In case you want to set this yourself\nyou can use this field. Please note that setting this field has no effect if `pairwise` is not configured in\nORY Hydra or the OAuth 2.0 Client does not expect a pairwise identifier (set via `subject_type` key in the client's\nconfiguration).\n\nPlease also be aware that ORY Hydra is unable to properly compute this value during authentication. This implies\nthat you have to compute this value on every authentication process (probably depending on the client ID or some\nother unique value).\n\nIf you fail to compute the proper value, then authentication processes which have id_token_hint set might fail.","type":"string"},"remember":{"description":"Remember, if set to true, tells ORY Hydra to remember this user by telling the user agent (browser) to store\na cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, he/she\nwill not be asked to log in again.","type":"boolean"},"remember_for":{"description":"RememberFor sets how long the authentication should be remembered for in seconds. If set to `0`, the\nauthorization will be remembered for the duration of the browser session (using a session cookie).","format":"int64","type":"integer"},"subject":{"description":"Subject is the user ID of the end-user that authenticated.","type":"string"}},"required":["subject"],"title":"HandledLoginRequest is the request payload used to accept a login request.","type":"object"},"activeProjectInConsole":{"description":"The Active Project ID","properties":{"project_id":{"description":"The Active Project ID\n\nformat: uuid","type":"string"}},"type":"object"},"authenticatorAssuranceLevel":{"description":"The authenticator assurance level can be one of \"aal1\", \"aal2\", or \"aal3\". A higher number means that it is harder\nfor an attacker to compromise the account.\n\nGenerally, \"aal1\" implies that one authentication factor was used while AAL2 implies that two factors (e.g.\npassword + TOTP) have been used.\n\nTo learn more about these levels please head over to: https://www.ory.sh/kratos/docs/concepts/credentials","enum":["aal0","aal1","aal2","aal3"],"title":"Authenticator Assurance Level (AAL)","type":"string"},"batchPatchIdentitiesResponse":{"description":"Patch identities response","properties":{"identities":{"description":"The patch responses for the individual identities.","items":{"$ref":"#/components/schemas/identityPatchResponse"},"type":"array"}},"type":"object"},"checkOplSyntaxBody":{"description":"Ory Permission Language Document","type":"string"},"checkOplSyntaxResult":{"properties":{"errors":{"description":"The list of syntax errors","items":{"$ref":"#/components/schemas/ParseError"},"type":"array"}},"title":"CheckOPLSyntaxResponse represents the response for an OPL syntax check request.","type":"object"},"checkPermissionResult":{"description":"The content of the allowed field is mirrored in the HTTP status code.","properties":{"allowed":{"description":"whether the relation tuple is allowed","type":"boolean"}},"required":["allowed"],"title":"Check Permission Result","type":"object"},"cloudAccount":{"properties":{"email":{"type":"string"},"id":{"format":"uuid","type":"string"},"name":{"type":"string"}},"type":"object"},"continueWith":{"discriminator":{"mapping":{"set_ory_session_token":"#/components/schemas/continueWithSetOrySessionToken","show_verification_ui":"#/components/schemas/continueWithVerificationUi"},"propertyName":"action"},"oneOf":[{"$ref":"#/components/schemas/continueWithVerificationUi"},{"$ref":"#/components/schemas/continueWithSetOrySessionToken"}]},"continueWithSetOrySessionToken":{"description":"Indicates that a session was issued, and the application should use this token for authenticated requests","properties":{"action":{"description":"Action will always be `set_ory_session_token`\nset_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI","enum":["set_ory_session_token","show_verification_ui"],"type":"string","x-go-enum-desc":"set_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI"},"ory_session_token":{"description":"Token is the token of the session","type":"string"}},"required":["action","ory_session_token"],"type":"object"},"continueWithVerificationUi":{"description":"Indicates, that the UI flow could be continued by showing a verification ui","properties":{"action":{"description":"Action will always be `show_verification_ui`\nset_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI","enum":["set_ory_session_token","show_verification_ui"],"type":"string","x-go-enum-desc":"set_ory_session_token ContinueWithActionSetOrySessionToken\nshow_verification_ui ContinueWithActionShowVerificationUI"},"flow":{"$ref":"#/components/schemas/continueWithVerificationUiFlow"}},"required":["action","flow"],"type":"object"},"continueWithVerificationUiFlow":{"properties":{"id":{"description":"The ID of the verification flow","format":"uuid","type":"string"},"url":{"description":"The URL of the verification flow","type":"string"},"verifiable_address":{"description":"The address that should be verified in this flow","type":"string"}},"required":["id","verifiable_address"],"type":"object"},"courierMessageStatus":{"description":"A Message's Status","enum":["queued","sent","processing","abandoned"],"type":"string"},"courierMessageType":{"description":"It can either be `email` or `phone`","enum":["email","phone"],"title":"A Message's Type","type":"string"},"createCustomDomainBody":{"description":"Create Custom Hostname Request Body","properties":{"cookie_domain":{"description":"The domain where cookies will be set. Has to be a parent domain of the custom hostname to work.","type":"string"},"cors_allowed_origins":{"description":"CORS Allowed origins for the custom hostname.","items":{"type":"string"},"type":"array"},"cors_enabled":{"description":"CORS Enabled for the custom hostname.","type":"boolean"},"custom_ui_base_url":{"description":"The base URL where the custom user interface will be exposed.","type":"string"},"hostname":{"description":"The custom hostname where the API will be exposed.","type":"string"}},"type":"object"},"createIdentityBody":{"description":"Create Identity Body","properties":{"credentials":{"$ref":"#/components/schemas/identityWithCredentials"},"metadata_admin":{"description":"Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/`."},"metadata_public":{"description":"Store metadata about the identity which the identity itself can see when calling for example the\nsession endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field."},"recovery_addresses":{"description":"RecoveryAddresses contains all the addresses that can be used to recover an identity.\n\nUse this structure to import recovery addresses for an identity. Please keep in mind\nthat the address needs to be represented in the Identity Schema or this field will be overwritten\non the next identity update.","items":{"$ref":"#/components/schemas/recoveryIdentityAddress"},"type":"array"},"schema_id":{"description":"SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.","type":"string"},"state":{"$ref":"#/components/schemas/identityState"},"traits":{"description":"Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_url`.","type":"object"},"verifiable_addresses":{"description":"VerifiableAddresses contains all the addresses that can be verified by the user.\n\nUse this structure to import verified addresses for an identity. Please keep in mind\nthat the address needs to be represented in the Identity Schema or this field will be overwritten\non the next identity update.","items":{"$ref":"#/components/schemas/verifiableIdentityAddress"},"type":"array"}},"required":["schema_id","traits"],"type":"object"},"createJsonWebKeySet":{"description":"Create JSON Web Key Set Request Body","properties":{"alg":{"description":"JSON Web Key Algorithm\n\nThe algorithm to be used for creating the key. Supports `RS256`, `ES256`, `ES512`, `HS512`, and `HS256`.","type":"string"},"kid":{"description":"JSON Web Key ID\n\nThe Key ID of the key to be created.","type":"string"},"use":{"description":"JSON Web Key Use\n\nThe \"use\" (public key use) parameter identifies the intended use of\nthe public key. The \"use\" parameter is employed to indicate whether\na public key is used for encrypting data or verifying the signature\non data. Valid values are \"enc\" and \"sig\".","type":"string"}},"required":["alg","use","kid"],"type":"object"},"createProjectBody":{"description":"Create Project Request Body","properties":{"name":{"description":"The name of the project to be created","type":"string"}},"required":["name"],"type":"object"},"createProjectBranding":{"description":"Create a Project Branding","properties":{"logo_type":{"type":"string"},"logo_url":{"type":"string"},"name":{"type":"string"},"theme":{"$ref":"#/components/schemas/projectBrandingColors"}},"type":"object"},"createProjectMemberInviteResponse":{"$ref":"#/components/schemas/CreateInviteResponse"},"createRecoveryCodeForIdentityBody":{"description":"Create Recovery Code for Identity Request Body","properties":{"expires_in":{"description":"Code Expires In\n\nThe recovery code will expire after that amount of time has passed. Defaults to the configuration value of\n`selfservice.methods.code.config.lifespan`.","pattern":"^([0-9]+(ns|us|ms|s|m|h))*$","type":"string"},"identity_id":{"description":"Identity to Recover\n\nThe identity's ID you wish to recover.","format":"uuid","type":"string"}},"required":["identity_id"],"type":"object"},"createRecoveryLinkForIdentityBody":{"description":"Create Recovery Link for Identity Request Body","properties":{"expires_in":{"description":"Link Expires In\n\nThe recovery link will expire after that amount of time has passed. Defaults to the configuration value of\n`selfservice.methods.code.config.lifespan`.","pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"identity_id":{"description":"Identity to Recover\n\nThe identity's ID you wish to recover.","format":"uuid","type":"string"}},"required":["identity_id"],"type":"object"},"createRelationshipBody":{"description":"Create Relationship Request Body","properties":{"namespace":{"description":"Namespace to query","type":"string"},"object":{"description":"Object to query","type":"string"},"relation":{"description":"Relation to query","type":"string"},"subject_id":{"description":"SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.","type":"string"},"subject_set":{"$ref":"#/components/schemas/subjectSet"}},"type":"object"},"createSubscriptionBody":{"description":"Create Subscription Request Body","properties":{"currency":{"description":"\nusd USD\neur Euro","enum":["usd","eur"],"type":"string","x-go-enum-desc":"usd USD\neur Euro"},"interval":{"description":"\nmonthly Monthly\nyearly Yearly","enum":["monthly","yearly"],"type":"string","x-go-enum-desc":"monthly Monthly\nyearly Yearly"},"plan":{"type":"string"},"provision_first_project":{"format":"uuid","type":"string"},"return_to":{"type":"string"}},"required":["plan","interval","provision_first_project"],"type":"object"},"credentialSupportedDraft00":{"description":"Includes information about the supported verifiable credentials.","properties":{"cryptographic_binding_methods_supported":{"description":"OpenID Connect Verifiable Credentials Cryptographic Binding Methods Supported\n\nContains a list of cryptographic binding methods supported for signing the proof.","items":{"type":"string"},"type":"array"},"cryptographic_suites_supported":{"description":"OpenID Connect Verifiable Credentials Cryptographic Suites Supported\n\nContains a list of cryptographic suites methods supported for signing the proof.","items":{"type":"string"},"type":"array"},"format":{"description":"OpenID Connect Verifiable Credentials Format\n\nContains the format that is supported by this authorization server.","type":"string"},"types":{"description":"OpenID Connect Verifiable Credentials Types\n\nContains the types of verifiable credentials supported.","items":{"type":"string"},"type":"array"}},"title":"Verifiable Credentials Metadata (Draft 00)","type":"object"},"customDomain":{"description":"Custom Hostname","properties":{"cookie_domain":{"type":"string"},"cors_allowed_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"cors_enabled":{"type":"boolean"},"created_at":{"format":"date-time","type":"string"},"custom_ui_base_url":{"type":"string"},"hostname":{"type":"string"},"id":{"format":"uuid","type":"string"},"ssl_status":{"enum":["initializing","pending_validation","deleted","pending_issuance","pending_deployment","pending_deletion","pending_expiration","expired","active","initializing_timed_out","validation_timed_out","issuance_timed_out","deployment_timed_out","deletion_timed_out","pending_cleanup","staging_deployment","staging_active","deactivating","inactive","backup_issued","holding_deployment",""],"type":"string","x-go-enum-desc":"initializing initializing\npending_validation pending_validation\ndeleted deleted\npending_issuance pending_issuance\npending_deployment pending_deployment\npending_deletion pending_deletion\npending_expiration pending_expiration\nexpired expired\nactive active\ninitializing_timed_out initializing_timed_out\nvalidation_timed_out validation_timed_out\nissuance_timed_out issuance_timed_out\ndeployment_timed_out deployment_timed_out\ndeletion_timed_out deletion_timed_out\npending_cleanup pending_cleanup\nstaging_deployment staging_deployment\nstaging_active staging_active\ndeactivating deactivating\ninactive inactive\nbackup_issued backup_issued\nholding_deployment holding_deployment\n unknown Cloudflare sometimes returns an empty string."},"updated_at":{"format":"date-time","type":"string"},"verification_errors":{"items":{"type":"string"},"type":"array"},"verification_status":{"$ref":"#/components/schemas/CustomHostnameStatus"}},"type":"object"},"deleteMySessionsCount":{"description":"Deleted Session Count","properties":{"count":{"description":"The number of sessions that were revoked.","format":"int64","type":"integer"}},"type":"object"},"emailTemplateData":{"description":"Contains the data of the email template, including the subject and body in HTML and plaintext variants","properties":{"body":{"$ref":"#/components/schemas/emailTemplateDataBody"},"subject":{"type":"string"}},"required":["body","subject"],"type":"object"},"emailTemplateDataBody":{"properties":{"html":{"type":"string"},"plaintext":{"type":"string"}},"required":["html","plaintext"],"type":"object"},"errorAuthenticatorAssuranceLevelNotSatisfied":{"properties":{"error":{"$ref":"#/components/schemas/genericError"},"redirect_browser_to":{"description":"Points to where to redirect the user to next.","type":"string"}},"title":"Is returned when an active session was found but the requested AAL is not satisfied.","type":"object"},"errorBrowserLocationChangeRequired":{"properties":{"error":{"$ref":"#/components/schemas/errorGeneric"},"redirect_browser_to":{"description":"Points to where to redirect the user to next.","type":"string"}},"title":"Is sent when a flow requires a browser to change its location.","type":"object"},"errorFlowReplaced":{"description":"Is sent when a flow is replaced by a different flow of the same class","properties":{"error":{"$ref":"#/components/schemas/genericError"},"use_flow_id":{"description":"The flow ID that should be used for the new flow as it contains the correct messages.","format":"uuid","type":"string"}},"type":"object"},"errorGeneric":{"description":"The standard Ory JSON API error format.","properties":{"error":{"$ref":"#/components/schemas/genericErrorContent"}},"required":["error"],"title":"JSON API Error Response","type":"object"},"errorOAuth2":{"description":"Error","properties":{"error":{"description":"Error","type":"string"},"error_debug":{"description":"Error Debug Information\n\nOnly available in dev mode.","type":"string"},"error_description":{"description":"Error Description","type":"string"},"error_hint":{"description":"Error Hint\n\nHelps the user identify the error cause.","example":"The redirect URL is not allowed.","type":"string"},"status_code":{"description":"HTTP Status Code","example":401,"format":"int64","type":"integer"}},"type":"object"},"expandedPermissionTree":{"properties":{"children":{"description":"The children of the node, possibly none.","items":{"$ref":"#/components/schemas/expandedPermissionTree"},"type":"array"},"tuple":{"$ref":"#/components/schemas/relationship"},"type":{"description":"The type of the node.\nunion TreeNodeUnion\nexclusion TreeNodeExclusion\nintersection TreeNodeIntersection\nleaf TreeNodeLeaf\ntuple_to_subject_set TreeNodeTupleToSubjectSet\ncomputed_subject_set TreeNodeComputedSubjectSet\nnot TreeNodeNot\nunspecified TreeNodeUnspecified","enum":["union","exclusion","intersection","leaf","tuple_to_subject_set","computed_subject_set","not","unspecified"],"type":"string","x-go-enum-desc":"union TreeNodeUnion\nexclusion TreeNodeExclusion\nintersection TreeNodeIntersection\nleaf TreeNodeLeaf\ntuple_to_subject_set TreeNodeTupleToSubjectSet\ncomputed_subject_set TreeNodeComputedSubjectSet\nnot TreeNodeNot\nunspecified TreeNodeUnspecified"}},"required":["type"],"type":"object"},"flowError":{"properties":{"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"error":{"type":"object"},"id":{"description":"ID of the error container.","format":"uuid","type":"string"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"}},"required":["id"],"type":"object"},"genericError":{"description":"Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.","properties":{"code":{"description":"The status code","example":404,"format":"int64","type":"integer"},"debug":{"description":"Debug information\n\nThis field is often not exposed to protect against leaking\nsensitive information.","example":"SQL field \"foo\" is not a bool.","type":"string"},"details":{"description":"Further error details"},"error":{"$ref":"#/components/schemas/genericErrorContent"},"id":{"description":"The error ID\n\nUseful when trying to identify various errors in application logic.","type":"string"},"message":{"description":"Error message\n\nThe error's message.","example":"The resource could not be found","type":"string"},"reason":{"description":"A human-readable reason for the error","example":"User with ID 1234 does not exist.","type":"string"},"request":{"description":"The request ID\n\nThe request ID is often exposed internally in order to trace\nerrors across service architectures. This is often a UUID.","example":"d7ef54b1-ec15-46e6-bccb-524b82c035e6","type":"string"},"status":{"description":"The status description","example":"Not Found","type":"string"}},"required":["message"],"title":"Error response","type":"object"},"genericErrorContent":{"description":"Error response","properties":{"debug":{"description":"Debug contains debug information. This is usually not available and has to be enabled.","example":"The database adapter was unable to find the element","type":"string"},"error":{"description":"Name is the error name.","example":"The requested resource could not be found","type":"string"},"error_description":{"description":"Description contains further information on the nature of the error.","example":"Object with ID 12345 does not exist","type":"string"},"message":{"description":"Message contains the error message.","type":"string"},"status_code":{"description":"Code represents the error status code (404, 403, 401, ...).","example":404,"format":"int64","type":"integer"}},"type":"object"},"getManagedIdentitySchemaLocation":{"description":"Ory Identity Schema Location","properties":{"location":{"type":"string"}},"type":"object"},"getProjectMetricsResponse":{"description":"Response of the getMetrics endpoint","properties":{"data":{"description":"The list of data points.","items":{"$ref":"#/components/schemas/metricsDatapoint"},"readOnly":true,"type":"array"}},"required":["data"],"type":"object"},"healthNotReadyStatus":{"properties":{"errors":{"additionalProperties":{"type":"string"},"description":"Errors contains a list of errors that caused the not ready status.","type":"object"}},"type":"object"},"healthStatus":{"properties":{"status":{"description":"Status always contains \"ok\".","type":"string"}},"type":"object"},"identity":{"description":"An [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) represents a (human) user in Ory.","properties":{"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"credentials":{"additionalProperties":{"$ref":"#/components/schemas/identityCredentials"},"description":"Credentials represents all credentials that can be used for authenticating this identity.","type":"object"},"id":{"description":"ID is the identity's unique identifier.\n\nThe Identity ID can not be changed and can not be chosen. This ensures future\ncompatibility and optimization for distributed stores such as CockroachDB.","format":"uuid","type":"string"},"metadata_admin":{"$ref":"#/components/schemas/nullJsonRawMessage"},"metadata_public":{"$ref":"#/components/schemas/nullJsonRawMessage"},"recovery_addresses":{"description":"RecoveryAddresses contains all the addresses that can be used to recover an identity.","items":{"$ref":"#/components/schemas/recoveryIdentityAddress"},"type":"array","x-omitempty":true},"schema_id":{"description":"SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.","type":"string"},"schema_url":{"description":"SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from.\n\nformat: url","type":"string"},"state":{"$ref":"#/components/schemas/identityState"},"state_changed_at":{"$ref":"#/components/schemas/nullTime"},"traits":{"$ref":"#/components/schemas/identityTraits"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"verifiable_addresses":{"description":"VerifiableAddresses contains all the addresses that can be verified by the user.","items":{"$ref":"#/components/schemas/verifiableIdentityAddress"},"type":"array","x-omitempty":true}},"required":["id","schema_id","schema_url","traits"],"title":"Identity represents an Ory Kratos identity","type":"object"},"identityCredentials":{"description":"Credentials represents a specific credential type","properties":{"config":{"$ref":"#/components/schemas/JSONRawMessage"},"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"identifiers":{"description":"Identifiers represents a list of unique identifiers this credential type matches.","items":{"type":"string"},"type":"array"},"type":{"$ref":"#/components/schemas/identityCredentialsType"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"version":{"description":"Version refers to the version of the credential. Useful when changing the config schema.","format":"int64","type":"integer"}},"type":"object"},"identityCredentialsOidc":{"properties":{"providers":{"items":{"$ref":"#/components/schemas/identityCredentialsOidcProvider"},"type":"array"}},"title":"CredentialsOIDC is contains the configuration for credentials of the type oidc.","type":"object"},"identityCredentialsOidcProvider":{"properties":{"initial_access_token":{"type":"string"},"initial_id_token":{"type":"string"},"initial_refresh_token":{"type":"string"},"provider":{"type":"string"},"subject":{"type":"string"}},"title":"CredentialsOIDCProvider is contains a specific OpenID COnnect credential for a particular connection (e.g. Google).","type":"object"},"identityCredentialsPassword":{"properties":{"hashed_password":{"description":"HashedPassword is a hash-representation of the password.","type":"string"}},"title":"CredentialsPassword is contains the configuration for credentials of the type password.","type":"object"},"identityCredentialsType":{"description":"and so on.","enum":["password","totp","oidc","webauthn","lookup_secret"],"title":"CredentialsType represents several different credential types, like password credentials, passwordless credentials,","type":"string"},"identityMetaSchema":{"description":"Identity Meta Schema","type":"object"},"identityPatch":{"description":"Payload for patching an identity","properties":{"create":{"$ref":"#/components/schemas/createIdentityBody"},"patch_id":{"description":"The ID of this patch.\n\nThe patch ID is optional. If specified, the ID will be returned in the\nresponse, so consumers of this API can correlate the response with the\npatch.","format":"uuid","type":"string"}},"type":"object"},"identityPatchResponse":{"description":"Response for a single identity patch","properties":{"action":{"description":"The action for this specific patch\ncreate ActionCreate Create this identity.","enum":["create"],"type":"string","x-go-enum-desc":"create ActionCreate Create this identity."},"identity":{"description":"The identity ID payload of this patch","format":"uuid","type":"string"},"patch_id":{"description":"The ID of this patch response, if an ID was specified in the patch.","format":"uuid","type":"string"}},"type":"object"},"identitySchema":{"description":"Raw JSON Schema","type":"object"},"identitySchemaContainer":{"description":"An Identity JSON Schema Container","properties":{"id":{"description":"The ID of the Identity JSON Schema","type":"string"},"schema":{"description":"The actual Identity JSON Schema","type":"object"}},"type":"object"},"identitySchemaPreset":{"properties":{"schema":{"description":"Schema is the Identity JSON Schema","type":"object"},"url":{"description":"URL is the preset identifier","type":"string"}},"required":["url","schema"],"type":"object"},"identitySchemaPresets":{"items":{"$ref":"#/components/schemas/identitySchemaPreset"},"type":"array"},"identitySchemas":{"description":"List of Identity JSON Schemas","items":{"$ref":"#/components/schemas/identitySchemaContainer"},"type":"array"},"identityState":{"description":"The state can either be `active` or `inactive`.","enum":["active","inactive"],"title":"An Identity's State","type":"string"},"identityTraits":{"description":"Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_url`."},"identityVerifiableAddressStatus":{"description":"VerifiableAddressStatus must not exceed 16 characters as that is the limitation in the SQL Schema","type":"string"},"identityVerifiableAddressType":{"description":"VerifiableAddressType must not exceed 16 characters as that is the limitation in the SQL Schema","type":"string"},"identityWithCredentials":{"description":"Create Identity and Import Credentials","properties":{"oidc":{"$ref":"#/components/schemas/identityWithCredentialsOidc"},"password":{"$ref":"#/components/schemas/identityWithCredentialsPassword"}},"type":"object"},"identityWithCredentialsOidc":{"description":"Create Identity and Import Social Sign In Credentials","properties":{"config":{"$ref":"#/components/schemas/identityWithCredentialsOidcConfig"}},"type":"object"},"identityWithCredentialsOidcConfig":{"properties":{"config":{"$ref":"#/components/schemas/identityWithCredentialsPasswordConfig"},"providers":{"description":"A list of OpenID Connect Providers","items":{"$ref":"#/components/schemas/identityWithCredentialsOidcConfigProvider"},"type":"array"}},"type":"object"},"identityWithCredentialsOidcConfigProvider":{"description":"Create Identity and Import Social Sign In Credentials Configuration","properties":{"provider":{"description":"The OpenID Connect provider to link the subject to. Usually something like `google` or `github`.","type":"string"},"subject":{"description":"The subject (`sub`) of the OpenID Connect connection. Usually the `sub` field of the ID Token.","type":"string"}},"required":["subject","provider"],"type":"object"},"identityWithCredentialsPassword":{"description":"Create Identity and Import Password Credentials","properties":{"config":{"$ref":"#/components/schemas/identityWithCredentialsPasswordConfig"}},"type":"object"},"identityWithCredentialsPasswordConfig":{"description":"Create Identity and Import Password Credentials Configuration","properties":{"hashed_password":{"description":"The hashed password in [PHC format]( https://www.ory.sh/docs/kratos/concepts/credentials/username-email-password#hashed-password-format)","type":"string"},"password":{"description":"The password in plain text if no hash is available.","type":"string"}},"type":"object"},"internalGetProjectBrandingBody":{"description":"Get Project Branding Request Body","properties":{"hostname":{"type":"string"}},"type":"object"},"internalIsAXWelcomeScreenEnabledForProjectBody":{"description":"Is Account Experience Enabled For Project Request Body","properties":{"path":{"description":"Path is the path of the request.","type":"string"},"project_slug":{"description":"ProjectSlug is the project's slug.","type":"string"}},"required":["project_slug","path"],"type":"object"},"internalIsOwnerForProjectBySlugBody":{"description":"Is Owner For Project By Slug Request Body","properties":{"namespace":{"description":"Namespace is the namespace of the subject.","enum":["User"," ApiKey"],"type":"string"},"project_scope":{"description":"ProjectScope is the project_id resolved from the\nAPI Token.","type":"string"},"project_slug":{"description":"ProjectSlug is the project's slug.","type":"string"},"subject":{"description":"Subject is the subject acting (user or API key).","type":"string"}},"required":["subject","namespace","project_slug"],"type":"object"},"internalIsOwnerForProjectBySlugResponse":{"properties":{"project_id":{"description":"ProjectID is the project's ID.","type":"string"}},"required":["project_id"],"type":"object"},"internalProvisionMockSubscription":{"description":"Internal Provision Mock Subscription Request Body","properties":{"currency":{"description":"Currency\nusd USD\neur Euro","enum":["usd","eur"],"type":"string","x-go-enum-desc":"usd USD\neur Euro"},"identity_id":{"description":"Identity ID","format":"uuid","type":"string"},"interval":{"description":"Billing Interval\nmonthly Monthly\nyearly Yearly","enum":["monthly","yearly"],"type":"string","x-go-enum-desc":"monthly Monthly\nyearly Yearly"},"plan":{"description":"Plan ID","type":"string"}},"required":["plan","interval","identity_id","currency"],"type":"object"},"introspectedOAuth2Token":{"description":"Introspection contains an access token's session data as specified by\n[IETF RFC 7662](https://tools.ietf.org/html/rfc7662)","properties":{"active":{"description":"Active is a boolean indicator of whether or not the presented token\nis currently active. The specifics of a token's \"active\" state\nwill vary depending on the implementation of the authorization\nserver and the information it keeps about its tokens, but a \"true\"\nvalue return for the \"active\" property will generally indicate\nthat a given token has been issued by this authorization server,\nhas not been revoked by the resource owner, and is within its\ngiven time window of validity (e.g., after its issuance time and\nbefore its expiration time).","type":"boolean"},"aud":{"description":"Audience contains a list of the token's intended audiences.","items":{"type":"string"},"type":"array"},"client_id":{"description":"ID is aclient identifier for the OAuth 2.0 client that\nrequested this token.","type":"string"},"exp":{"description":"Expires at is an integer timestamp, measured in the number of seconds\nsince January 1 1970 UTC, indicating when this token will expire.","format":"int64","type":"integer"},"ext":{"additionalProperties":{},"description":"Extra is arbitrary data set by the session.","type":"object"},"iat":{"description":"Issued at is an integer timestamp, measured in the number of seconds\nsince January 1 1970 UTC, indicating when this token was\noriginally issued.","format":"int64","type":"integer"},"iss":{"description":"IssuerURL is a string representing the issuer of this token","type":"string"},"nbf":{"description":"NotBefore is an integer timestamp, measured in the number of seconds\nsince January 1 1970 UTC, indicating when this token is not to be\nused before.","format":"int64","type":"integer"},"obfuscated_subject":{"description":"ObfuscatedSubject is set when the subject identifier algorithm was set to \"pairwise\" during authorization.\nIt is the `sub` value of the ID Token that was issued.","type":"string"},"scope":{"description":"Scope is a JSON string containing a space-separated list of\nscopes associated with this token.","type":"string"},"sub":{"description":"Subject of the token, as defined in JWT [RFC7519].\nUsually a machine-readable identifier of the resource owner who\nauthorized this token.","type":"string"},"token_type":{"description":"TokenType is the introspected token's type, typically `Bearer`.","type":"string"},"token_use":{"description":"TokenUse is the introspected token's use, for example `access_token` or `refresh_token`.","type":"string"},"username":{"description":"Username is a human-readable identifier for the resource owner who\nauthorized this token.","type":"string"}},"required":["active"],"type":"object"},"isOwnerForProjectBySlug":{"properties":{"ProjectSlug":{"description":"ProjectSlug is the project's slug.","type":"string"},"Subject":{"description":"Subject is the subject from the API Token.","type":"string"}},"required":["Subject","ProjectSlug"],"type":"object"},"jsonPatch":{"description":"A JSONPatch document as defined by RFC 6902","properties":{"from":{"description":"This field is used together with operation \"move\" and uses JSON Pointer notation.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).","example":"/name","type":"string"},"op":{"description":"The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".","enum":["add","remove","replace","move","copy","test"],"example":"replace","type":"string"},"path":{"description":"The path to the target path. Uses JSON pointer notation.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).","example":"/name","type":"string"},"value":{"description":"The value to be used within the operations.\n\nLearn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).","example":"foobar"}},"required":["op","path"],"type":"object"},"jsonPatchDocument":{"description":"A JSONPatchDocument request","items":{"$ref":"#/components/schemas/jsonPatch"},"type":"array"},"jsonWebKey":{"properties":{"alg":{"description":"The \"alg\" (algorithm) parameter identifies the algorithm intended for\nuse with the key. The values used should either be registered in the\nIANA \"JSON Web Signature and Encryption Algorithms\" registry\nestablished by [JWA] or be a value that contains a Collision-\nResistant Name.","example":"RS256","type":"string"},"crv":{"example":"P-256","type":"string"},"d":{"example":"T_N8I-6He3M8a7X1vWt6TGIx4xB_GP3Mb4SsZSA4v-orvJzzRiQhLlRR81naWYxfQAYt5isDI6_C2L9bdWo4FFPjGQFvNoRX-_sBJyBI_rl-TBgsZYoUlAj3J92WmY2inbA-PwyJfsaIIDceYBC-eX-xiCu6qMqkZi3MwQAFL6bMdPEM0z4JBcwFT3VdiWAIRUuACWQwrXMq672x7fMuaIaHi7XDGgt1ith23CLfaREmJku9PQcchbt_uEY-hqrFY6ntTtS4paWWQj86xLL94S-Tf6v6xkL918PfLSOTq6XCzxvlFwzBJqApnAhbwqLjpPhgUG04EDRrqrSBc5Y1BLevn6Ip5h1AhessBp3wLkQgz_roeckt-ybvzKTjESMuagnpqLvOT7Y9veIug2MwPJZI2VjczRc1vzMs25XrFQ8DpUy-bNdp89TmvAXwctUMiJdgHloJw23Cv03gIUAkDnsTqZmkpbIf-crpgNKFmQP_EDKoe8p_PXZZgfbRri3NoEVGP7Mk6yEu8LjJhClhZaBNjuWw2-KlBfOA3g79mhfBnkInee5KO9mGR50qPk1V-MorUYNTFMZIm0kFE6eYVWFBwJHLKYhHU34DoiK1VP-svZpC2uAMFNA_UJEwM9CQ2b8qe4-5e9aywMvwcuArRkAB5mBIfOaOJao3mfukKAE","type":"string"},"dp":{"example":"G4sPXkc6Ya9y8oJW9_ILj4xuppu0lzi_H7VTkS8xj5SdX3coE0oimYwxIi2emTAue0UOa5dpgFGyBJ4c8tQ2VF402XRugKDTP8akYhFo5tAA77Qe_NmtuYZc3C3m3I24G2GvR5sSDxUyAN2zq8Lfn9EUms6rY3Ob8YeiKkTiBj0","type":"string"},"dq":{"example":"s9lAH9fggBsoFR8Oac2R_E2gw282rT2kGOAhvIllETE1efrA6huUUvMfBcMpn8lqeW6vzznYY5SSQF7pMdC_agI3nG8Ibp1BUb0JUiraRNqUfLhcQb_d9GF4Dh7e74WbRsobRonujTYN1xCaP6TO61jvWrX-L18txXw494Q_cgk","type":"string"},"e":{"example":"AQAB","type":"string"},"k":{"example":"GawgguFyGrWKav7AX4VKUg","type":"string"},"kid":{"description":"The \"kid\" (key ID) parameter is used to match a specific key. This\nis used, for instance, to choose among a set of keys within a JWK Set\nduring key rollover. The structure of the \"kid\" value is\nunspecified. When \"kid\" values are used within a JWK Set, different\nkeys within the JWK Set SHOULD use distinct \"kid\" values. (One\nexample in which different keys might use the same \"kid\" value is if\nthey have different \"kty\" (key type) values but are considered to be\nequivalent alternatives by the application using them.) The \"kid\"\nvalue is a case-sensitive string.","example":"1603dfe0af8f4596","type":"string"},"kty":{"description":"The \"kty\" (key type) parameter identifies the cryptographic algorithm\nfamily used with the key, such as \"RSA\" or \"EC\". \"kty\" values should\neither be registered in the IANA \"JSON Web Key Types\" registry\nestablished by [JWA] or be a value that contains a Collision-\nResistant Name. The \"kty\" value is a case-sensitive string.","example":"RSA","type":"string"},"n":{"example":"vTqrxUyQPl_20aqf5kXHwDZrel-KovIp8s7ewJod2EXHl8tWlRB3_Rem34KwBfqlKQGp1nqah-51H4Jzruqe0cFP58hPEIt6WqrvnmJCXxnNuIB53iX_uUUXXHDHBeaPCSRoNJzNysjoJ30TIUsKBiirhBa7f235PXbKiHducLevV6PcKxJ5cY8zO286qJLBWSPm-OIevwqsIsSIH44Qtm9sioFikhkbLwoqwWORGAY0nl6XvVOlhADdLjBSqSAeT1FPuCDCnXwzCDR8N9IFB_IjdStFkC-rVt2K5BYfPd0c3yFp_vHR15eRd0zJ8XQ7woBC8Vnsac6Et1pKS59pX6256DPWu8UDdEOolKAPgcd_g2NpA76cAaF_jcT80j9KrEzw8Tv0nJBGesuCjPNjGs_KzdkWTUXt23Hn9QJsdc1MZuaW0iqXBepHYfYoqNelzVte117t4BwVp0kUM6we0IqyXClaZgOI8S-WDBw2_Ovdm8e5NmhYAblEVoygcX8Y46oH6bKiaCQfKCFDMcRgChme7AoE1yZZYsPbaG_3IjPrC4LBMHQw8rM9dWjJ8ImjicvZ1pAm0dx-KHCP3y5PVKrxBDf1zSOsBRkOSjB8TPODnJMz6-jd5hTtZxpZPwPoIdCanTZ3ZD6uRBpTmDwtpRGm63UQs1m5FWPwb0T2IF0","type":"string"},"p":{"example":"6NbkXwDWUhi-eR55Cgbf27FkQDDWIamOaDr0rj1q0f1fFEz1W5A_09YvG09Fiv1AO2-D8Rl8gS1Vkz2i0zCSqnyy8A025XOcRviOMK7nIxE4OH_PEsko8dtIrb3TmE2hUXvCkmzw9EsTF1LQBOGC6iusLTXepIC1x9ukCKFZQvdgtEObQ5kzd9Nhq-cdqmSeMVLoxPLd1blviVT9Vm8-y12CtYpeJHOaIDtVPLlBhJiBoPKWg3vxSm4XxIliNOefqegIlsmTIa3MpS6WWlCK3yHhat0Q-rRxDxdyiVdG_wzJvp0Iw_2wms7pe-PgNPYvUWH9JphWP5K38YqEBiJFXQ","type":"string"},"q":{"example":"0A1FmpOWR91_RAWpqreWSavNaZb9nXeKiBo0DQGBz32DbqKqQ8S4aBJmbRhJcctjCLjain-ivut477tAUMmzJwVJDDq2MZFwC9Q-4VYZmFU4HJityQuSzHYe64RjN-E_NQ02TWhG3QGW6roq6c57c99rrUsETwJJiwS8M5p15Miuz53DaOjv-uqqFAFfywN5WkxHbraBcjHtMiQuyQbQqkCFh-oanHkwYNeytsNhTu2mQmwR5DR2roZ2nPiFjC6nsdk-A7E3S3wMzYYFw7jvbWWoYWo9vB40_MY2Y0FYQSqcDzcBIcq_0tnnasf3VW4Fdx6m80RzOb2Fsnln7vKXAQ","type":"string"},"qi":{"example":"GyM_p6JrXySiz1toFgKbWV-JdI3jQ4ypu9rbMWx3rQJBfmt0FoYzgUIZEVFEcOqwemRN81zoDAaa-Bk0KWNGDjJHZDdDmFhW3AN7lI-puxk_mHZGJ11rxyR8O55XLSe3SPmRfKwZI6yU24ZxvQKFYItdldUKGzO6Ia6zTKhAVRU","type":"string"},"use":{"description":"Use (\"public key use\") identifies the intended use of\nthe public key. The \"use\" parameter is employed to indicate whether\na public key is used for encrypting data or verifying the signature\non data. Values are commonly \"sig\" (signature) or \"enc\" (encryption).","example":"sig","type":"string"},"x":{"example":"f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU","type":"string"},"x5c":{"description":"The \"x5c\" (X.509 certificate chain) parameter contains a chain of one\nor more PKIX certificates [RFC5280]. The certificate chain is\nrepresented as a JSON array of certificate value strings. Each\nstring in the array is a base64-encoded (Section 4 of [RFC4648] --\nnot base64url-encoded) DER [ITU.X690.1994] PKIX certificate value.\nThe PKIX certificate containing the key value MUST be the first\ncertificate.","items":{"type":"string"},"type":"array"},"y":{"example":"x_FEzRu9m36HLN_tue659LNpXW6pCyStikYjKIWI5a0","type":"string"}},"required":["use","kty","kid","alg"],"type":"object"},"jsonWebKeySet":{"description":"JSON Web Key Set","properties":{"keys":{"description":"List of JSON Web Keys\n\nThe value of the \"keys\" parameter is an array of JSON Web Key (JWK)\nvalues. By default, the order of the JWK values within the array does\nnot imply an order of preference among them, although applications\nof JWK Sets can choose to assign a meaning to the order for their\npurposes, if desired.","items":{"$ref":"#/components/schemas/jsonWebKey"},"type":"array"}},"type":"object"},"listCustomDomains":{"description":"Custom Hostname List","items":{"$ref":"#/components/schemas/customDomain"},"type":"array"},"loginFlow":{"description":"This object represents a login flow. A login flow is initiated at the \"Initiate Login API / Browser Flow\"\nendpoint by a client.\n\nOnce a login flow is completed successfully, a session cookie or session token will be issued.","properties":{"active":{"$ref":"#/components/schemas/identityCredentialsType"},"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"expires_at":{"description":"ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in,\na new flow has to be initiated.","format":"date-time","type":"string"},"id":{"description":"ID represents the flow's unique ID. When performing the login flow, this\nrepresents the id in the login UI's query parameter: http:///?flow=","format":"uuid","type":"string"},"issued_at":{"description":"IssuedAt is the time (UTC) when the flow started.","format":"date-time","type":"string"},"oauth2_login_challenge":{"description":"Ory OAuth 2.0 Login Challenge.\n\nThis value is set using the `login_challenge` query parameter of the registration and login endpoints.\nIf set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.","type":"string"},"oauth2_login_request":{"$ref":"#/components/schemas/oAuth2LoginRequest"},"refresh":{"description":"Refresh stores whether this login flow should enforce re-authentication.","type":"boolean"},"request_url":{"description":"RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.","type":"string"},"requested_aal":{"$ref":"#/components/schemas/authenticatorAssuranceLevel"},"return_to":{"description":"ReturnTo contains the requested return_to URL.","type":"string"},"session_token_exchange_code":{"description":"SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the login flow has been completed.\nThis is only set if the client has requested a session token exchange code, and if the flow is of type \"api\",\nand only on creating the login flow.","type":"string"},"type":{"$ref":"#/components/schemas/selfServiceFlowType"},"ui":{"$ref":"#/components/schemas/uiContainer"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"}},"required":["id","type","expires_at","issued_at","request_url","ui"],"title":"Login Flow","type":"object"},"logoutFlow":{"description":"Logout Flow","properties":{"logout_token":{"description":"LogoutToken can be used to perform logout using AJAX.","type":"string"},"logout_url":{"description":"LogoutURL can be opened in a browser to sign the user out.\n\nformat: uri","type":"string"}},"required":["logout_url","logout_token"],"type":"object"},"managedIdentitySchema":{"description":"Together the name and identity uuid are a unique index constraint.\nThis prevents a user from having schemas with the same name.\nThis also allows schemas to have the same name across the system.","properties":{"blob_name":{"description":"The gcs file name\n\nThis is a randomly generated name which is used to uniquely identify the file on the blob storage","type":"string"},"blob_url":{"description":"The publicly accessible url of the schema","type":"string"},"content_hash":{"description":"The Content Hash\n\nContains a hash of the schema's content.","type":"string"},"created_at":{"description":"The Schema's Creation Date","format":"date-time","readOnly":true,"type":"string"},"id":{"description":"The schema's ID.","format":"uuid","readOnly":true,"type":"string"},"name":{"description":"The schema name\n\nThis is set by the user and is for them to easily recognise their schema","example":"CustomerIdentity","type":"string"},"updated_at":{"description":"Last Time Schema was Updated","format":"date-time","readOnly":true,"type":"string"}},"required":["id","name","blob_name","blob_url","created_at","updated_at"],"title":"Schema represents an Ory Kratos Identity Schema","type":"object"},"managedIdentitySchemaValidationResult":{"description":"Ory Identity Schema Validation Result","properties":{"message":{"type":"string"},"valid":{"type":"boolean"}},"type":"object"},"managedIdentitySchemas":{"items":{"$ref":"#/components/schemas/managedIdentitySchema"},"type":"array"},"memberInvite":{"properties":{"created_at":{"description":"The Project's Revision Creation Date","format":"date-time","readOnly":true,"type":"string"},"id":{"description":"The invite's ID.","format":"uuid","readOnly":true,"type":"string"},"invitee_email":{"description":"The invitee's email","type":"string"},"invitee_id":{"$ref":"#/components/schemas/NullUUID"},"owner_email":{"description":"The invite owner's email\nUsually the project's owner email","type":"string"},"owner_id":{"description":"The invite owner's ID\nUsually the project's owner","format":"uuid","type":"string"},"project_id":{"description":"The Project's ID this invite is associated with","format":"uuid","type":"string"},"status":{"description":"The invite's status\nKeeps track of the invites status such as pending, accepted, declined, expired\npending PENDING\naccepted ACCEPTED\ndeclined DECLINED\nexpired EXPIRED\ncancelled CANCELLED\nremoved REMOVED","enum":["pending","accepted","declined","expired","cancelled","removed"],"type":"string","x-go-enum-desc":"pending PENDING\naccepted ACCEPTED\ndeclined DECLINED\nexpired EXPIRED\ncancelled CANCELLED\nremoved REMOVED"},"updated_at":{"description":"Last Time Project's Revision was Updated","format":"date-time","readOnly":true,"type":"string"}},"required":["id","project_id","owner_id","owner_email","invitee_email","status","created_at","updated_at"],"type":"object"},"memberInvites":{"items":{"$ref":"#/components/schemas/memberInvite"},"type":"array"},"message":{"properties":{"body":{"type":"string"},"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"dispatches":{"description":"Dispatches store information about the attempts of delivering a message\nMay contain an error if any happened, or just the `success` state.","items":{"$ref":"#/components/schemas/messageDispatch"},"type":"array"},"id":{"format":"uuid","type":"string"},"recipient":{"type":"string"},"send_count":{"format":"int64","type":"integer"},"status":{"$ref":"#/components/schemas/courierMessageStatus"},"subject":{"type":"string"},"template_type":{"description":"\nrecovery_invalid TypeRecoveryInvalid\nrecovery_valid TypeRecoveryValid\nrecovery_code_invalid TypeRecoveryCodeInvalid\nrecovery_code_valid TypeRecoveryCodeValid\nverification_invalid TypeVerificationInvalid\nverification_valid TypeVerificationValid\nverification_code_invalid TypeVerificationCodeInvalid\nverification_code_valid TypeVerificationCodeValid\notp TypeOTP\nstub TypeTestStub","enum":["recovery_invalid","recovery_valid","recovery_code_invalid","recovery_code_valid","verification_invalid","verification_valid","verification_code_invalid","verification_code_valid","otp","stub"],"type":"string","x-go-enum-desc":"recovery_invalid TypeRecoveryInvalid\nrecovery_valid TypeRecoveryValid\nrecovery_code_invalid TypeRecoveryCodeInvalid\nrecovery_code_valid TypeRecoveryCodeValid\nverification_invalid TypeVerificationInvalid\nverification_valid TypeVerificationValid\nverification_code_invalid TypeVerificationCodeInvalid\nverification_code_valid TypeVerificationCodeValid\notp TypeOTP\nstub TypeTestStub"},"type":{"$ref":"#/components/schemas/courierMessageType"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"}},"required":["id","status","type","recipient","body","subject","template_type","send_count","created_at","updated_at"],"type":"object"},"messageDispatch":{"description":"MessageDispatch represents an attempt of sending a courier message\nIt contains the status of the attempt (failed or successful) and the error if any occured","properties":{"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"error":{"$ref":"#/components/schemas/JSONRawMessage"},"id":{"description":"The ID of this message dispatch","format":"uuid","type":"string"},"message_id":{"description":"The ID of the message being dispatched","format":"uuid","type":"string"},"status":{"description":"The status of this dispatch\nEither \"failed\" or \"success\"\nfailed CourierMessageDispatchStatusFailed\nsuccess CourierMessageDispatchStatusSuccess","enum":["failed","success"],"type":"string","x-go-enum-desc":"failed CourierMessageDispatchStatusFailed\nsuccess CourierMessageDispatchStatusSuccess"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"}},"required":["id","message_id","status","created_at","updated_at"],"type":"object"},"metricsDatapoint":{"description":"Represents a single datapoint/bucket of a time series","properties":{"count":{"description":"The count of events that occured in this time","format":"int64","type":"integer"},"time":{"description":"The time of the bucket","format":"date-time","type":"string"}},"required":["time","count"],"type":"object"},"namespace":{"properties":{"name":{"description":"Name of the namespace.","type":"string"}},"type":"object"},"needsPrivilegedSessionError":{"properties":{"error":{"$ref":"#/components/schemas/genericError"},"redirect_browser_to":{"description":"Points to where to redirect the user to next.","type":"string"}},"required":["redirect_browser_to"],"title":"Is sent when a privileged session is required to perform the settings update.","type":"object"},"normalizedProject":{"properties":{"created_at":{"description":"The Project's Creation Date","format":"date-time","readOnly":true,"type":"string"},"current_revision":{"$ref":"#/components/schemas/normalizedProjectRevision"},"hosts":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"id":{"description":"The project's ID.","format":"uuid","readOnly":true,"type":"string"},"slug":{"description":"The project's slug","readOnly":true,"type":"string"},"state":{"description":"The state of the project.\nrunning Running\nhalted Halted\ndeleted Deleted","enum":["running","halted","deleted"],"readOnly":true,"type":"string","x-go-enum-desc":"running Running\nhalted Halted\ndeleted Deleted"},"subscription_id":{"$ref":"#/components/schemas/NullUUID"},"subscription_plan":{"$ref":"#/components/schemas/String"},"updated_at":{"description":"Last Time Project was Updated","format":"date-time","readOnly":true,"type":"string"}},"required":["id","hosts","slug","current_revision","state","created_at","updated_at"],"type":"object"},"normalizedProjectRevision":{"properties":{"created_at":{"description":"The Project's Revision Creation Date","format":"date-time","readOnly":true,"type":"string"},"disable_account_experience_welcome_screen":{"description":"Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.","type":"boolean"},"hydra_oauth2_allowed_top_level_claims":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_oauth2_client_credentials_default_grant_allowed_scope":{"description":"Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow.\n\nEach OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full\nscope is automatically granted when performing the OAuth2 Client Credentials flow.\n\nIf disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter.\n\nSetting this option to true is common if you need compatibility with MITREid.\n\nThis governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.","type":"boolean"},"hydra_oauth2_exclude_not_before_claim":{"description":"Set to true if you want to exclude claim `nbf (not before)` part of access token.\n\nThis governs the \"oauth2.exclude_not_before_claim\" setting.","type":"boolean"},"hydra_oauth2_grant_jwt_iat_optional":{"description":"Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).\n\nIf set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration.\n\nThis governs the \"oauth2.grant.jwt.iat_optional\" setting.","type":"boolean"},"hydra_oauth2_grant_jwt_jti_optional":{"description":"Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).\n\nIf set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration.\n\nThis governs the \"oauth2.grant.jwt.jti_optional\" setting.","type":"boolean"},"hydra_oauth2_grant_jwt_max_ttl":{"default":"720h","description":"Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be.\n\nThis feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied.\n\nUseful as a safety measure and recommended to keep below 720h.\n\nThis governs the \"oauth2.grant.jwt.max_ttl\" setting.","example":"30m","pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"hydra_oauth2_pkce_enforced":{"description":"Configures whether PKCE should be enforced for all OAuth2 Clients.\n\nThis governs the \"oauth2.pkce.enforced\" setting.","type":"boolean"},"hydra_oauth2_pkce_enforced_for_public_clients":{"description":"Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients).\n\nThis governs the \"oauth2.pkce.enforced_for_public_clients\" setting.","type":"boolean"},"hydra_oauth2_refresh_token_hook":{"description":"Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims.\n\nThis governs the \"oauth2.refresh_token_hook\" setting.","type":"string"},"hydra_oauth2_token_hook":{"description":"Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims.\n\nThis governs the \"oauth2.token_hook\" setting.","type":"string"},"hydra_oidc_dynamic_client_registration_default_scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_oidc_dynamic_client_registration_enabled":{"description":"Configures OpenID Connect Dynamic Client Registration.\n\nThis governs the \"oidc.dynamic_client_registration.enabled\" setting.","type":"boolean"},"hydra_oidc_subject_identifiers_pairwise_salt":{"description":"Configures OpenID Connect Discovery and overwrites the pairwise algorithm\n\nThis governs the \"oidc.subject_identifiers.pairwise_salt\" setting.","type":"string"},"hydra_oidc_subject_identifiers_supported_types":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_secrets_cookie":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_secrets_system":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_serve_cookies_same_site_legacy_workaround":{"description":"Configures the Ory Hydra Cookie Same Site Legacy Workaround\n\nThis governs the \"serve.cookies.same_site_legacy_workaround\" setting.","type":"boolean"},"hydra_serve_cookies_same_site_mode":{"description":"Configures the Ory Hydra Cookie Same Site Mode\n\nThis governs the \"serve.cookies.same_site_mode\" setting.","type":"string"},"hydra_strategies_access_token":{"default":"opaque","description":"Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens\n\nThis governs the \"strategies.access_token\" setting.\nopaque Oauth2AccessTokenStrategyOpaque\njwt Oauth2AccessTokenStrategyJwt","enum":["opaque","jwt"],"type":"string","x-go-enum-desc":"opaque Oauth2AccessTokenStrategyOpaque\njwt Oauth2AccessTokenStrategyJwt"},"hydra_strategies_scope":{"default":"wildcard","description":"Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes\n\nThis governs the \"strategies.scope\" setting.\nexact Oauth2ScopeStrategyExact\nwildcard Oauth2ScopeStrategyWildcard","enum":["exact","wildcard"],"type":"string","x-go-enum-desc":"exact Oauth2ScopeStrategyExact\nwildcard Oauth2ScopeStrategyWildcard"},"hydra_ttl_access_token":{"default":"30m","description":"This governs the \"ttl.access_token\" setting.","example":"1h","pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"hydra_ttl_auth_code":{"default":"720h","description":"Configures how long refresh tokens are valid.\n\nSet to -1 for refresh tokens to never expire. This is not recommended!\n\nThis governs the \"ttl.auth_code\" setting.","example":"30m","pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"hydra_ttl_id_token":{"default":"30m","description":"This governs the \"ttl.id_token\" setting.","example":"1h","pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"hydra_ttl_login_consent_request":{"default":"30m","description":"Configures how long a user login and consent flow may take.\n\nThis governs the \"ttl.login_consent_request\" setting.","example":"1h","pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"hydra_ttl_refresh_token":{"default":"720h","description":"Configures how long refresh tokens are valid.\n\nSet to -1 for refresh tokens to never expire. This is not recommended!\n\nThis governs the \"ttl.refresh_token\" setting.","example":"30m","pattern":"^([0-9]+(ns|us|ms|s|m|h)|-1)$","type":"string"},"hydra_urls_consent":{"description":"Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login & Consent flow.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.consent\" setting.","type":"string"},"hydra_urls_error":{"description":"Sets the OAuth2 Error URL of the OAuth2 User Login & Consent flow.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.error\" setting.","type":"string"},"hydra_urls_login":{"description":"Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login & Consent flow.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.login\" setting.","type":"string"},"hydra_urls_logout":{"description":"Sets the logout endpoint.\n\nDefaults to the Ory Account Experience if left empty.\n\nThis governs the \"urls.logout\" setting.","type":"string"},"hydra_urls_post_logout_redirect":{"description":"When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default.\n\nDefaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected.\n\nThis governs the \"urls.post_logout_redirect\" setting.","type":"string"},"hydra_urls_self_issuer":{"description":"This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled.\n\nOn the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network.\n\nThis governs the \"urls.self.issuer\" setting.","type":"string"},"hydra_webfinger_jwks_broadcast_keys":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_webfinger_oidc_discovery_auth_url":{"description":"Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL.\n\nThis governs the \"webfinger.oidc.discovery.auth_url\" setting.","type":"string"},"hydra_webfinger_oidc_discovery_client_registration_url":{"description":"Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint.\n\nThis governs the \"webfinger.oidc.discovery.client_registration_url\" setting.","type":"string"},"hydra_webfinger_oidc_discovery_jwks_url":{"description":"Configures OpenID Connect Discovery and overwrites the JWKS URL.\n\nThis governs the \"webfinger.oidc.discovery.jwks_url\" setting.","type":"string"},"hydra_webfinger_oidc_discovery_supported_claims":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_webfinger_oidc_discovery_supported_scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_webfinger_oidc_discovery_token_url":{"description":"Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL.\n\nThis governs the \"webfinger.oidc.discovery.token_url\" setting.","type":"string"},"hydra_webfinger_oidc_discovery_userinfo_url":{"description":"Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself.\n\nThis governs the \"webfinger.oidc.discovery.userinfo_url\" setting.","type":"string"},"id":{"description":"The revision ID.","format":"uuid","readOnly":true,"type":"string"},"keto_namespace_configuration":{"description":"The Revisions' Keto Namespace Configuration\n\nThe string is a URL pointing to an OPL file with the configuration.","type":"string"},"keto_namespaces":{"$ref":"#/components/schemas/KetoNamespaces"},"keto_read_max_depth":{"$ref":"#/components/schemas/NullInt"},"kratos_cookies_same_site":{"description":"Configures the Ory Kratos Cookie SameSite Attribute\n\nThis governs the \"cookies.same_site\" setting.","type":"string"},"kratos_courier_smtp_connection_uri":{"description":"Configures the Ory Kratos SMTP Connection URI\n\nThis governs the \"courier.smtp.connection_uri\" setting.","type":"string"},"kratos_courier_smtp_from_address":{"description":"Configures the Ory Kratos SMTP From Address\n\nThis governs the \"courier.smtp.from_address\" setting.","type":"string"},"kratos_courier_smtp_from_name":{"description":"Configures the Ory Kratos SMTP From Name\n\nThis governs the \"courier.smtp.from_name\" setting.","type":"string"},"kratos_courier_smtp_headers":{"$ref":"#/components/schemas/nullJsonRawMessage"},"kratos_courier_smtp_local_name":{"description":"Configures the local_name to use in SMTP connections\n\nThis governs the \"courier.smtp.local_name\" setting.","type":"string"},"kratos_courier_templates_recovery_code_invalid_email_body_html":{"description":"Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_recovery_code_invalid_email_body_plaintext":{"description":"Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_recovery_code_invalid_email_subject":{"description":"Configures the Ory Kratos Invalid Recovery via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_recovery_code_valid_email_body_html":{"description":"Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_recovery_code_valid_email_body_plaintext":{"description":"Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_recovery_code_valid_email_subject":{"description":"Configures the Ory Kratos Valid Recovery via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.","type":"string"},"kratos_courier_templates_recovery_invalid_email_body_html":{"description":"Configures the Ory Kratos Invalid Recovery Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_recovery_invalid_email_body_plaintext":{"description":"Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_recovery_invalid_email_subject":{"description":"Configures the Ory Kratos Invalid Recovery Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_recovery_valid_email_body_html":{"description":"Configures the Ory Kratos Valid Recovery Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_recovery_valid_email_body_plaintext":{"description":"Configures the Ory Kratos Valid Recovery Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_recovery_valid_email_subject":{"description":"Configures the Ory Kratos Valid Recovery Email Subject Template\n\nThis governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.","type":"string"},"kratos_courier_templates_verification_code_invalid_email_body_html":{"description":"Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_verification_code_invalid_email_body_plaintext":{"description":"Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_verification_code_invalid_email_subject":{"description":"Configures the Ory Kratos Invalid Verification via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.","type":"string"},"kratos_courier_templates_verification_code_valid_email_body_html":{"description":"Configures the Ory Kratos Valid Verification via Code Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_verification_code_valid_email_body_plaintext":{"description":"Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_verification_code_valid_email_subject":{"description":"Configures the Ory Kratos Valid Verification via Code Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.","type":"string"},"kratos_courier_templates_verification_invalid_email_body_html":{"description":"Configures the Ory Kratos Invalid Verification Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_verification_invalid_email_body_plaintext":{"description":"Configures the Ory Kratos Invalid Verification Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_verification_invalid_email_subject":{"description":"Configures the Ory Kratos Invalid Verification Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.","type":"string"},"kratos_courier_templates_verification_valid_email_body_html":{"description":"Configures the Ory Kratos Valid Verification Email Body HTML Template\n\nThis governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.","type":"string"},"kratos_courier_templates_verification_valid_email_body_plaintext":{"description":"Configures the Ory Kratos Valid Verification Email Body Plaintext Template\n\nThis governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.","type":"string"},"kratos_courier_templates_verification_valid_email_subject":{"description":"Configures the Ory Kratos Valid Verification Email Subject Template\n\nThis governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.","type":"string"},"kratos_feature_flags_cacheable_sessions":{"description":"Configures the Ory Kratos Session caching feature flag\n\nThis governs the \"feature_flags.cacheable_sessions\" setting.","type":"boolean"},"kratos_identity_schemas":{"$ref":"#/components/schemas/projectRevisionIdentitySchemas"},"kratos_oauth2_provider_headers":{"$ref":"#/components/schemas/nullJsonRawMessage"},"kratos_oauth2_provider_override_return_to":{"description":"Kratos OAuth2 Provider Override Return To\n\nEnabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.","type":"boolean"},"kratos_oauth2_provider_url":{"description":"The Revisions' OAuth2 Provider Integration URL\n\nThis governs the \"oauth2_provider.url\" setting.","type":"string"},"kratos_secrets_cipher":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"kratos_secrets_cookie":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"kratos_secrets_default":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"kratos_selfservice_allowed_return_urls":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"kratos_selfservice_default_browser_return_url":{"description":"Configures the Ory Kratos Default Return URL\n\nThis governs the \"selfservice.allowed_return_urls\" setting.","type":"string"},"kratos_selfservice_flows_error_ui_url":{"description":"Configures the Ory Kratos Error UI URL\n\nThis governs the \"selfservice.flows.error.ui_url\" setting.","type":"string"},"kratos_selfservice_flows_hooks":{"$ref":"#/components/schemas/projectRevisionHooks"},"kratos_selfservice_flows_login_after_default_browser_return_url":{"description":"Configures the Ory Kratos Login Default Return URL\n\nThis governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_login_after_oidc_default_browser_return_url":{"description":"Configures the Ory Kratos Login After OIDC Default Return URL\n\nThis governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_login_after_password_default_browser_return_url":{"description":"Configures the Ory Kratos Login After Password Default Return URL\n\nThis governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_login_after_webauthn_default_browser_return_url":{"description":"Configures the Ory Kratos Login After WebAuthn Default Return URL\n\nThis governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_login_lifespan":{"description":"Configures the Ory Kratos Login Lifespan\n\nThis governs the \"selfservice.flows.login.lifespan\" setting.","type":"string"},"kratos_selfservice_flows_login_ui_url":{"description":"Configures the Ory Kratos Login UI URL\n\nThis governs the \"selfservice.flows.login.ui_url\" setting.","type":"string"},"kratos_selfservice_flows_logout_after_default_browser_return_url":{"description":"Configures the Ory Kratos Logout Default Return URL\n\nThis governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_recovery_after_default_browser_return_url":{"description":"Configures the Ory Kratos Recovery Default Return URL\n\nThis governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_recovery_enabled":{"description":"Configures the Ory Kratos Recovery Enabled Setting\n\nThis governs the \"selfservice.flows.recovery.enabled\" setting.","type":"boolean"},"kratos_selfservice_flows_recovery_lifespan":{"description":"Configures the Ory Kratos Recovery Lifespan\n\nThis governs the \"selfservice.flows.recovery.lifespan\" setting.","type":"string"},"kratos_selfservice_flows_recovery_notify_unknown_recipients":{"description":"Configures whether to notify unknown recipients of a Ory Kratos recovery flow\n\nThis governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.","type":"boolean"},"kratos_selfservice_flows_recovery_ui_url":{"description":"Configures the Ory Kratos Recovery UI URL\n\nThis governs the \"selfservice.flows.recovery.ui_url\" setting.","type":"string"},"kratos_selfservice_flows_recovery_use":{"description":"Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")\n\nThis governs the \"selfservice.flows.recovery.use\" setting.\nlink SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode","enum":["link","code"],"type":"string","x-go-enum-desc":"link SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode"},"kratos_selfservice_flows_registration_after_default_browser_return_url":{"description":"Configures the Ory Kratos Registration Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_registration_after_oidc_default_browser_return_url":{"description":"Configures the Ory Kratos Registration After OIDC Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_registration_after_password_default_browser_return_url":{"description":"Configures the Ory Kratos Registration After Password Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url":{"description":"Configures the Ory Kratos Registration After Password Default Return URL\n\nThis governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_registration_enabled":{"description":"Configures the Whether Ory Kratos Registration is Enabled\n\nThis governs the \"selfservice.flows.registration.enabled\" setting.0","type":"boolean"},"kratos_selfservice_flows_registration_lifespan":{"description":"Configures the Ory Kratos Registration Lifespan\n\nThis governs the \"selfservice.flows.registration.lifespan\" setting.","type":"string"},"kratos_selfservice_flows_registration_ui_url":{"description":"Configures the Ory Kratos Registration UI URL\n\nThis governs the \"selfservice.flows.registration.ui_url\" setting.","type":"string"},"kratos_selfservice_flows_settings_after_default_browser_return_url":{"description":"Configures the Ory Kratos Settings Default Return URL\n\nThis governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_settings_after_password_default_browser_return_url":{"description":"Configures the Ory Kratos Settings Default Return URL After Updating Passwords\n\nThis governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_settings_after_profile_default_browser_return_url":{"description":"Configures the Ory Kratos Settings Default Return URL After Updating Profiles\n\nThis governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_settings_lifespan":{"description":"Configures the Ory Kratos Settings Lifespan\n\nThis governs the \"selfservice.flows.settings.lifespan\" setting.","type":"string"},"kratos_selfservice_flows_settings_privileged_session_max_age":{"description":"Configures the Ory Kratos Settings Privileged Session Max Age\n\nThis governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.","type":"string"},"kratos_selfservice_flows_settings_required_aal":{"description":"Configures the Ory Kratos Settings Required AAL\n\nThis governs the \"selfservice.flows.settings.required_aal\" setting.","type":"string"},"kratos_selfservice_flows_settings_ui_url":{"description":"Configures the Ory Kratos Settings UI URL\n\nThis governs the \"selfservice.flows.settings.ui_url\" setting.","type":"string"},"kratos_selfservice_flows_verification_after_default_browser_return_url":{"description":"Configures the Ory Kratos Verification Default Return URL\n\nThis governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.","type":"string"},"kratos_selfservice_flows_verification_enabled":{"description":"Configures the Ory Kratos Verification Enabled Setting\n\nThis governs the \"selfservice.flows.verification.enabled\" setting.","type":"boolean"},"kratos_selfservice_flows_verification_lifespan":{"description":"Configures the Ory Kratos Verification Lifespan\n\nThis governs the \"selfservice.flows.verification.lifespan\" setting.","type":"string"},"kratos_selfservice_flows_verification_notify_unknown_recipients":{"description":"Configures whether to notify unknown recipients of a Ory Kratos verification flow\n\nThis governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.","type":"boolean"},"kratos_selfservice_flows_verification_ui_url":{"description":"Configures the Ory Kratos Verification UI URL\n\nThis governs the \"selfservice.flows.verification.ui_url\" setting.","type":"string"},"kratos_selfservice_flows_verification_use":{"description":"Configures the Ory Kratos Strategy to use for Verification\n\nThis governs the \"selfservice.flows.verification.use\" setting.\nlink SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode","enum":["link","code"],"type":"string","x-go-enum-desc":"link SelfServiceMessageVerificationStrategyLink\ncode SelfServiceMessageVerificationStrategyCode"},"kratos_selfservice_methods_code_config_lifespan":{"description":"Configures the Ory Kratos Code Method's lifespan\n\nThis governs the \"selfservice.methods.code.config.lifespan\" setting.","type":"string"},"kratos_selfservice_methods_code_enabled":{"description":"Configures whether Ory Kratos Code Method is enabled\n\nThis governs the \"selfservice.methods.code.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_link_config_base_url":{"description":"Configures the Base URL which Recovery, Verification, and Login Links Point to\n\nIt is recommended to leave this value empty. It will be appropriately configured to the best matching domain\n(e.g. when using custom domains) automatically.\n\nThis governs the \"selfservice.methods.link.config.base_url\" setting.","type":"string"},"kratos_selfservice_methods_link_config_lifespan":{"description":"Configures the Ory Kratos Link Method's lifespan\n\nThis governs the \"selfservice.methods.link.config.lifespan\" setting.","type":"string"},"kratos_selfservice_methods_link_enabled":{"description":"Configures whether Ory Kratos Link Method is enabled\n\nThis governs the \"selfservice.methods.link.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_lookup_secret_enabled":{"description":"Configures whether Ory Kratos TOTP Lookup Secret is enabled\n\nThis governs the \"selfservice.methods.lookup_secret.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_oidc_config_base_redirect_uri":{"description":"Configures the Ory Kratos Third Party / OpenID Connect base redirect URI\n\nThis governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.","type":"string"},"kratos_selfservice_methods_oidc_config_providers":{"$ref":"#/components/schemas/projectRevisionThirdPartyLoginProviders"},"kratos_selfservice_methods_oidc_enabled":{"description":"Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled\n\nThis governs the \"selfservice.methods.oidc.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_password_config_haveibeenpwned_enabled":{"description":"Configures whether Ory Kratos Password HIBP Checks is enabled\n\nThis governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_password_config_identifier_similarity_check_enabled":{"description":"Configures whether Ory Kratos Password should disable the similarity policy.\n\nThis governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_password_config_ignore_network_errors":{"description":"Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors\n\nThis governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.","type":"boolean"},"kratos_selfservice_methods_password_config_max_breaches":{"description":"Configures Ory Kratos Password Max Breaches Detection\n\nThis governs the \"selfservice.methods.password.config.max_breaches\" setting.","format":"int64","type":"integer"},"kratos_selfservice_methods_password_config_min_password_length":{"description":"Configures the minimum length of passwords.\n\nThis governs the \"selfservice.methods.password.config.min_password_length\" setting.","format":"int64","type":"integer"},"kratos_selfservice_methods_password_enabled":{"description":"Configures whether Ory Kratos Password Method is enabled\n\nThis governs the \"selfservice.methods.password.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_profile_enabled":{"description":"Configures whether Ory Kratos Profile Method is enabled\n\nThis governs the \"selfservice.methods.profile.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_totp_config_issuer":{"description":"Configures Ory Kratos TOTP Issuer\n\nThis governs the \"selfservice.methods.totp.config.issuer\" setting.","type":"string"},"kratos_selfservice_methods_totp_enabled":{"description":"Configures whether Ory Kratos TOTP Method is enabled\n\nThis governs the \"selfservice.methods.totp.enabled\" setting.","type":"boolean"},"kratos_selfservice_methods_webauthn_config_passwordless":{"description":"Configures whether Ory Kratos Webauthn is used for passwordless flows\n\nThis governs the \"selfservice.methods.webauthn.config.passwordless\" setting.","type":"boolean"},"kratos_selfservice_methods_webauthn_config_rp_display_name":{"description":"Configures the Ory Kratos Webauthn RP Display Name\n\nThis governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.","type":"string"},"kratos_selfservice_methods_webauthn_config_rp_icon":{"description":"Configures the Ory Kratos Webauthn RP Icon\n\nThis governs the \"selfservice.methods.webauthn.config.rp.icon\" setting.\nDeprecated: This value will be ignored due to security considerations.","type":"string"},"kratos_selfservice_methods_webauthn_config_rp_id":{"description":"Configures the Ory Kratos Webauthn RP ID\n\nThis governs the \"selfservice.methods.webauthn.config.rp.id\" setting.","type":"string"},"kratos_selfservice_methods_webauthn_config_rp_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"kratos_selfservice_methods_webauthn_enabled":{"description":"Configures whether Ory Kratos Webauthn is enabled\n\nThis governs the \"selfservice.methods.webauthn.enabled\" setting.","type":"boolean"},"kratos_session_cookie_persistent":{"description":"Configures the Ory Kratos Session Cookie Persistent Attribute\n\nThis governs the \"session.cookie.persistent\" setting.","type":"boolean"},"kratos_session_cookie_same_site":{"description":"Configures the Ory Kratos Session Cookie SameSite Attribute\n\nThis governs the \"session.cookie.same_site\" setting.","type":"string"},"kratos_session_lifespan":{"description":"Configures the Ory Kratos Session Lifespan\n\nThis governs the \"session.lifespan\" setting.","type":"string"},"kratos_session_whoami_required_aal":{"description":"Configures the Ory Kratos Session Whoami AAL requirement\n\nThis governs the \"session.whoami.required_aal\" setting.","type":"string"},"name":{"description":"The project's name.","type":"string"},"production":{"description":"Whether this project is in production mode or not.\n\nIn development mode, a low-security profile is used making it easier to develop against your, for example, local environment.","type":"boolean"},"project_id":{"description":"The Revision's Project ID","format":"uuid","type":"string"},"serve_admin_cors_allowed_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"serve_admin_cors_enabled":{"description":"Enable CORS headers on all admin APIs\n\nThis governs the \"serve.admin.cors.enabled\" setting.","type":"boolean"},"serve_public_cors_allowed_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"serve_public_cors_enabled":{"description":"Enable CORS headers on all public APIs\n\nThis governs the \"serve.public.cors.enabled\" setting.","type":"boolean"},"updated_at":{"description":"Last Time Project's Revision was Updated","format":"date-time","readOnly":true,"type":"string"}},"required":["name"],"type":"object"},"normalizedProjectRevisionHook":{"properties":{"config_key":{"description":"The Hooks Config Key","type":"string"},"created_at":{"description":"The Project's Revision Creation Date","format":"date-time","readOnly":true,"type":"string"},"hook":{"description":"The Hook Type","type":"string"},"id":{"description":"ID of the entry","format":"uuid","type":"string"},"project_revision_id":{"description":"The Revision's ID this schema belongs to","format":"uuid","type":"string"},"updated_at":{"description":"Last Time Project's Revision was Updated","format":"date-time","readOnly":true,"type":"string"},"web_hook_config_auth_api_key_in":{"description":"Whether to send the API Key in the HTTP Header or as a HTTP Cookie","example":"header","type":"string"},"web_hook_config_auth_api_key_name":{"description":"The name of the api key","example":"X-API-Key","type":"string"},"web_hook_config_auth_api_key_value":{"description":"The value of the api key","example":"eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ","type":"string"},"web_hook_config_auth_basic_auth_password":{"description":"The password to be sent in the HTTP Basic Auth Header","type":"string"},"web_hook_config_auth_basic_auth_user":{"description":"The username to be sent in the HTTP Basic Auth Header","type":"string"},"web_hook_config_auth_type":{"description":"HTTP Auth Method to use for the Web-Hook","type":"string"},"web_hook_config_body":{"description":"URI pointing to the JsonNet template used for Web-Hook payload generation. Only used for those HTTP methods, which support HTTP body payloads.","example":"base64://ZnVuY3Rpb24oY3R4KSB7CiAgaWRlbnRpdHlfaWQ6IGlmIGN0eFsiaWRlbnRpdHkiXSAhPSBudWxsIHRoZW4gY3R4LmlkZW50aXR5LmlkLAp9=","type":"string"},"web_hook_config_can_interrupt":{"description":"If enabled allows the web hook to interrupt / abort the self-service flow. It only applies to certain flows (registration/verification/login/settings) and requires a valid response format.","type":"boolean"},"web_hook_config_method":{"description":"The HTTP method to use (GET, POST, etc) for the Web-Hook","example":"POST","type":"string"},"web_hook_config_response_ignore":{"description":"Whether to ignore the Web Hook response","type":"boolean"},"web_hook_config_response_parse":{"description":"Whether to parse the Web Hook response","type":"boolean"},"web_hook_config_url":{"description":"The URL the Web-Hook should call","example":"https://www.example.org/web-hook-listener","type":"string"}},"required":["config_key","hook"],"type":"object"},"normalizedProjectRevisionIdentitySchema":{"properties":{"created_at":{"description":"The Project's Revision Creation Date","format":"date-time","readOnly":true,"type":"string"},"id":{"description":"The unique ID of this entry.","format":"uuid","type":"string"},"identity_schema":{"$ref":"#/components/schemas/managedIdentitySchema"},"identity_schema_id":{"$ref":"#/components/schemas/NullUUID"},"import_id":{"description":"The imported (named) ID of the Identity Schema referenced in the Ory Kratos config.","type":"string"},"import_url":{"description":"The ImportURL can be used to import an Identity Schema from a bse64 encoded string.\nIn the future, this key also support HTTPS and other sources!\n\nIf you import an Ory Kratos configuration, this would be akin to the `identity.schemas.#.url` key.\n\nThe configuration will always return the import URL when you fetch it from the API.","example":"base64://ey...","type":"string"},"is_default":{"description":"If true sets the default schema for identities\n\nOnly one schema can ever be the default schema. If you\ntry to add two schemas with default to true, the\nrequest will fail.","type":"boolean"},"preset":{"description":"Use a preset instead of a custom identity schema.","type":"string"},"project_revision_id":{"description":"The Revision's ID this schema belongs to","format":"uuid","type":"string"},"updated_at":{"description":"Last Time Project's Revision was Updated","format":"date-time","readOnly":true,"type":"string"}},"type":"object"},"normalizedProjectRevisionIdentitySchemas":{"items":{"$ref":"#/components/schemas/normalizedProjectRevisionIdentitySchema"},"type":"array"},"normalizedProjectRevisionThirdPartyProvider":{"properties":{"apple_private_key":{"$ref":"#/components/schemas/String"},"apple_private_key_id":{"description":"Apple Private Key Identifier\n\nSign In with Apple Private Key Identifier needed for generating a JWT token for client secret","example":"UX56C66723","type":"string"},"apple_team_id":{"description":"Apple Developer Team ID\n\nApple Developer Team ID needed for generating a JWT token for client secret","example":"KP76DQS54M","type":"string"},"auth_url":{"description":"AuthURL is the authorize url, typically something like: https://example.org/oauth2/auth\nShould only be used when the OAuth2 / OpenID Connect server is not supporting OpenID Connect Discovery and when\n`provider` is set to `generic`.","example":"https://www.googleapis.com/oauth2/v2/auth","type":"string"},"azure_tenant":{"description":"Tenant is the Azure AD Tenant to use for authentication, and must be set when `provider` is set to `microsoft`.\n\nCan be either `common`, `organizations`, `consumers` for a multitenant application or a specific tenant like\n`8eaef023-2b34-4da1-9baa-8bc8c9d6a490` or `contoso.onmicrosoft.com`.","example":"contoso.onmicrosoft.com","type":"string"},"client_id":{"description":"ClientID is the application's Client ID.","type":"string"},"client_secret":{"$ref":"#/components/schemas/String"},"created_at":{"description":"The Project's Revision Creation Date","format":"date-time","readOnly":true,"type":"string"},"id":{"format":"uuid","type":"string"},"issuer_url":{"description":"IssuerURL is the OpenID Connect Server URL. You can leave this empty if `provider` is not set to `generic`.\nIf set, neither `auth_url` nor `token_url` are required.","example":"https://accounts.google.com","type":"string"},"label":{"description":"Label represents an optional label which can be used in the UI generation.","type":"string"},"mapper_url":{"description":"Mapper specifies the JSONNet code snippet which uses the OpenID Connect Provider's data (e.g. GitHub or Google\nprofile information) to hydrate the identity's data.\n\nIt can be either a URL (file://, http(s)://, base64://) or an inline JSONNet code snippet.","type":"string"},"project_revision_id":{"description":"The Revision's ID this schema belongs to","format":"uuid","type":"string"},"provider":{"description":"Provider is either \"generic\" for a generic OAuth 2.0 / OpenID Connect Provider or one of:\ngeneric\ngoogle\ngithub\ngitlab\nmicrosoft\ndiscord\nslack\nfacebook\nvk\nyandex\napple","example":"google","type":"string"},"provider_id":{"description":"ID is the provider's ID","type":"string"},"requested_claims":{"$ref":"#/components/schemas/JSONRawMessage"},"scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"state":{"description":"State indicates the state of the provider\n\nOnly providers with state `enabled` will be used for authentication\nenabled ThirdPartyProviderStateEnabled\ndisabled ThirdPartyProviderStateDisabled","enum":["enabled","disabled"],"type":"string","x-go-enum-desc":"enabled ThirdPartyProviderStateEnabled\ndisabled ThirdPartyProviderStateDisabled"},"subject_source":{"$ref":"#/components/schemas/String"},"token_url":{"description":"TokenURL is the token url, typically something like: https://example.org/oauth2/token\n\nShould only be used when the OAuth2 / OpenID Connect server is not supporting OpenID Connect Discovery and when\n`provider` is set to `generic`.","example":"https://www.googleapis.com/oauth2/v4/token","type":"string"},"updated_at":{"description":"Last Time Project's Revision was Updated","format":"date-time","readOnly":true,"type":"string"}},"type":"object"},"normalizedProjects":{"items":{"$ref":"#/components/schemas/normalizedProject"},"type":"array"},"nullBool":{"nullable":true,"type":"boolean"},"nullDuration":{"nullable":true,"pattern":"^[0-9]+(ns|us|ms|s|m|h)$","type":"string"},"nullInt64":{"nullable":true,"type":"integer"},"nullJsonRawMessage":{"description":"NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-","nullable":true,"type":"object"},"nullString":{"type":"string"},"nullTime":{"format":"date-time","title":"NullTime implements sql.NullTime functionality.","type":"string"},"oAuth2Client":{"description":"OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are\ngenerated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.","properties":{"access_token_strategy":{"description":"OAuth 2.0 Access Token Strategy\n\nAccessTokenStrategy is the strategy used to generate access tokens.\nValid options are `jwt` and `opaque`. `jwt` is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens\nSetting the stragegy here overrides the global setting in `strategies.access_token`.","type":"string"},"allowed_cors_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"audience":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"authorization_code_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"authorization_code_grant_id_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"authorization_code_grant_refresh_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"backchannel_logout_session_required":{"description":"OpenID Connect Back-Channel Logout Session Required\n\nBoolean value specifying whether the RP requires that a sid (session ID) Claim be included in the Logout\nToken to identify the RP session with the OP when the backchannel_logout_uri is used.\nIf omitted, the default value is false.","type":"boolean"},"backchannel_logout_uri":{"description":"OpenID Connect Back-Channel Logout URI\n\nRP URL that will cause the RP to log itself out when sent a Logout Token by the OP.","type":"string"},"client_credentials_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"client_id":{"description":"OAuth 2.0 Client ID\n\nThe ID is autogenerated and immutable.","type":"string"},"client_name":{"description":"OAuth 2.0 Client Name\n\nThe human-readable name of the client to be presented to the\nend-user during authorization.","type":"string"},"client_secret":{"description":"OAuth 2.0 Client Secret\n\nThe secret will be included in the create request as cleartext, and then\nnever again. The secret is kept in hashed format and is not recoverable once lost.","type":"string"},"client_secret_expires_at":{"description":"OAuth 2.0 Client Secret Expires At\n\nThe field is currently not supported and its value is always 0.","format":"int64","type":"integer"},"client_uri":{"description":"OAuth 2.0 Client URI\n\nClientURI is a URL string of a web page providing information about the client.\nIf present, the server SHOULD display this URL to the end-user in\na clickable fashion.","type":"string"},"contacts":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"created_at":{"description":"OAuth 2.0 Client Creation Date\n\nCreatedAt returns the timestamp of the client's creation.","format":"date-time","type":"string"},"frontchannel_logout_session_required":{"description":"OpenID Connect Front-Channel Logout Session Required\n\nBoolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be\nincluded to identify the RP session with the OP when the frontchannel_logout_uri is used.\nIf omitted, the default value is false.","type":"boolean"},"frontchannel_logout_uri":{"description":"OpenID Connect Front-Channel Logout URI\n\nRP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query\nparameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the\nrequest and to determine which of the potentially multiple sessions is to be logged out; if either is\nincluded, both MUST be.","type":"string"},"grant_types":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"implicit_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"implicit_grant_id_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"jwks":{"description":"OAuth 2.0 Client JSON Web Key Set\n\nClient's JSON Web Key Set [JWK] document, passed by value. The semantics of the jwks parameter are the same as\nthe jwks_uri parameter, other than that the JWK Set is passed by value, rather than by reference. This parameter\nis intended only to be used by Clients that, for some reason, are unable to use the jwks_uri parameter, for\ninstance, by native applications that might not have a location to host the contents of the JWK Set. If a Client\ncan use jwks_uri, it MUST NOT use jwks. One significant downside of jwks is that it does not enable key rotation\n(which jwks_uri does, as described in Section 10 of OpenID Connect Core 1.0 [OpenID.Core]). The jwks_uri and jwks\nparameters MUST NOT be used together."},"jwks_uri":{"description":"OAuth 2.0 Client JSON Web Key Set URL\n\nURL for the Client's JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains\nthe signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the\nClient's encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing\nand encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced\nJWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both\nsignatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used\nto provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST\nmatch those in the certificate.","type":"string"},"jwt_bearer_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"logo_uri":{"description":"OAuth 2.0 Client Logo URI\n\nA URL string referencing the client's logo.","type":"string"},"metadata":{"$ref":"#/components/schemas/JSONRawMessage"},"owner":{"description":"OAuth 2.0 Client Owner\n\nOwner is a string identifying the owner of the OAuth 2.0 Client.","type":"string"},"policy_uri":{"description":"OAuth 2.0 Client Policy URI\n\nPolicyURI is a URL string that points to a human-readable privacy policy document\nthat describes how the deployment organization collects, uses,\nretains, and discloses personal data.","type":"string"},"post_logout_redirect_uris":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"redirect_uris":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"refresh_token_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"refresh_token_grant_id_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"refresh_token_grant_refresh_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"registration_access_token":{"description":"OpenID Connect Dynamic Client Registration Access Token\n\nRegistrationAccessToken can be used to update, get, or delete the OAuth2 Client. It is sent when creating a client\nusing Dynamic Client Registration.","type":"string"},"registration_client_uri":{"description":"OpenID Connect Dynamic Client Registration URL\n\nRegistrationClientURI is the URL used to update, get, or delete the OAuth2 Client.","type":"string"},"request_object_signing_alg":{"description":"OpenID Connect Request Object Signing Algorithm\n\nJWS [JWS] alg algorithm [JWA] that MUST be used for signing Request Objects sent to the OP. All Request Objects\nfrom this Client MUST be rejected, if not signed with this algorithm.","type":"string"},"request_uris":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"response_types":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"scope":{"description":"OAuth 2.0 Client Scope\n\nScope is a string containing a space-separated list of scope values (as\ndescribed in Section 3.3 of OAuth 2.0 [RFC6749]) that the client\ncan use when requesting access tokens.","example":"scope1 scope-2 scope.3 scope:4","type":"string"},"sector_identifier_uri":{"description":"OpenID Connect Sector Identifier URI\n\nURL using the https scheme to be used in calculating Pseudonymous Identifiers by the OP. The URL references a\nfile with a single JSON array of redirect_uri values.","type":"string"},"skip_consent":{"description":"SkipConsent skips the consent screen for this client. This field can only\nbe set from the admin API.","type":"boolean"},"subject_type":{"description":"OpenID Connect Subject Type\n\nThe `subject_types_supported` Discovery parameter contains a\nlist of the supported subject_type values for this server. Valid types include `pairwise` and `public`.","type":"string"},"token_endpoint_auth_method":{"default":"client_secret_basic","description":"OAuth 2.0 Token Endpoint Authentication Method\n\nRequested Client Authentication method for the Token Endpoint. The options are:\n\n`client_secret_basic`: (default) Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` encoded in the HTTP Authorization header.\n`client_secret_post`: Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` in the HTTP body.\n`private_key_jwt`: Use JSON Web Tokens to authenticate the client.\n`none`: Used for public clients (native apps, mobile apps) which can not have secrets.","type":"string"},"token_endpoint_auth_signing_alg":{"description":"OAuth 2.0 Token Endpoint Signing Algorithm\n\nRequested Client Authentication signing algorithm for the Token Endpoint.","type":"string"},"tos_uri":{"description":"OAuth 2.0 Client Terms of Service URI\n\nA URL string pointing to a human-readable terms of service\ndocument for the client that describes a contractual relationship\nbetween the end-user and the client that the end-user accepts when\nauthorizing the client.","type":"string"},"updated_at":{"description":"OAuth 2.0 Client Last Update Date\n\nUpdatedAt returns the timestamp of the last update.","format":"date-time","type":"string"},"userinfo_signed_response_alg":{"description":"OpenID Connect Request Userinfo Signed Response Algorithm\n\nJWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT\n[JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims\nas a UTF-8 encoded JSON object using the application/json content-type.","type":"string"}},"title":"OAuth 2.0 Client","type":"object"},"oAuth2ClientTokenLifespans":{"description":"Lifespans of different token types issued for this OAuth 2.0 Client.","properties":{"authorization_code_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"authorization_code_grant_id_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"authorization_code_grant_refresh_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"client_credentials_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"implicit_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"implicit_grant_id_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"jwt_bearer_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"refresh_token_grant_access_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"refresh_token_grant_id_token_lifespan":{"$ref":"#/components/schemas/NullDuration"},"refresh_token_grant_refresh_token_lifespan":{"$ref":"#/components/schemas/NullDuration"}},"title":"OAuth 2.0 Client Token Lifespans","type":"object"},"oAuth2ConsentRequest":{"properties":{"acr":{"description":"ACR represents the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it\nto express that, for example, a user authenticated using two factor authentication.","type":"string"},"amr":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"challenge":{"description":"ID is the identifier (\"authorization challenge\") of the consent authorization request. It is used to\nidentify the session.","type":"string"},"client":{"$ref":"#/components/schemas/oAuth2Client"},"context":{"$ref":"#/components/schemas/JSONRawMessage"},"login_challenge":{"description":"LoginChallenge is the login challenge this consent challenge belongs to. It can be used to associate\na login and consent request in the login & consent app.","type":"string"},"login_session_id":{"description":"LoginSessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag)\nthis ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false)\nthis will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back-\nchannel logout. It's value can generally be used to associate consecutive login requests by a certain user.","type":"string"},"oidc_context":{"$ref":"#/components/schemas/oAuth2ConsentRequestOpenIDConnectContext"},"request_url":{"description":"RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which\ninitiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but\nmight come in handy if you want to deal with additional request parameters.","type":"string"},"requested_access_token_audience":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"requested_scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"skip":{"description":"Skip, if true, implies that the client has requested the same scopes from the same user previously.\nIf true, you must not ask the user to grant the requested scopes. You must however either allow or deny the\nconsent request using the usual API call.","type":"boolean"},"subject":{"description":"Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope\nrequested by the OAuth 2.0 client.","type":"string"}},"required":["challenge"],"title":"Contains information on an ongoing consent request.","type":"object"},"oAuth2ConsentRequestOpenIDConnectContext":{"properties":{"acr_values":{"description":"ACRValues is the Authentication AuthorizationContext Class Reference requested in the OAuth 2.0 Authorization request.\nIt is a parameter defined by OpenID Connect and expresses which level of authentication (e.g. 2FA) is required.\n\nOpenID Connect defines it as follows:\n> Requested Authentication AuthorizationContext Class Reference values. Space-separated string that specifies the acr values\nthat the Authorization Server is being requested to use for processing this Authentication Request, with the\nvalues appearing in order of preference. The Authentication AuthorizationContext Class satisfied by the authentication\nperformed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a\nVoluntary Claim by this parameter.","items":{"type":"string"},"type":"array"},"display":{"description":"Display is a string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User.\nThe defined values are:\npage: The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode.\npopup: The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over.\ntouch: The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface.\nwap: The Authorization Server SHOULD display the authentication and consent UI consistent with a \"feature phone\" type display.\n\nThe Authorization Server MAY also attempt to detect the capabilities of the User Agent and present an appropriate display.","type":"string"},"id_token_hint_claims":{"additionalProperties":{},"description":"IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the\nEnd-User's current or past authenticated session with the Client.","type":"object"},"login_hint":{"description":"LoginHint hints about the login identifier the End-User might use to log in (if necessary).\nThis hint can be used by an RP if it first asks the End-User for their e-mail address (or other identifier)\nand then wants to pass that value as a hint to the discovered authorization service. This value MAY also be a\nphone number in the format specified for the phone_number Claim. The use of this parameter is optional.","type":"string"},"ui_locales":{"description":"UILocales is the End-User'id preferred languages and scripts for the user interface, represented as a\nspace-separated list of BCP47 [RFC5646] language tag values, ordered by preference. For instance, the value\n\"fr-CA fr en\" represents a preference for French as spoken in Canada, then French (without a region designation),\nfollowed by English (without a region designation). An error SHOULD NOT result if some or all of the requested\nlocales are not supported by the OpenID Provider.","items":{"type":"string"},"type":"array"}},"title":"Contains optional information about the OpenID Connect request.","type":"object"},"oAuth2ConsentSession":{"description":"A completed OAuth 2.0 Consent Session.","properties":{"consent_request":{"$ref":"#/components/schemas/oAuth2ConsentRequest"},"expires_at":{"properties":{"access_token":{"format":"date-time","type":"string"},"authorize_code":{"format":"date-time","type":"string"},"id_token":{"format":"date-time","type":"string"},"par_context":{"format":"date-time","type":"string"},"refresh_token":{"format":"date-time","type":"string"}},"type":"object"},"grant_access_token_audience":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"grant_scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"handled_at":{"$ref":"#/components/schemas/nullTime"},"remember":{"description":"Remember Consent\n\nRemember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same\nclient asks the same user for the same, or a subset of, scope.","type":"boolean"},"remember_for":{"description":"Remember Consent For\n\nRememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the\nauthorization will be remembered indefinitely.","format":"int64","type":"integer"},"session":{"$ref":"#/components/schemas/acceptOAuth2ConsentRequestSession"}},"title":"OAuth 2.0 Consent Session","type":"object"},"oAuth2ConsentSessions":{"description":"List of OAuth 2.0 Consent Sessions","items":{"$ref":"#/components/schemas/oAuth2ConsentSession"},"type":"array"},"oAuth2LoginRequest":{"properties":{"challenge":{"description":"ID is the identifier (\"login challenge\") of the login request. It is used to\nidentify the session.","type":"string"},"client":{"$ref":"#/components/schemas/oAuth2Client"},"oidc_context":{"$ref":"#/components/schemas/oAuth2ConsentRequestOpenIDConnectContext"},"request_url":{"description":"RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which\ninitiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but\nmight come in handy if you want to deal with additional request parameters.","type":"string"},"requested_access_token_audience":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"requested_scope":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"session_id":{"description":"SessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag)\nthis ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false)\nthis will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back-\nchannel logout. It's value can generally be used to associate consecutive login requests by a certain user.","type":"string"},"skip":{"description":"Skip, if true, implies that the client has requested the same scopes from the same user previously.\nIf true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL.\n\nThis feature allows you to update / set session information.","type":"boolean"},"subject":{"description":"Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope\nrequested by the OAuth 2.0 client. If this value is set and `skip` is true, you MUST include this subject type\nwhen accepting the login request, or the request will fail.","type":"string"}},"required":["challenge","requested_scope","requested_access_token_audience","skip","subject","client","request_url"],"title":"Contains information on an ongoing login request.","type":"object"},"oAuth2LogoutRequest":{"properties":{"challenge":{"description":"Challenge is the identifier (\"logout challenge\") of the logout authentication request. It is used to\nidentify the session.","type":"string"},"client":{"$ref":"#/components/schemas/oAuth2Client"},"request_url":{"description":"RequestURL is the original Logout URL requested.","type":"string"},"rp_initiated":{"description":"RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client.","type":"boolean"},"sid":{"description":"SessionID is the login session ID that was requested to log out.","type":"string"},"subject":{"description":"Subject is the user for whom the logout was request.","type":"string"}},"title":"Contains information about an ongoing logout request.","type":"object"},"oAuth2RedirectTo":{"description":"Contains a redirect URL used to complete a login, consent, or logout request.","properties":{"redirect_to":{"description":"RedirectURL is the URL which you should redirect the user's browser to once the authentication process is completed.","type":"string"}},"required":["redirect_to"],"title":"OAuth 2.0 Redirect Browser To","type":"object"},"oAuth2TokenExchange":{"description":"OAuth2 Token Exchange Result","properties":{"access_token":{"description":"The access token issued by the authorization server.","type":"string"},"expires_in":{"description":"The lifetime in seconds of the access token. For\nexample, the value \"3600\" denotes that the access token will\nexpire in one hour from the time the response was generated.","format":"int64","type":"integer"},"id_token":{"description":"To retrieve a refresh token request the id_token scope.","format":"int64","type":"integer"},"refresh_token":{"description":"The refresh token, which can be used to obtain new\naccess tokens. To retrieve it add the scope \"offline\" to your access token request.","type":"string"},"scope":{"description":"The scope of the access token","type":"string"},"token_type":{"description":"The type of the token issued","type":"string"}},"type":"object"},"oidcConfiguration":{"description":"Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms\namong others.","properties":{"authorization_endpoint":{"description":"OAuth 2.0 Authorization Endpoint URL","example":"https://playground.ory.sh/ory-hydra/public/oauth2/auth","type":"string"},"backchannel_logout_session_supported":{"description":"OpenID Connect Back-Channel Logout Session Required\n\nBoolean value specifying whether the OP can pass a sid (session ID) Claim in the Logout Token to identify the RP\nsession with the OP. If supported, the sid Claim is also included in ID Tokens issued by the OP","type":"boolean"},"backchannel_logout_supported":{"description":"OpenID Connect Back-Channel Logout Supported\n\nBoolean value specifying whether the OP supports back-channel logout, with true indicating support.","type":"boolean"},"claims_parameter_supported":{"description":"OpenID Connect Claims Parameter Parameter Supported\n\nBoolean value specifying whether the OP supports use of the claims parameter, with true indicating support.","type":"boolean"},"claims_supported":{"description":"OpenID Connect Supported Claims\n\nJSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply\nvalues for. Note that for privacy or other reasons, this might not be an exhaustive list.","items":{"type":"string"},"type":"array"},"code_challenge_methods_supported":{"description":"OAuth 2.0 PKCE Supported Code Challenge Methods\n\nJSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported\nby this authorization server.","items":{"type":"string"},"type":"array"},"credentials_endpoint_draft_00":{"description":"OpenID Connect Verifiable Credentials Endpoint\n\nContains the URL of the Verifiable Credentials Endpoint.","type":"string"},"credentials_supported_draft_00":{"description":"OpenID Connect Verifiable Credentials Supported\n\nJSON array containing a list of the Verifiable Credentials supported by this authorization server.","items":{"$ref":"#/components/schemas/credentialSupportedDraft00"},"type":"array"},"end_session_endpoint":{"description":"OpenID Connect End-Session Endpoint\n\nURL at the OP to which an RP can perform a redirect to request that the End-User be logged out at the OP.","type":"string"},"frontchannel_logout_session_supported":{"description":"OpenID Connect Front-Channel Logout Session Required\n\nBoolean value specifying whether the OP can pass iss (issuer) and sid (session ID) query parameters to identify\nthe RP session with the OP when the frontchannel_logout_uri is used. If supported, the sid Claim is also\nincluded in ID Tokens issued by the OP.","type":"boolean"},"frontchannel_logout_supported":{"description":"OpenID Connect Front-Channel Logout Supported\n\nBoolean value specifying whether the OP supports HTTP-based logout, with true indicating support.","type":"boolean"},"grant_types_supported":{"description":"OAuth 2.0 Supported Grant Types\n\nJSON array containing a list of the OAuth 2.0 Grant Type values that this OP supports.","items":{"type":"string"},"type":"array"},"id_token_signed_response_alg":{"description":"OpenID Connect Default ID Token Signing Algorithms\n\nAlgorithm used to sign OpenID Connect ID Tokens.","items":{"type":"string"},"type":"array"},"id_token_signing_alg_values_supported":{"description":"OpenID Connect Supported ID Token Signing Algorithms\n\nJSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for the ID Token\nto encode the Claims in a JWT.","items":{"type":"string"},"type":"array"},"issuer":{"description":"OpenID Connect Issuer URL\n\nAn URL using the https scheme with no query or fragment component that the OP asserts as its IssuerURL Identifier.\nIf IssuerURL discovery is supported , this value MUST be identical to the issuer value returned\nby WebFinger. This also MUST be identical to the iss Claim value in ID Tokens issued from this IssuerURL.","example":"https://playground.ory.sh/ory-hydra/public/","type":"string"},"jwks_uri":{"description":"OpenID Connect Well-Known JSON Web Keys URL\n\nURL of the OP's JSON Web Key Set [JWK] document. This contains the signing key(s) the RP uses to validate\nsignatures from the OP. The JWK Set MAY also contain the Server's encryption key(s), which are used by RPs\nto encrypt requests to the Server. When both signing and encryption keys are made available, a use (Key Use)\nparameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage.\nAlthough some algorithms allow the same key to be used for both signatures and encryption, doing so is\nNOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of\nkeys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.","example":"https://{slug}.projects.oryapis.com/.well-known/jwks.json","type":"string"},"registration_endpoint":{"description":"OpenID Connect Dynamic Client Registration Endpoint URL","example":"https://playground.ory.sh/ory-hydra/admin/client","type":"string"},"request_object_signing_alg_values_supported":{"description":"OpenID Connect Supported Request Object Signing Algorithms\n\nJSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for Request Objects,\nwhich are described in Section 6.1 of OpenID Connect Core 1.0 [OpenID.Core]. These algorithms are used both when\nthe Request Object is passed by value (using the request parameter) and when it is passed by reference\n(using the request_uri parameter).","items":{"type":"string"},"type":"array"},"request_parameter_supported":{"description":"OpenID Connect Request Parameter Supported\n\nBoolean value specifying whether the OP supports use of the request parameter, with true indicating support.","type":"boolean"},"request_uri_parameter_supported":{"description":"OpenID Connect Request URI Parameter Supported\n\nBoolean value specifying whether the OP supports use of the request_uri parameter, with true indicating support.","type":"boolean"},"require_request_uri_registration":{"description":"OpenID Connect Requires Request URI Registration\n\nBoolean value specifying whether the OP requires any request_uri values used to be pre-registered\nusing the request_uris registration parameter.","type":"boolean"},"response_modes_supported":{"description":"OAuth 2.0 Supported Response Modes\n\nJSON array containing a list of the OAuth 2.0 response_mode values that this OP supports.","items":{"type":"string"},"type":"array"},"response_types_supported":{"description":"OAuth 2.0 Supported Response Types\n\nJSON array containing a list of the OAuth 2.0 response_type values that this OP supports. Dynamic OpenID\nProviders MUST support the code, id_token, and the token id_token Response Type values.","items":{"type":"string"},"type":"array"},"revocation_endpoint":{"description":"OAuth 2.0 Token Revocation URL\n\nURL of the authorization server's OAuth 2.0 revocation endpoint.","type":"string"},"scopes_supported":{"description":"OAuth 2.0 Supported Scope Values\n\nJSON array containing a list of the OAuth 2.0 [RFC6749] scope values that this server supports. The server MUST\nsupport the openid scope value. Servers MAY choose not to advertise some supported scope values even when this parameter is used","items":{"type":"string"},"type":"array"},"subject_types_supported":{"description":"OpenID Connect Supported Subject Types\n\nJSON array containing a list of the Subject Identifier types that this OP supports. Valid types include\npairwise and public.","items":{"type":"string"},"type":"array"},"token_endpoint":{"description":"OAuth 2.0 Token Endpoint URL","example":"https://playground.ory.sh/ory-hydra/public/oauth2/token","type":"string"},"token_endpoint_auth_methods_supported":{"description":"OAuth 2.0 Supported Client Authentication Methods\n\nJSON array containing a list of Client Authentication methods supported by this Token Endpoint. The options are\nclient_secret_post, client_secret_basic, client_secret_jwt, and private_key_jwt, as described in Section 9 of OpenID Connect Core 1.0","items":{"type":"string"},"type":"array"},"userinfo_endpoint":{"description":"OpenID Connect Userinfo URL\n\nURL of the OP's UserInfo Endpoint.","type":"string"},"userinfo_signed_response_alg":{"description":"OpenID Connect User Userinfo Signing Algorithm\n\nAlgorithm used to sign OpenID Connect Userinfo Responses.","items":{"type":"string"},"type":"array"},"userinfo_signing_alg_values_supported":{"description":"OpenID Connect Supported Userinfo Signing Algorithm\n\nJSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].","items":{"type":"string"},"type":"array"}},"required":["issuer","authorization_endpoint","token_endpoint","jwks_uri","subject_types_supported","response_types_supported","id_token_signing_alg_values_supported","id_token_signed_response_alg","userinfo_signed_response_alg"],"title":"OpenID Connect Discovery Metadata","type":"object"},"oidcUserInfo":{"description":"OpenID Connect Userinfo","properties":{"birthdate":{"description":"End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates.","type":"string"},"email":{"description":"End-User's preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The RP MUST NOT rely upon this value being unique, as discussed in Section 5.7.","type":"string"},"email_verified":{"description":"True if the End-User's e-mail address has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this e-mail address was controlled by the End-User at the time the verification was performed. The means by which an e-mail address is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating.","type":"boolean"},"family_name":{"description":"Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters.","type":"string"},"gender":{"description":"End-User's gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable.","type":"string"},"given_name":{"description":"Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters.","type":"string"},"locale":{"description":"End-User's locale, represented as a BCP47 [RFC5646] language tag. This is typically an ISO 639-1 Alpha-2 [ISO639‑1] language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US; Relying Parties MAY choose to accept this locale syntax as well.","type":"string"},"middle_name":{"description":"Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used.","type":"string"},"name":{"description":"End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences.","type":"string"},"nickname":{"description":"Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael.","type":"string"},"phone_number":{"description":"End-User's preferred telephone number. E.164 [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678.","type":"string"},"phone_number_verified":{"description":"True if the End-User's phone number has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this phone number was controlled by the End-User at the time the verification was performed. The means by which a phone number is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. When true, the phone_number Claim MUST be in E.164 format and any extensions MUST be represented in RFC 3966 format.","type":"boolean"},"picture":{"description":"URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User.","type":"string"},"preferred_username":{"description":"Non-unique shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace.","type":"string"},"profile":{"description":"URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User.","type":"string"},"sub":{"description":"Subject - Identifier for the End-User at the IssuerURL.","type":"string"},"updated_at":{"description":"Time the End-User's information was last updated. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time.","format":"int64","type":"integer"},"website":{"description":"URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with.","type":"string"},"zoneinfo":{"description":"String from zoneinfo [zoneinfo] time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles.","type":"string"}},"type":"object"},"pagination":{"properties":{"page":{"default":1,"description":"Pagination Page\n\nThis value is currently an integer, but it is not sequential. The value is not the page number, but a\nreference. The next page can be any number and some numbers might return an empty list.\n\nFor example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist.","format":"int64","minimum":1,"type":"integer"},"page_size":{"default":250,"description":"Items per page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","format":"int64","maximum":1000,"minimum":1,"type":"integer"},"page_token":{"default":"1","description":"Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","minimum":1,"type":"string"},"per_page":{"default":250,"description":"Items per Page\n\nThis is the number of items per page.","format":"int64","maximum":1000,"minimum":1,"type":"integer"}},"type":"object"},"paginationHeaders":{"properties":{"link":{"description":"The link header contains pagination links.\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).\n\nin: header","type":"string"},"x-total-count":{"description":"The total number of clients.\n\nin: header","type":"string"}},"type":"object"},"patchIdentitiesBody":{"description":"Patch Identities Body","properties":{"identities":{"description":"Identities holds the list of patches to apply\n\nrequired","items":{"$ref":"#/components/schemas/identityPatch"},"type":"array"}},"type":"object"},"performNativeLogoutBody":{"description":"Perform Native Logout Request Body","properties":{"session_token":{"description":"The Session Token\n\nInvalidate this session token.","type":"string"}},"required":["session_token"],"type":"object"},"permissionsOnProject":{"additionalProperties":{"type":"boolean"},"description":"Get Permissions on Project Request Parameters","type":"object"},"plans":{"$ref":"#/components/schemas/Pricing"},"postCheckPermissionBody":{"description":"Check Permission using Post Request Body","properties":{"namespace":{"description":"Namespace to query","type":"string"},"object":{"description":"Object to query","type":"string"},"relation":{"description":"Relation to query","type":"string"},"subject_id":{"description":"SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.","type":"string"},"subject_set":{"$ref":"#/components/schemas/subjectSet"}},"type":"object"},"postCheckPermissionOrErrorBody":{"description":"Post Check Permission Or Error Body","properties":{"namespace":{"description":"Namespace to query","type":"string"},"object":{"description":"Object to query","type":"string"},"relation":{"description":"Relation to query","type":"string"},"subject_id":{"description":"SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.","type":"string"},"subject_set":{"$ref":"#/components/schemas/subjectSet"}},"type":"object"},"project":{"properties":{"cors_admin":{"$ref":"#/components/schemas/CORS"},"cors_public":{"$ref":"#/components/schemas/CORS"},"id":{"description":"The project's ID.","format":"uuid","readOnly":true,"type":"string"},"name":{"description":"The name of the project.","type":"string"},"revision_id":{"description":"The configuration revision ID.","format":"uuid","readOnly":true,"type":"string"},"services":{"$ref":"#/components/schemas/projectServices"},"slug":{"description":"The project's slug","readOnly":true,"type":"string"},"state":{"description":"The state of the project.\nrunning Running\nhalted Halted\ndeleted Deleted","enum":["running","halted","deleted"],"readOnly":true,"type":"string","x-go-enum-desc":"running Running\nhalted Halted\ndeleted Deleted"}},"required":["id","revision_id","slug","services","state","name","cors_public","cors_admin"],"type":"object"},"projectApiKey":{"properties":{"created_at":{"description":"The token's creation date","format":"date-time","readOnly":true,"type":"string"},"id":{"description":"The token's ID.","format":"uuid","readOnly":true,"type":"string"},"name":{"description":"The Token's Name\n\nSet this to help you remember, for example, where you use the token.","type":"string"},"owner_id":{"description":"The token's owner","format":"uuid","readOnly":true,"type":"string"},"project_id":{"description":"The Token's Project ID","format":"uuid","readOnly":true,"type":"string"},"updated_at":{"description":"The token's last update date","format":"date-time","readOnly":true,"type":"string"},"value":{"description":"The token's value","readOnly":true,"type":"string"}},"required":["id","name","owner_id"],"type":"object"},"projectApiKeys":{"items":{"$ref":"#/components/schemas/projectApiKey"},"type":"array"},"projectBranding":{"properties":{"created_at":{"description":"The Customization Creation Date","format":"date-time","readOnly":true,"type":"string"},"default_theme":{"$ref":"#/components/schemas/projectBrandingTheme"},"id":{"description":"The customization ID.","format":"uuid","readOnly":true,"type":"string"},"project_id":{"description":"The Project's ID this customization is associated with","format":"uuid","type":"string"},"themes":{"$ref":"#/components/schemas/projectBrandingThemes"},"updated_at":{"description":"Last Time Branding was Updated","format":"date-time","readOnly":true,"type":"string"}},"required":["id","project_id","default_theme","themes","created_at","updated_at"],"title":"ProjectBranding holds all settings for customizing the Ory Account Experience.","type":"object"},"projectBrandingColors":{"properties":{"accent_default_color":{"description":"AccentDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_disabled_color":{"description":"AccentDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_emphasis_color":{"description":"AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_muted_color":{"description":"AccentMutedColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_subtle_color":{"description":"AccentSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"background_canvas_color":{"description":"BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"background_subtle_color":{"description":"BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"background_surface_color":{"description":"BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"border_default_color":{"description":"BorderDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_default_color":{"description":"ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_emphasis_color":{"description":"ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_muted_color":{"description":"ErrorMutedColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_subtle_color":{"description":"ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_default_color":{"description":"ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_disabled_color":{"description":"ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_muted_color":{"description":"ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_on_accent_color":{"description":"ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_on_dark_color":{"description":"ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_on_disabled_color":{"description":"ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_subtle_color":{"description":"ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_background_color":{"description":"InputBackgroundColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_disabled_color":{"description":"InputDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_placeholder_color":{"description":"InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_text_color":{"description":"InputTextColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"primary_color":{"description":"Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.","type":"string"},"secondary_color":{"description":"Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.","type":"string"},"success_emphasis_color":{"description":"SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"text_default_color":{"description":"TextDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"text_disabled_color":{"description":"TextDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"}},"title":"ProjectBrandingColors are the colors used by the Ory Account Experience theme.","type":"object"},"projectBrandingTheme":{"properties":{"accent_default_color":{"description":"AccentDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_disabled_color":{"description":"AccentDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_emphasis_color":{"description":"AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_muted_color":{"description":"AccentMutedColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"accent_subtle_color":{"description":"AccentSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"background_canvas_color":{"description":"BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"background_subtle_color":{"description":"BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"background_surface_color":{"description":"BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"border_default_color":{"description":"BorderDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"created_at":{"description":"The Customization Creation Date.","format":"date-time","readOnly":true,"type":"string"},"error_default_color":{"description":"ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_emphasis_color":{"description":"ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_muted_color":{"description":"ErrorMutedColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"error_subtle_color":{"description":"ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_default_color":{"description":"ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_disabled_color":{"description":"ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_muted_color":{"description":"ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_on_accent_color":{"description":"ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_on_dark_color":{"description":"ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_on_disabled_color":{"description":"ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"foreground_subtle_color":{"description":"ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"id":{"description":"The customization theme ID.","format":"uuid","readOnly":true,"type":"string"},"input_background_color":{"description":"InputBackgroundColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_disabled_color":{"description":"InputDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_placeholder_color":{"description":"InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"input_text_color":{"description":"InputTextColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"logo_type":{"description":"Logo Type\nThe Logo mime type.","type":"string"},"logo_url":{"description":"Logo URL\nLogo can be an https:// or base64:// URL. If the URL is not allowed, the logo will be stored inside the Ory Network storage bucket.","type":"string"},"name":{"description":"The customization theme name.","type":"string"},"primary_color":{"description":"Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.","type":"string"},"project_branding_id":{"description":"The ProjectBranding ID this customization is associated with.","format":"uuid","type":"string"},"secondary_color":{"description":"Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.","type":"string"},"success_emphasis_color":{"description":"SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"text_default_color":{"description":"TextDefaultColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"text_disabled_color":{"description":"TextDisabledColor is a hex color code used by the Ory Account Experience theme.","type":"string"},"updated_at":{"description":"Last Time Branding was Updated.","format":"date-time","readOnly":true,"type":"string"}},"required":["id","project_branding_id","name","created_at","updated_at"],"title":"ProjectBrandingTheme represents a Theme for the Ory Account Experience.","type":"object"},"projectBrandingThemes":{"items":{"$ref":"#/components/schemas/projectBrandingTheme"},"title":"ProjectBrandingThemes is a list of ProjectBrandingTheme.","type":"array"},"projectHost":{"properties":{"host":{"description":"The project's host.","type":"string"},"id":{"description":"The mapping's ID.","format":"uuid","readOnly":true,"type":"string"},"project_id":{"description":"The Revision's Project ID","format":"uuid","type":"string"}},"required":["id","host","project_id"],"type":"object"},"projectMember":{"$ref":"#/components/schemas/cloudAccount"},"projectMembers":{"items":{"$ref":"#/components/schemas/projectMember"},"type":"array"},"projectMetadata":{"properties":{"created_at":{"description":"The Project's Creation Date","format":"date-time","type":"string"},"hosts":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"id":{"description":"The project's ID.","format":"uuid","readOnly":true,"type":"string"},"name":{"description":"The project's name if set","type":"string"},"slug":{"description":"The project's slug","readOnly":true,"type":"string"},"state":{"description":"The state of the project.\nrunning Running\nhalted Halted\ndeleted Deleted","enum":["running","halted","deleted"],"type":"string","x-go-enum-desc":"running Running\nhalted Halted\ndeleted Deleted"},"subscription_id":{"$ref":"#/components/schemas/NullUUID"},"subscription_plan":{"$ref":"#/components/schemas/String"},"updated_at":{"description":"Last Time Project was Updated","format":"date-time","type":"string"}},"required":["id","hosts","state","created_at","updated_at","name"],"type":"object"},"projectMetadataList":{"items":{"$ref":"#/components/schemas/projectMetadata"},"type":"array"},"projectRevisionHooks":{"items":{"$ref":"#/components/schemas/normalizedProjectRevisionHook"},"type":"array"},"projectRevisionIdentitySchemas":{"items":{"$ref":"#/components/schemas/normalizedProjectRevisionIdentitySchema"},"type":"array"},"projectRevisionThirdPartyLoginProviders":{"items":{"$ref":"#/components/schemas/normalizedProjectRevisionThirdPartyProvider"},"type":"array"},"projectRevisions":{"items":{"$ref":"#/components/schemas/normalizedProjectRevision"},"type":"array"},"projectServiceIdentity":{"properties":{"config":{"type":"object"}},"required":["config"],"type":"object"},"projectServiceOAuth2":{"properties":{"config":{"type":"object"}},"required":["config"],"type":"object"},"projectServicePermission":{"properties":{"config":{"type":"object"}},"required":["config"],"type":"object"},"projectServices":{"properties":{"identity":{"$ref":"#/components/schemas/projectServiceIdentity"},"oauth2":{"$ref":"#/components/schemas/projectServiceOAuth2"},"permission":{"$ref":"#/components/schemas/projectServicePermission"}},"type":"object"},"projects":{"items":{"$ref":"#/components/schemas/project"},"type":"array"},"quotaUsage":{"properties":{"additional_price":{"format":"int64","type":"integer"},"can_use_more":{"type":"boolean"},"feature":{"description":"\nregion_eu RegionEU\nregion_us RegionUS\nregion_apac RegionAPAC\nregion_global RegionGlobal\nproduction_projects ProductionProjects\ndaily_active_users DailyActiveUsers\ncustom_domains CustomDomains\nsla SLA\ncollaborator_seats CollaboratorSeats\nedge_cache EdgeCache\nbranding_themes BrandingThemes\nzendesk_support ZendeskSupport\nproject_metrics ProjectMetrics\nrate_limit_tier RateLimitTier\nsession_rate_limit_tier RateLimitTierSessions","enum":["region_eu","region_us","region_apac","region_global","production_projects","daily_active_users","custom_domains","sla","collaborator_seats","edge_cache","branding_themes","zendesk_support","project_metrics","rate_limit_tier","session_rate_limit_tier"],"type":"string","x-go-enum-desc":"region_eu RegionEU\nregion_us RegionUS\nregion_apac RegionAPAC\nregion_global RegionGlobal\nproduction_projects ProductionProjects\ndaily_active_users DailyActiveUsers\ncustom_domains CustomDomains\nsla SLA\ncollaborator_seats CollaboratorSeats\nedge_cache EdgeCache\nbranding_themes BrandingThemes\nzendesk_support ZendeskSupport\nproject_metrics ProjectMetrics\nrate_limit_tier RateLimitTier\nsession_rate_limit_tier RateLimitTierSessions"},"feature_available":{"type":"boolean"},"included":{"format":"int64","type":"integer"},"used":{"format":"int64","type":"integer"}},"required":["feature","included","used","additional_price","can_use_more","feature_available"],"type":"object"},"recoveryCodeForIdentity":{"description":"Used when an administrator creates a recovery code for an identity.","properties":{"expires_at":{"description":"Expires At is the timestamp of when the recovery flow expires\n\nThe timestamp when the recovery link expires.","format":"date-time","type":"string"},"recovery_code":{"description":"RecoveryCode is the code that can be used to recover the account","type":"string"},"recovery_link":{"description":"RecoveryLink with flow\n\nThis link opens the recovery UI with an empty `code` field.","type":"string"}},"required":["recovery_link","recovery_code"],"title":"Recovery Code for Identity","type":"object"},"recoveryFlow":{"description":"This request is used when an identity wants to recover their account.\n\nWe recommend reading the [Account Recovery Documentation](../self-service/flows/password-reset-account-recovery)","properties":{"active":{"description":"Active, if set, contains the recovery method that is being used. It is initially\nnot set.","type":"string"},"expires_at":{"description":"ExpiresAt is the time (UTC) when the request expires. If the user still wishes to update the setting,\na new request has to be initiated.","format":"date-time","type":"string"},"id":{"description":"ID represents the request's unique ID. When performing the recovery flow, this\nrepresents the id in the recovery ui's query parameter: http://?request=","format":"uuid","type":"string"},"issued_at":{"description":"IssuedAt is the time (UTC) when the request occurred.","format":"date-time","type":"string"},"request_url":{"description":"RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.","type":"string"},"return_to":{"description":"ReturnTo contains the requested return_to URL.","type":"string"},"state":{"$ref":"#/components/schemas/recoveryFlowState"},"type":{"$ref":"#/components/schemas/selfServiceFlowType"},"ui":{"$ref":"#/components/schemas/uiContainer"}},"required":["id","type","expires_at","issued_at","request_url","ui","state"],"title":"A Recovery Flow","type":"object"},"recoveryFlowState":{"description":"The state represents the state of the recovery flow.\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed.","enum":["choose_method","sent_email","passed_challenge"],"title":"Recovery Flow State","type":"string"},"recoveryIdentityAddress":{"properties":{"created_at":{"description":"CreatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"id":{"format":"uuid","type":"string"},"updated_at":{"description":"UpdatedAt is a helper struct field for gobuffalo.pop.","format":"date-time","type":"string"},"value":{"type":"string"},"via":{"$ref":"#/components/schemas/RecoveryAddressType"}},"required":["id","value","via"],"type":"object"},"recoveryLinkForIdentity":{"description":"Used when an administrator creates a recovery link for an identity.","properties":{"expires_at":{"description":"Recovery Link Expires At\n\nThe timestamp when the recovery link expires.","format":"date-time","type":"string"},"recovery_link":{"description":"Recovery Link\n\nThis link can be used to recover the account.","type":"string"}},"required":["recovery_link"],"title":"Identity Recovery Link","type":"object"},"registrationFlow":{"properties":{"active":{"$ref":"#/components/schemas/identityCredentialsType"},"expires_at":{"description":"ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in,\na new flow has to be initiated.","format":"date-time","type":"string"},"id":{"description":"ID represents the flow's unique ID. When performing the registration flow, this\nrepresents the id in the registration ui's query parameter: http:///?flow=","format":"uuid","type":"string"},"issued_at":{"description":"IssuedAt is the time (UTC) when the flow occurred.","format":"date-time","type":"string"},"oauth2_login_challenge":{"description":"Ory OAuth 2.0 Login Challenge.\n\nThis value is set using the `login_challenge` query parameter of the registration and login endpoints.\nIf set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.","type":"string"},"oauth2_login_request":{"$ref":"#/components/schemas/oAuth2LoginRequest"},"request_url":{"description":"RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.","type":"string"},"return_to":{"description":"ReturnTo contains the requested return_to URL.","type":"string"},"session_token_exchange_code":{"description":"SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed.\nThis is only set if the client has requested a session token exchange code, and if the flow is of type \"api\",\nand only on creating the flow.","type":"string"},"transient_payload":{"description":"TransientPayload is used to pass data from the registration to a webhook","type":"object"},"type":{"$ref":"#/components/schemas/selfServiceFlowType"},"ui":{"$ref":"#/components/schemas/uiContainer"}},"required":["id","type","expires_at","issued_at","request_url","ui"],"type":"object"},"rejectOAuth2Request":{"properties":{"error":{"description":"The error should follow the OAuth2 error format (e.g. `invalid_request`, `login_required`).\n\nDefaults to `request_denied`.","type":"string"},"error_debug":{"description":"Debug contains information to help resolve the problem as a developer. Usually not exposed\nto the public but only in the server logs.","type":"string"},"error_description":{"description":"Description of the error in a human readable format.","type":"string"},"error_hint":{"description":"Hint to help resolve the error.","type":"string"},"status_code":{"description":"Represents the HTTP status code of the error (e.g. 401 or 403)\n\nDefaults to 400","format":"int64","type":"integer"}},"title":"The request payload used to accept a login or consent request.","type":"object"},"relationQuery":{"description":"Relation Query","properties":{"namespace":{"description":"Namespace to query","type":"string"},"object":{"description":"Object to query","type":"string"},"relation":{"description":"Relation to query","type":"string"},"subject_id":{"description":"SubjectID to query\n\nEither SubjectSet or SubjectID can be provided.","type":"string"},"subject_set":{"$ref":"#/components/schemas/subjectSet"}},"type":"object"},"relationship":{"description":"Relationship","properties":{"namespace":{"description":"Namespace of the Relation Tuple","type":"string"},"object":{"description":"Object of the Relation Tuple","type":"string"},"relation":{"description":"Relation of the Relation Tuple","type":"string"},"subject_id":{"description":"SubjectID of the Relation Tuple\n\nEither SubjectSet or SubjectID can be provided.","type":"string"},"subject_set":{"$ref":"#/components/schemas/subjectSet"}},"required":["namespace","object","relation"],"type":"object"},"relationshipNamespaces":{"description":"Relationship Namespace List","properties":{"namespaces":{"items":{"$ref":"#/components/schemas/namespace"},"type":"array"}},"type":"object"},"relationshipPatch":{"description":"Payload for patching a relationship","properties":{"action":{"enum":["insert","delete"],"type":"string","x-go-enum-desc":"insert ActionInsert\ndelete ActionDelete"},"relation_tuple":{"$ref":"#/components/schemas/relationship"}},"type":"object"},"relationships":{"description":"Paginated Relationship List","properties":{"next_page_token":{"description":"The opaque token to provide in a subsequent request\nto get the next page. It is the empty string iff this is\nthe last page.","type":"string"},"relation_tuples":{"items":{"$ref":"#/components/schemas/relationship"},"type":"array"}},"type":"object"},"schemaPatch":{"properties":{"data":{"description":"The json schema","type":"object"},"name":{"description":"The user defined schema name","type":"string"}},"required":["name","data"],"type":"object"},"selfServiceFlowExpiredError":{"description":"Is sent when a flow is expired","properties":{"error":{"$ref":"#/components/schemas/genericError"},"expired_at":{"description":"When the flow has expired","format":"date-time","type":"string"},"since":{"$ref":"#/components/schemas/Duration"},"use_flow_id":{"description":"The flow ID that should be used for the new flow as it contains the correct messages.","format":"uuid","type":"string"}},"type":"object"},"selfServiceFlowType":{"description":"The flow type can either be `api` or `browser`.","title":"Type is the flow type.","type":"string"},"session":{"description":"A Session","properties":{"active":{"description":"Active state. If false the session is no longer active.","type":"boolean"},"authenticated_at":{"description":"The Session Authentication Timestamp\n\nWhen this session was authenticated at. If multi-factor authentication was used this\nis the time when the last factor was authenticated (e.g. the TOTP code challenge was completed).","format":"date-time","type":"string"},"authentication_methods":{"$ref":"#/components/schemas/sessionAuthenticationMethods"},"authenticator_assurance_level":{"$ref":"#/components/schemas/authenticatorAssuranceLevel"},"devices":{"description":"Devices has history of all endpoints where the session was used","items":{"$ref":"#/components/schemas/sessionDevice"},"type":"array"},"expires_at":{"description":"The Session Expiry\n\nWhen this session expires at.","format":"date-time","type":"string"},"id":{"description":"Session ID","format":"uuid","type":"string"},"identity":{"$ref":"#/components/schemas/identity"},"issued_at":{"description":"The Session Issuance Timestamp\n\nWhen this session was issued at. Usually equal or close to `authenticated_at`.","format":"date-time","type":"string"}},"required":["id","identity"],"type":"object"},"sessionAuthenticationMethod":{"description":"A singular authenticator used during authentication / login.","properties":{"aal":{"$ref":"#/components/schemas/authenticatorAssuranceLevel"},"completed_at":{"description":"When the authentication challenge was completed.","format":"date-time","type":"string"},"method":{"enum":["link_recovery","code_recovery","password","totp","oidc","webauthn","lookup_secret","v0.6_legacy_session"],"title":"The method used","type":"string"},"provider":{"description":"OIDC or SAML provider id used for authentication","type":"string"}},"title":"AuthenticationMethod identifies an authentication method","type":"object"},"sessionAuthenticationMethods":{"description":"A list of authenticators which were used to authenticate the session.","items":{"$ref":"#/components/schemas/sessionAuthenticationMethod"},"title":"List of (Used) AuthenticationMethods","type":"array"},"sessionDevice":{"description":"Device corresponding to a Session","properties":{"id":{"description":"Device record ID","format":"uuid","type":"string"},"ip_address":{"description":"IPAddress of the client","type":"string"},"location":{"description":"Geo Location corresponding to the IP Address","type":"string"},"user_agent":{"description":"UserAgent of the client","type":"string"}},"required":["id"],"type":"object"},"setActiveProjectInConsoleBody":{"description":"Set active project in the Ory Network Console Request Body","properties":{"project_id":{"description":"Project ID\n\nThe Project ID you want to set active.\n\nformat: uuid","type":"string"}},"required":["project_id"],"type":"object"},"setCustomDomainBody":{"description":"Update Custom Hostname Body","properties":{"cookie_domain":{"description":"The domain where cookies will be set. Has to be a parent domain of the custom hostname to work.","type":"string"},"cors_allowed_origins":{"description":"CORS Allowed origins for the custom hostname.","items":{"type":"string"},"type":"array"},"cors_enabled":{"description":"CORS Enabled for the custom hostname.","type":"boolean"},"custom_ui_base_url":{"description":"The custom UI base URL where the UI will be exposed.","type":"string"},"hostname":{"description":"The custom hostname where the API will be exposed.","type":"string"}},"type":"object"},"setProject":{"properties":{"cors_admin":{"$ref":"#/components/schemas/CORS"},"cors_public":{"$ref":"#/components/schemas/CORS"},"name":{"description":"The name of the project.","type":"string"},"services":{"$ref":"#/components/schemas/projectServices"}},"required":["services","name","cors_public","cors_admin"],"type":"object"},"setProjectBrandingThemeBody":{"properties":{"logo_type":{"description":"Logo type","type":"string"},"logo_url":{"description":"Logo URL","type":"string"},"name":{"description":"Branding name","type":"string"},"theme":{"$ref":"#/components/schemas/projectBrandingColors"}},"title":"SetProjectBrandingThemeBody is the request body for the set project branding theme endpoint.","type":"object"},"settingsFlow":{"description":"This flow is used when an identity wants to update settings\n(e.g. profile data, passwords, ...) in a selfservice manner.\n\nWe recommend reading the [User Settings Documentation](../self-service/flows/user-settings)","properties":{"active":{"description":"Active, if set, contains the registration method that is being used. It is initially\nnot set.","type":"string"},"continue_with":{"description":"Contains a list of actions, that could follow this flow\n\nIt can, for example, contain a reference to the verification flow, created as part of the user's\nregistration.","items":{"$ref":"#/components/schemas/continueWith"},"type":"array"},"expires_at":{"description":"ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to update the setting,\na new flow has to be initiated.","format":"date-time","type":"string"},"id":{"description":"ID represents the flow's unique ID. When performing the settings flow, this\nrepresents the id in the settings ui's query parameter: http://?flow=","format":"uuid","type":"string"},"identity":{"$ref":"#/components/schemas/identity"},"issued_at":{"description":"IssuedAt is the time (UTC) when the flow occurred.","format":"date-time","type":"string"},"request_url":{"description":"RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.","type":"string"},"return_to":{"description":"ReturnTo contains the requested return_to URL.","type":"string"},"state":{"$ref":"#/components/schemas/settingsFlowState"},"type":{"$ref":"#/components/schemas/selfServiceFlowType"},"ui":{"$ref":"#/components/schemas/uiContainer"}},"required":["id","type","expires_at","issued_at","request_url","ui","identity","state"],"title":"Flow represents a Settings Flow","type":"object"},"settingsFlowState":{"description":"show_form: No user data has been collected, or it is invalid, and thus the form should be shown.\nsuccess: Indicates that the settings flow has been updated successfully with the provided data.\nDone will stay true when repeatedly checking. If set to true, done will revert back to false only\nwhen a flow with invalid (e.g. \"please use a valid phone number\") data was sent.","enum":["show_form","success"],"title":"State represents the state of this flow. It knows two states:","type":"string"},"stripeCustomer":{"properties":{"id":{"type":"string"}},"type":"object"},"subjectSet":{"properties":{"namespace":{"description":"Namespace of the Subject Set","type":"string"},"object":{"description":"Object of the Subject Set","type":"string"},"relation":{"description":"Relation of the Subject Set","type":"string"}},"required":["namespace","object","relation"],"type":"object"},"subscription":{"properties":{"created_at":{"format":"date-time","readOnly":true,"type":"string"},"currency":{"description":"The currency of the subscription. To change this, a new subscription must be created.\nusd USD\neur Euro","enum":["usd","eur"],"readOnly":true,"type":"string","x-go-enum-desc":"usd USD\neur Euro"},"current_interval":{"description":"The currently active interval of the subscription\nmonthly Monthly\nyearly Yearly","enum":["monthly","yearly"],"readOnly":true,"type":"string","x-go-enum-desc":"monthly Monthly\nyearly Yearly"},"current_plan":{"description":"The currently active plan of the subscription","readOnly":true,"type":"string"},"customer_id":{"description":"The ID of the stripe customer","readOnly":true,"type":"string"},"id":{"description":"The ID of the subscription","format":"uuid","readOnly":true,"type":"string"},"interval_changes_to":{"$ref":"#/components/schemas/String"},"ongoing_stripe_checkout_id":{"$ref":"#/components/schemas/String"},"payed_until":{"description":"Until when the subscription is payed","format":"date-time","readOnly":true,"type":"string"},"plan_changes_at":{"$ref":"#/components/schemas/Time"},"plan_changes_to":{"$ref":"#/components/schemas/String"},"status":{"$ref":"#/components/schemas/SubscriptionStatus"},"updated_at":{"format":"date-time","readOnly":true,"type":"string"}},"required":["id","customer_id","status","payed_until","current_plan","current_interval","plan_changes_to","interval_changes_to","currency","created_at","updated_at"],"type":"object"},"successfulCodeExchangeResponse":{"description":"The Response for Registration Flows via API","properties":{"session":{"$ref":"#/components/schemas/session"},"session_token":{"description":"The Session Token\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!","type":"string"}},"required":["session"],"type":"object"},"successfulNativeLogin":{"description":"The Response for Login Flows via API","properties":{"session":{"$ref":"#/components/schemas/session"},"session_token":{"description":"The Session Token\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!","type":"string"}},"required":["session"],"type":"object"},"successfulNativeRegistration":{"description":"The Response for Registration Flows via API","properties":{"continue_with":{"description":"Contains a list of actions, that could follow this flow\n\nIt can, for example, this will contain a reference to the verification flow, created as part of the user's\nregistration or the token of the session.","items":{"$ref":"#/components/schemas/continueWith"},"type":"array"},"identity":{"$ref":"#/components/schemas/identity"},"session":{"$ref":"#/components/schemas/session"},"session_token":{"description":"The Session Token\n\nThis field is only set when the session hook is configured as a post-registration hook.\n\nA session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization\nHeader:\n\nAuthorization: bearer ${session-token}\n\nThe session token is only issued for API flows, not for Browser flows!","type":"string"}},"required":["identity"],"type":"object"},"successfulProjectUpdate":{"properties":{"project":{"$ref":"#/components/schemas/project"},"warnings":{"description":"Import Warnings\n\nNot all configuration items can be imported to the Ory Network. For example,\nsetting the port does not make sense because the Ory Network provides the runtime\nand networking.\n\nThis field contains warnings where configuration keys were found but can not\nbe imported. These keys will be ignored by the Ory Network. This field will help\nyou understand why certain configuration keys might not be respected!","items":{"$ref":"#/components/schemas/Warning"},"type":"array"}},"required":["project","warnings"],"type":"object"},"tokenPagination":{"properties":{"page_size":{"default":250,"description":"Items per page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","format":"int64","maximum":1000,"minimum":1,"type":"integer"},"page_token":{"default":"1","description":"Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","minimum":1,"type":"string"}},"type":"object"},"tokenPaginationHeaders":{"properties":{"link":{"description":"The link header contains pagination links.\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).\n\nin: header","type":"string"},"x-total-count":{"description":"The total number of clients.\n\nin: header","type":"string"}},"type":"object"},"tokenPaginationRequestParameters":{"description":"The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as:\n`; rel=\"{page}\"`\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","properties":{"page_size":{"default":250,"description":"Items per Page\n\nThis is the number of items per page to return.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","format":"int64","maximum":500,"minimum":1,"type":"integer"},"page_token":{"default":"1","description":"Next Page Token\n\nThe next page token.\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","minimum":1,"type":"string"}},"title":"Pagination Request Parameters","type":"object"},"tokenPaginationResponseHeaders":{"description":"The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as:\n`; rel=\"{page}\"`\n\nFor details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).","properties":{"link":{"description":"The Link HTTP Header\n\nThe `Link` header contains a comma-delimited list of links to the following pages:\n\nfirst: The first page of results.\nnext: The next page of results.\nprev: The previous page of results.\nlast: The last page of results.\n\nPages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples:\n\n; rel=\"first\",; rel=\"next\",; rel=\"prev\",; rel=\"last\"","type":"string"},"x-total-count":{"description":"The X-Total-Count HTTP Header\n\nThe `X-Total-Count` header contains the total number of items in the collection.","format":"int64","type":"integer"}},"title":"Pagination Response Header","type":"object"},"trustOAuth2JwtGrantIssuer":{"description":"Trust OAuth2 JWT Bearer Grant Type Issuer Request Body","properties":{"allow_any_subject":{"description":"The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT.","type":"boolean"},"expires_at":{"description":"The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".","format":"date-time","type":"string"},"issuer":{"description":"The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).","example":"https://jwt-idp.example.com","type":"string"},"jwk":{"$ref":"#/components/schemas/jsonWebKey"},"scope":{"description":"The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])","example":["openid","offline"],"items":{"type":"string"},"type":"array"},"subject":{"description":"The \"subject\" identifies the principal that is the subject of the JWT.","example":"mike@example.com","type":"string"}},"required":["issuer","scope","jwk","expires_at"],"type":"object"},"trustedOAuth2JwtGrantIssuer":{"description":"OAuth2 JWT Bearer Grant Type Issuer Trust Relationship","properties":{"allow_any_subject":{"description":"The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT.","type":"boolean"},"created_at":{"description":"The \"created_at\" indicates, when grant was created.","format":"date-time","type":"string"},"expires_at":{"description":"The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".","format":"date-time","type":"string"},"id":{"example":"9edc811f-4e28-453c-9b46-4de65f00217f","type":"string"},"issuer":{"description":"The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).","example":"https://jwt-idp.example.com","type":"string"},"public_key":{"$ref":"#/components/schemas/trustedOAuth2JwtGrantJsonWebKey"},"scope":{"description":"The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])","example":["openid","offline"],"items":{"type":"string"},"type":"array"},"subject":{"description":"The \"subject\" identifies the principal that is the subject of the JWT.","example":"mike@example.com","type":"string"}},"type":"object"},"trustedOAuth2JwtGrantIssuers":{"description":"OAuth2 JWT Bearer Grant Type Issuer Trust Relationships","items":{"$ref":"#/components/schemas/trustedOAuth2JwtGrantIssuer"},"type":"array"},"trustedOAuth2JwtGrantJsonWebKey":{"description":"OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key","properties":{"kid":{"description":"The \"key_id\" is key unique identifier (same as kid header in jws/jwt).","example":"123e4567-e89b-12d3-a456-426655440000","type":"string"},"set":{"description":"The \"set\" is basically a name for a group(set) of keys. Will be the same as \"issuer\" in grant.","example":"https://jwt-idp.example.com","type":"string"}},"type":"object"},"uiContainer":{"description":"Container represents a HTML Form. The container can work with both HTTP Form and JSON requests","properties":{"action":{"description":"Action should be used as the form action URL `
`.","type":"string"},"messages":{"$ref":"#/components/schemas/uiTexts"},"method":{"description":"Method is the form method (e.g. POST)","type":"string"},"nodes":{"$ref":"#/components/schemas/uiNodes"}},"required":["action","method","nodes"],"type":"object"},"uiNode":{"description":"Nodes are represented as HTML elements or their native UI equivalents. For example,\na node can be an `` tag, or an `` but also `some plain text`.","properties":{"attributes":{"$ref":"#/components/schemas/uiNodeAttributes"},"group":{"description":"Group specifies which group (e.g. password authenticator) this node belongs to.\ndefault DefaultGroup\npassword PasswordGroup\noidc OpenIDConnectGroup\nprofile ProfileGroup\nlink LinkGroup\ncode CodeGroup\ntotp TOTPGroup\nlookup_secret LookupGroup\nwebauthn WebAuthnGroup","enum":["default","password","oidc","profile","link","code","totp","lookup_secret","webauthn"],"type":"string","x-go-enum-desc":"default DefaultGroup\npassword PasswordGroup\noidc OpenIDConnectGroup\nprofile ProfileGroup\nlink LinkGroup\ncode CodeGroup\ntotp TOTPGroup\nlookup_secret LookupGroup\nwebauthn WebAuthnGroup"},"messages":{"$ref":"#/components/schemas/uiTexts"},"meta":{"$ref":"#/components/schemas/uiNodeMeta"},"type":{"description":"The node's type\ntext Text\ninput Input\nimg Image\na Anchor\nscript Script","enum":["text","input","img","a","script"],"type":"string","x-go-enum-desc":"text Text\ninput Input\nimg Image\na Anchor\nscript Script"}},"required":["type","group","attributes","messages","meta"],"title":"Node represents a flow's nodes","type":"object"},"uiNodeAnchorAttributes":{"properties":{"href":{"description":"The link's href (destination) URL.\n\nformat: uri","type":"string"},"id":{"description":"A unique identifier","type":"string"},"node_type":{"description":"NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"a\".","type":"string"},"title":{"$ref":"#/components/schemas/uiText"}},"required":["href","title","id","node_type"],"title":"AnchorAttributes represents the attributes of an anchor node.","type":"object"},"uiNodeAttributes":{"discriminator":{"mapping":{"a":"#/components/schemas/uiNodeAnchorAttributes","img":"#/components/schemas/uiNodeImageAttributes","input":"#/components/schemas/uiNodeInputAttributes","script":"#/components/schemas/uiNodeScriptAttributes","text":"#/components/schemas/uiNodeTextAttributes"},"propertyName":"node_type"},"oneOf":[{"$ref":"#/components/schemas/uiNodeInputAttributes"},{"$ref":"#/components/schemas/uiNodeTextAttributes"},{"$ref":"#/components/schemas/uiNodeImageAttributes"},{"$ref":"#/components/schemas/uiNodeAnchorAttributes"},{"$ref":"#/components/schemas/uiNodeScriptAttributes"}],"title":"Attributes represents a list of attributes (e.g. `href=\"foo\"` for links)."},"uiNodeImageAttributes":{"properties":{"height":{"description":"Height of the image","format":"int64","type":"integer"},"id":{"description":"A unique identifier","type":"string"},"node_type":{"description":"NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"img\".","type":"string"},"src":{"description":"The image's source URL.\n\nformat: uri","type":"string"},"width":{"description":"Width of the image","format":"int64","type":"integer"}},"required":["src","id","width","height","node_type"],"title":"ImageAttributes represents the attributes of an image node.","type":"object"},"uiNodeInputAttributes":{"description":"InputAttributes represents the attributes of an input node","properties":{"autocomplete":{"description":"The autocomplete attribute for the input.\nemail InputAttributeAutocompleteEmail\ntel InputAttributeAutocompleteTel\nurl InputAttributeAutocompleteUrl\ncurrent-password InputAttributeAutocompleteCurrentPassword\nnew-password InputAttributeAutocompleteNewPassword\none-time-code InputAttributeAutocompleteOneTimeCode","enum":["email","tel","url","current-password","new-password","one-time-code"],"type":"string","x-go-enum-desc":"email InputAttributeAutocompleteEmail\ntel InputAttributeAutocompleteTel\nurl InputAttributeAutocompleteUrl\ncurrent-password InputAttributeAutocompleteCurrentPassword\nnew-password InputAttributeAutocompleteNewPassword\none-time-code InputAttributeAutocompleteOneTimeCode"},"disabled":{"description":"Sets the input's disabled field to true or false.","type":"boolean"},"label":{"$ref":"#/components/schemas/uiText"},"name":{"description":"The input's element name.","type":"string"},"node_type":{"description":"NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"input\".","type":"string"},"onclick":{"description":"OnClick may contain javascript which should be executed on click. This is primarily\nused for WebAuthn.","type":"string"},"pattern":{"description":"The input's pattern.","type":"string"},"required":{"description":"Mark this input field as required.","type":"boolean"},"type":{"description":"The input's element type.\ntext InputAttributeTypeText\npassword InputAttributeTypePassword\nnumber InputAttributeTypeNumber\ncheckbox InputAttributeTypeCheckbox\nhidden InputAttributeTypeHidden\nemail InputAttributeTypeEmail\ntel InputAttributeTypeTel\nsubmit InputAttributeTypeSubmit\nbutton InputAttributeTypeButton\ndatetime-local InputAttributeTypeDateTimeLocal\ndate InputAttributeTypeDate\nurl InputAttributeTypeURI","enum":["text","password","number","checkbox","hidden","email","tel","submit","button","datetime-local","date","url"],"type":"string","x-go-enum-desc":"text InputAttributeTypeText\npassword InputAttributeTypePassword\nnumber InputAttributeTypeNumber\ncheckbox InputAttributeTypeCheckbox\nhidden InputAttributeTypeHidden\nemail InputAttributeTypeEmail\ntel InputAttributeTypeTel\nsubmit InputAttributeTypeSubmit\nbutton InputAttributeTypeButton\ndatetime-local InputAttributeTypeDateTimeLocal\ndate InputAttributeTypeDate\nurl InputAttributeTypeURI"},"value":{"description":"The input's value.","nullable":true}},"required":["name","type","disabled","node_type"],"type":"object"},"uiNodeMeta":{"description":"This might include a label and other information that can optionally\nbe used to render UIs.","properties":{"label":{"$ref":"#/components/schemas/uiText"}},"title":"A Node's Meta Information","type":"object"},"uiNodeScriptAttributes":{"properties":{"async":{"description":"The script async type","type":"boolean"},"crossorigin":{"description":"The script cross origin policy","type":"string"},"id":{"description":"A unique identifier","type":"string"},"integrity":{"description":"The script's integrity hash","type":"string"},"node_type":{"description":"NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"script\".","type":"string"},"nonce":{"description":"Nonce for CSP\n\nA nonce you may want to use to improve your Content Security Policy.\nYou do not have to use this value but if you want to improve your CSP\npolicies you may use it. You can also choose to use your own nonce value!","type":"string"},"referrerpolicy":{"description":"The script referrer policy","type":"string"},"src":{"description":"The script source","type":"string"},"type":{"description":"The script MIME type","type":"string"}},"required":["src","async","referrerpolicy","crossorigin","integrity","type","id","nonce","node_type"],"title":"ScriptAttributes represent script nodes which load javascript.","type":"object"},"uiNodeTextAttributes":{"properties":{"id":{"description":"A unique identifier","type":"string"},"node_type":{"description":"NodeType represents this node's types. It is a mirror of `node.type` and\nis primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"text\".","type":"string"},"text":{"$ref":"#/components/schemas/uiText"}},"required":["text","id","node_type"],"title":"TextAttributes represents the attributes of a text node.","type":"object"},"uiNodes":{"items":{"$ref":"#/components/schemas/uiNode"},"type":"array"},"uiText":{"properties":{"context":{"description":"The message's context. Useful when customizing messages.","type":"object"},"id":{"$ref":"#/components/schemas/ID"},"text":{"description":"The message text. Written in american english.","type":"string"},"type":{"description":"The message type.\ninfo Info\nerror Error\nsuccess Success","enum":["info","error","success"],"type":"string","x-go-enum-desc":"info Info\nerror Error\nsuccess Success"}},"required":["id","text","type"],"type":"object"},"uiTexts":{"items":{"$ref":"#/components/schemas/uiText"},"type":"array"},"unexpectedError":{"type":"string"},"updateIdentityBody":{"description":"Update Identity Body","properties":{"credentials":{"$ref":"#/components/schemas/identityWithCredentials"},"metadata_admin":{"description":"Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/`."},"metadata_public":{"description":"Store metadata about the identity which the identity itself can see when calling for example the\nsession endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field."},"schema_id":{"description":"SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. If set\nwill update the Identity's SchemaID.","type":"string"},"state":{"$ref":"#/components/schemas/identityState"},"traits":{"description":"Traits represent an identity's traits. The identity is able to create, modify, and delete traits\nin a self-service manner. The input will always be validated against the JSON Schema defined\nin `schema_id`.","type":"object"}},"required":["schema_id","traits","state"],"type":"object"},"updateLoginFlowBody":{"discriminator":{"mapping":{"lookup_secret":"#/components/schemas/updateLoginFlowWithLookupSecretMethod","oidc":"#/components/schemas/updateLoginFlowWithOidcMethod","password":"#/components/schemas/updateLoginFlowWithPasswordMethod","totp":"#/components/schemas/updateLoginFlowWithTotpMethod","webauthn":"#/components/schemas/updateLoginFlowWithWebAuthnMethod"},"propertyName":"method"},"oneOf":[{"$ref":"#/components/schemas/updateLoginFlowWithPasswordMethod"},{"$ref":"#/components/schemas/updateLoginFlowWithOidcMethod"},{"$ref":"#/components/schemas/updateLoginFlowWithTotpMethod"},{"$ref":"#/components/schemas/updateLoginFlowWithWebAuthnMethod"},{"$ref":"#/components/schemas/updateLoginFlowWithLookupSecretMethod"}]},"updateLoginFlowWithLookupSecretMethod":{"description":"Update Login Flow with Lookup Secret Method","properties":{"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"lookup_secret":{"description":"The lookup secret.","type":"string"},"method":{"description":"Method should be set to \"lookup_secret\" when logging in using the lookup_secret strategy.","type":"string"}},"required":["method","lookup_secret"],"type":"object"},"updateLoginFlowWithOidcMethod":{"description":"Update Login Flow with OpenID Connect Method","properties":{"csrf_token":{"description":"The CSRF Token","type":"string"},"method":{"description":"Method to use\n\nThis field must be set to `oidc` when using the oidc method.","type":"string"},"provider":{"description":"The provider to register with","type":"string"},"traits":{"description":"The identity traits. This is a placeholder for the registration flow.","type":"object"},"upstream_parameters":{"description":"UpstreamParameters are the parameters that are passed to the upstream identity provider.\n\nThese parameters are optional and depend on what the upstream identity provider supports.\nSupported parameters are:\n`login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session.\n`hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`.\n`prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.","type":"object"}},"required":["provider","method"],"type":"object"},"updateLoginFlowWithPasswordMethod":{"description":"Update Login Flow with Password Method","properties":{"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"identifier":{"description":"Identifier is the email or username of the user trying to log in.","type":"string"},"method":{"description":"Method should be set to \"password\" when logging in using the identifier and password strategy.","type":"string"},"password":{"description":"The user's password.","type":"string"},"password_identifier":{"description":"Identifier is the email or username of the user trying to log in.\nThis field is deprecated!","type":"string"}},"required":["method","password","identifier"],"type":"object"},"updateLoginFlowWithTotpMethod":{"description":"Update Login Flow with TOTP Method","properties":{"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"method":{"description":"Method should be set to \"totp\" when logging in using the TOTP strategy.","type":"string"},"totp_code":{"description":"The TOTP code.","type":"string"}},"required":["method","totp_code"],"type":"object"},"updateLoginFlowWithWebAuthnMethod":{"description":"Update Login Flow with WebAuthn Method","properties":{"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"identifier":{"description":"Identifier is the email or username of the user trying to log in.","type":"string"},"method":{"description":"Method should be set to \"webAuthn\" when logging in using the WebAuthn strategy.","type":"string"},"webauthn_login":{"description":"Login a WebAuthn Security Key\n\nThis must contain the ID of the WebAuthN connection.","type":"string"}},"required":["identifier","method"],"type":"object"},"updateRecoveryFlowBody":{"description":"Update Recovery Flow Request Body","discriminator":{"mapping":{"code":"#/components/schemas/updateRecoveryFlowWithCodeMethod","link":"#/components/schemas/updateRecoveryFlowWithLinkMethod"},"propertyName":"method"},"oneOf":[{"$ref":"#/components/schemas/updateRecoveryFlowWithLinkMethod"},{"$ref":"#/components/schemas/updateRecoveryFlowWithCodeMethod"}]},"updateRecoveryFlowWithCodeMethod":{"description":"Update Recovery Flow with Code Method","properties":{"code":{"description":"Code from the recovery email\n\nIf you want to submit a code, use this field, but make sure to _not_ include the email field, as well.","type":"string"},"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"email":{"description":"The email address of the account to recover\n\nIf the email belongs to a valid account, a recovery email will be sent.\n\nIf you want to notify the email address if the account does not exist, see\nthe [notify_unknown_recipients flag](https://www.ory.sh/docs/kratos/self-service/flows/account-recovery-password-reset#attempted-recovery-notifications)\n\nIf a code was already sent, including this field in the payload will invalidate the sent code and re-send a new code.\n\nformat: email","type":"string"},"method":{"description":"Method is the method that should be used for this recovery flow\n\nAllowed values are `link` and `code`.\nlink RecoveryStrategyLink\ncode RecoveryStrategyCode","enum":["link","code"],"type":"string","x-go-enum-desc":"link RecoveryStrategyLink\ncode RecoveryStrategyCode"}},"required":["method"],"type":"object"},"updateRecoveryFlowWithLinkMethod":{"description":"Update Recovery Flow with Link Method","properties":{"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"email":{"description":"Email to Recover\n\nNeeds to be set when initiating the flow. If the email is a registered\nrecovery email, a recovery link will be sent. If the email is not known,\na email with details on what happened will be sent instead.\n\nformat: email","type":"string"},"method":{"description":"Method is the method that should be used for this recovery flow\n\nAllowed values are `link` and `code`\nlink RecoveryStrategyLink\ncode RecoveryStrategyCode","enum":["link","code"],"type":"string","x-go-enum-desc":"link RecoveryStrategyLink\ncode RecoveryStrategyCode"}},"required":["email","method"],"type":"object"},"updateRegistrationFlowBody":{"description":"Update Registration Request Body","discriminator":{"mapping":{"oidc":"#/components/schemas/updateRegistrationFlowWithOidcMethod","password":"#/components/schemas/updateRegistrationFlowWithPasswordMethod","webauthn":"#/components/schemas/updateRegistrationFlowWithWebAuthnMethod"},"propertyName":"method"},"oneOf":[{"$ref":"#/components/schemas/updateRegistrationFlowWithPasswordMethod"},{"$ref":"#/components/schemas/updateRegistrationFlowWithOidcMethod"},{"$ref":"#/components/schemas/updateRegistrationFlowWithWebAuthnMethod"}]},"updateRegistrationFlowWithOidcMethod":{"description":"Update Registration Flow with OpenID Connect Method","properties":{"csrf_token":{"description":"The CSRF Token","type":"string"},"method":{"description":"Method to use\n\nThis field must be set to `oidc` when using the oidc method.","type":"string"},"provider":{"description":"The provider to register with","type":"string"},"traits":{"description":"The identity traits","type":"object"},"transient_payload":{"description":"Transient data to pass along to any webhooks","type":"object"},"upstream_parameters":{"description":"UpstreamParameters are the parameters that are passed to the upstream identity provider.\n\nThese parameters are optional and depend on what the upstream identity provider supports.\nSupported parameters are:\n`login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session.\n`hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`.\n`prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.","type":"object"}},"required":["provider","method"],"type":"object"},"updateRegistrationFlowWithPasswordMethod":{"description":"Update Registration Flow with Password Method","properties":{"csrf_token":{"description":"The CSRF Token","type":"string"},"method":{"description":"Method to use\n\nThis field must be set to `password` when using the password method.","type":"string"},"password":{"description":"Password to sign the user up with","type":"string"},"traits":{"description":"The identity's traits","type":"object"},"transient_payload":{"description":"Transient data to pass along to any webhooks","type":"object"}},"required":["password","traits","method"],"type":"object"},"updateRegistrationFlowWithWebAuthnMethod":{"description":"Update Registration Flow with WebAuthn Method","properties":{"csrf_token":{"description":"CSRFToken is the anti-CSRF token","type":"string"},"method":{"description":"Method\n\nShould be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.","type":"string"},"traits":{"description":"The identity's traits","type":"object"},"transient_payload":{"description":"Transient data to pass along to any webhooks","type":"object"},"webauthn_register":{"description":"Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.","type":"string"},"webauthn_register_displayname":{"description":"Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.","type":"string"}},"required":["traits","method"],"type":"object"},"updateSettingsFlowBody":{"description":"Update Settings Flow Request Body","discriminator":{"mapping":{"lookup_secret":"#/components/schemas/updateSettingsFlowWithLookupMethod","oidc":"#/components/schemas/updateSettingsFlowWithOidcMethod","password":"#/components/schemas/updateSettingsFlowWithPasswordMethod","profile":"#/components/schemas/updateSettingsFlowWithProfileMethod","totp":"#/components/schemas/updateSettingsFlowWithTotpMethod","webauthn":"#/components/schemas/updateSettingsFlowWithWebAuthnMethod"},"propertyName":"method"},"oneOf":[{"$ref":"#/components/schemas/updateSettingsFlowWithPasswordMethod"},{"$ref":"#/components/schemas/updateSettingsFlowWithProfileMethod"},{"$ref":"#/components/schemas/updateSettingsFlowWithOidcMethod"},{"$ref":"#/components/schemas/updateSettingsFlowWithOidcMethod"},{"$ref":"#/components/schemas/updateSettingsFlowWithTotpMethod"},{"$ref":"#/components/schemas/updateSettingsFlowWithWebAuthnMethod"},{"$ref":"#/components/schemas/updateSettingsFlowWithLookupMethod"}]},"updateSettingsFlowWithLookupMethod":{"description":"Update Settings Flow with Lookup Method","properties":{"csrf_token":{"description":"CSRFToken is the anti-CSRF token","type":"string"},"lookup_secret_confirm":{"description":"If set to true will save the regenerated lookup secrets","type":"boolean"},"lookup_secret_disable":{"description":"Disables this method if true.","type":"boolean"},"lookup_secret_regenerate":{"description":"If set to true will regenerate the lookup secrets","type":"boolean"},"lookup_secret_reveal":{"description":"If set to true will reveal the lookup secrets","type":"boolean"},"method":{"description":"Method\n\nShould be set to \"lookup\" when trying to add, update, or remove a lookup pairing.","type":"string"}},"required":["method"],"type":"object"},"updateSettingsFlowWithOidcMethod":{"description":"Update Settings Flow with OpenID Connect Method","properties":{"flow":{"description":"Flow ID is the flow's ID.\n\nin: query","type":"string"},"link":{"description":"Link this provider\n\nEither this or `unlink` must be set.\n\ntype: string\nin: body","type":"string"},"method":{"description":"Method\n\nShould be set to profile when trying to update a profile.","type":"string"},"traits":{"description":"The identity's traits\n\nin: body","type":"object"},"unlink":{"description":"Unlink this provider\n\nEither this or `link` must be set.\n\ntype: string\nin: body","type":"string"},"upstream_parameters":{"description":"UpstreamParameters are the parameters that are passed to the upstream identity provider.\n\nThese parameters are optional and depend on what the upstream identity provider supports.\nSupported parameters are:\n`login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session.\n`hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`.\n`prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.","type":"object"}},"required":["method"],"type":"object"},"updateSettingsFlowWithPasswordMethod":{"description":"Update Settings Flow with Password Method","properties":{"csrf_token":{"description":"CSRFToken is the anti-CSRF token","type":"string"},"method":{"description":"Method\n\nShould be set to password when trying to update a password.","type":"string"},"password":{"description":"Password is the updated password","type":"string"}},"required":["password","method"],"type":"object"},"updateSettingsFlowWithProfileMethod":{"description":"Update Settings Flow with Profile Method","properties":{"csrf_token":{"description":"The Anti-CSRF Token\n\nThis token is only required when performing browser flows.","type":"string"},"method":{"description":"Method\n\nShould be set to profile when trying to update a profile.","type":"string"},"traits":{"description":"Traits\n\nThe identity's traits.","type":"object"}},"required":["traits","method"],"type":"object"},"updateSettingsFlowWithTotpMethod":{"description":"Update Settings Flow with TOTP Method","properties":{"csrf_token":{"description":"CSRFToken is the anti-CSRF token","type":"string"},"method":{"description":"Method\n\nShould be set to \"totp\" when trying to add, update, or remove a totp pairing.","type":"string"},"totp_code":{"description":"ValidationTOTP must contain a valid TOTP based on the","type":"string"},"totp_unlink":{"description":"UnlinkTOTP if true will remove the TOTP pairing,\neffectively removing the credential. This can be used\nto set up a new TOTP device.","type":"boolean"}},"required":["method"],"type":"object"},"updateSettingsFlowWithWebAuthnMethod":{"description":"Update Settings Flow with WebAuthn Method","properties":{"csrf_token":{"description":"CSRFToken is the anti-CSRF token","type":"string"},"method":{"description":"Method\n\nShould be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.","type":"string"},"webauthn_register":{"description":"Register a WebAuthn Security Key\n\nIt is expected that the JSON returned by the WebAuthn registration process\nis included here.","type":"string"},"webauthn_register_displayname":{"description":"Name of the WebAuthn Security Key to be Added\n\nA human-readable name for the security key which will be added.","type":"string"},"webauthn_remove":{"description":"Remove a WebAuthn Security Key\n\nThis must contain the ID of the WebAuthN connection.","type":"string"}},"required":["method"],"type":"object"},"updateSubscriptionBody":{"description":"Update Subscription Request Body","properties":{"interval":{"description":"\nmonthly Monthly\nyearly Yearly","enum":["monthly","yearly"],"type":"string","x-go-enum-desc":"monthly Monthly\nyearly Yearly"},"plan":{"type":"string"},"return_to":{"type":"string"}},"required":["plan","interval"],"type":"object"},"updateVerificationFlowBody":{"description":"Update Verification Flow Request Body","discriminator":{"mapping":{"code":"#/components/schemas/updateVerificationFlowWithCodeMethod","link":"#/components/schemas/updateVerificationFlowWithLinkMethod"},"propertyName":"method"},"oneOf":[{"$ref":"#/components/schemas/updateVerificationFlowWithLinkMethod"},{"$ref":"#/components/schemas/updateVerificationFlowWithCodeMethod"}]},"updateVerificationFlowWithCodeMethod":{"properties":{"code":{"description":"Code from the recovery email\n\nIf you want to submit a code, use this field, but make sure to _not_ include the email field, as well.","type":"string"},"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"email":{"description":"The email address to verify\n\nIf the email belongs to a valid account, a verifiation email will be sent.\n\nIf you want to notify the email address if the account does not exist, see\nthe [notify_unknown_recipients flag](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation#attempted-verification-notifications)\n\nIf a code was already sent, including this field in the payload will invalidate the sent code and re-send a new code.\n\nformat: email","type":"string"},"method":{"description":"Method is the method that should be used for this verification flow\n\nAllowed values are `link` and `code`.\nlink VerificationStrategyLink\ncode VerificationStrategyCode","enum":["link","code"],"type":"string","x-go-enum-desc":"link VerificationStrategyLink\ncode VerificationStrategyCode"}},"required":["method"],"type":"object"},"updateVerificationFlowWithLinkMethod":{"description":"Update Verification Flow with Link Method","properties":{"csrf_token":{"description":"Sending the anti-csrf token is only required for browser login flows.","type":"string"},"email":{"description":"Email to Verify\n\nNeeds to be set when initiating the flow. If the email is a registered\nverification email, a verification link will be sent. If the email is not known,\na email with details on what happened will be sent instead.\n\nformat: email","type":"string"},"method":{"description":"Method is the method that should be used for this verification flow\n\nAllowed values are `link` and `code`\nlink VerificationStrategyLink\ncode VerificationStrategyCode","enum":["link","code"],"type":"string","x-go-enum-desc":"link VerificationStrategyLink\ncode VerificationStrategyCode"}},"required":["email","method"],"type":"object"},"verifiableCredentialPrimingResponse":{"properties":{"c_nonce":{"type":"string"},"c_nonce_expires_in":{"format":"int64","type":"integer"},"error":{"type":"string"},"error_debug":{"type":"string"},"error_description":{"type":"string"},"error_hint":{"type":"string"},"format":{"type":"string"},"status_code":{"format":"int64","type":"integer"}},"title":"VerifiableCredentialPrimingResponse contains the nonce to include in the proof-of-possession JWT.","type":"object"},"verifiableCredentialResponse":{"properties":{"credential_draft_00":{"type":"string"},"format":{"type":"string"}},"title":"VerifiableCredentialResponse contains the verifiable credential.","type":"object"},"verifiableIdentityAddress":{"description":"VerifiableAddress is an identity's verifiable address","properties":{"created_at":{"description":"When this entry was created","example":"2014-01-01T23:28:56.782Z","format":"date-time","type":"string"},"id":{"description":"The ID","format":"uuid","type":"string"},"status":{"$ref":"#/components/schemas/identityVerifiableAddressStatus"},"updated_at":{"description":"When this entry was last updated","example":"2014-01-01T23:28:56.782Z","format":"date-time","type":"string"},"value":{"description":"The address value\n\nexample foo@user.com","type":"string"},"verified":{"description":"Indicates if the address has already been verified","example":true,"type":"boolean"},"verified_at":{"$ref":"#/components/schemas/nullTime"},"via":{"$ref":"#/components/schemas/identityVerifiableAddressType"}},"required":["value","verified","via","status"],"type":"object"},"verificationFlow":{"description":"Used to verify an out-of-band communication\nchannel such as an email address or a phone number.\n\nFor more information head over to: https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation","properties":{"active":{"description":"Active, if set, contains the registration method that is being used. It is initially\nnot set.","type":"string"},"expires_at":{"description":"ExpiresAt is the time (UTC) when the request expires. If the user still wishes to verify the address,\na new request has to be initiated.","format":"date-time","type":"string"},"id":{"description":"ID represents the request's unique ID. When performing the verification flow, this\nrepresents the id in the verify ui's query parameter: http://?request=\n\ntype: string\nformat: uuid","format":"uuid","type":"string"},"issued_at":{"description":"IssuedAt is the time (UTC) when the request occurred.","format":"date-time","type":"string"},"request_url":{"description":"RequestURL is the initial URL that was requested from Ory Kratos. It can be used\nto forward information contained in the URL's path or query for example.","type":"string"},"return_to":{"description":"ReturnTo contains the requested return_to URL.","type":"string"},"state":{"$ref":"#/components/schemas/verificationFlowState"},"type":{"$ref":"#/components/schemas/selfServiceFlowType"},"ui":{"$ref":"#/components/schemas/uiContainer"}},"required":["id","type","ui","state"],"title":"A Verification Flow","type":"object"},"verificationFlowState":{"description":"The state represents the state of the verification flow.\n\nchoose_method: ask the user to choose a method (e.g. recover account via email)\nsent_email: the email has been sent to the user\npassed_challenge: the request was successful and the recovery challenge was passed.","enum":["choose_method","sent_email","passed_challenge"],"title":"Verification Flow State","type":"string"},"version":{"properties":{"version":{"description":"Version is the service's version.","type":"string"}},"type":"object"},"webAuthnJavaScript":{"type":"string"}},"securitySchemes":{"basic":{"scheme":"basic","type":"http"},"bearer":{"scheme":"bearer","type":"http"},"oauth2":{"flows":{"authorizationCode":{"authorizationUrl":"https://hydra.demo.ory.sh/oauth2/auth","scopes":{"offline":"A scope required when requesting refresh tokens (alias for `offline_access`)","offline_access":"A scope required when requesting refresh tokens","openid":"Request an OpenID Connect ID Token"},"tokenUrl":"https://hydra.demo.ory.sh/oauth2/token"}},"type":"oauth2"},"oryAccessToken":{"scheme":"bearer","type":"http"}}},"info":{"contact":{"email":"support@ory.sh","name":"API Support"},"description":"Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed\nwith a valid Personal Access Token. Public APIs are mostly used in browsers.\n","license":{"name":"Apache 2.0","url":"https://www.apache.org/licenses/LICENSE-2.0.html"},"termsOfService":"/ptos","title":"Ory APIs","version":"v1.1.45"},"openapi":"3.0.3","paths":{"/.well-known/jwks.json":{"get":{"description":"This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and,\nif enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like\n[node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others.","operationId":"discoverJsonWebKeys","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/jsonWebKeySet"}}},"description":"jsonWebKeySet"},"default":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/errorOAuth2"}}},"description":"errorOAuth2"}},"summary":"Discover Well-Known JSON Web Keys","tags":["wellknown"]}},"/.well-known/openid-configuration":{"get":{"description":"A mechanism for an OpenID Connect Relying Party to discover the End-User's OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations.\n\nPopular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others.\nFor a full list of clients go here: https://openid.net/developers/certified/","operationId":"discoverOidcConfiguration","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/oidcConfiguration"}}},"description":"oidcConfiguration"},"default":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/errorOAuth2"}}},"description":"errorOAuth2"}},"summary":"OpenID Connect Discovery","tags":["oidc"]}},"/.well-known/ory/webauthn.js":{"get":{"description":"This endpoint provides JavaScript which is needed in order to perform WebAuthn login and registration.\n\nIf you are building a JavaScript Browser App (e.g. in ReactJS or AngularJS) you will need to load this file:\n\n```html\n