diff --git a/clients/client/dart/README.md b/clients/client/dart/README.md index ff5647b848a..6ea5615d038 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.39 +- API version: v1.1.39-alpha.0 - 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.39 + ory_client: 1.1.39-alpha.0 ``` ### Github diff --git a/clients/client/dart/doc/FrontendApi.md b/clients/client/dart/doc/FrontendApi.md index 34249b806da..42a80d85248 100644 --- a/clients/client/dart/doc/FrontendApi.md +++ b/clients/client/dart/doc/FrontendApi.md @@ -93,7 +93,7 @@ No authorization required [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **createBrowserLogoutFlow** -> LogoutFlow createBrowserLogoutFlow(cookie) +> LogoutFlow createBrowserLogoutFlow(cookie, returnTo) Create a Logout URL for Browsers @@ -105,9 +105,10 @@ import 'package:ory_client/api.dart'; final api = OryClient().getFrontendApi(); final String cookie = cookie_example; // String | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. +final String returnTo = returnTo_example; // String | Return to URL The URL to which the browser should be redirected to after the logout has been performed. try { - final response = api.createBrowserLogoutFlow(cookie); + final response = api.createBrowserLogoutFlow(cookie, returnTo); print(response); } catch on DioError (e) { print('Exception when calling FrontendApi->createBrowserLogoutFlow: $e\n'); @@ -119,6 +120,7 @@ try { Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **cookie** | **String**| HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | [optional] + **returnTo** | **String**| Return to URL The URL to which the browser should be redirected to after the logout has been performed. | [optional] ### Return type diff --git a/clients/client/dart/doc/IdentityApi.md b/clients/client/dart/doc/IdentityApi.md index beaa25fa33e..3f9abe5bfab 100644 --- a/clients/client/dart/doc/IdentityApi.md +++ b/clients/client/dart/doc/IdentityApi.md @@ -259,7 +259,7 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **deleteIdentityCredentials** -> Identity deleteIdentityCredentials(id, type) +> deleteIdentityCredentials(id, type) Delete a credential for a specific identity @@ -277,8 +277,7 @@ final String id = id_example; // String | ID is the identity's ID. final String type = type_example; // String | Type is the credential's Type. One of totp, webauthn, lookup try { - final response = api.deleteIdentityCredentials(id, type); - print(response); + api.deleteIdentityCredentials(id, type); } catch on DioError (e) { print('Exception when calling IdentityApi->deleteIdentityCredentials: $e\n'); } @@ -293,7 +292,7 @@ Name | Type | Description | Notes ### Return type -[**Identity**](Identity.md) +void (empty response body) ### Authorization diff --git a/clients/client/dart/doc/LoginFlow.md b/clients/client/dart/doc/LoginFlow.md index 817bcfa3dae..dc3de89bf85 100644 --- a/clients/client/dart/doc/LoginFlow.md +++ b/clients/client/dart/doc/LoginFlow.md @@ -13,7 +13,7 @@ Name | Type | Description | Notes **expiresAt** | [**DateTime**](DateTime.md) | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **id** | **String** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http:///?flow= | **issuedAt** | [**DateTime**](DateTime.md) | IssuedAt is the time (UTC) when the flow started. | -**oauth2LoginChallenge** | **String** | | [optional] +**oauth2LoginChallenge** | **String** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2LoginRequest** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **refresh** | **bool** | Refresh stores whether this login flow should enforce re-authentication. | [optional] **requestUrl** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | diff --git a/clients/client/dart/doc/NormalizedProject.md b/clients/client/dart/doc/NormalizedProject.md index 8a3efb2c8b7..1d5896b2b50 100644 --- a/clients/client/dart/doc/NormalizedProject.md +++ b/clients/client/dart/doc/NormalizedProject.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **slug** | **String** | The project's slug | **state** | **String** | The state of the project. running Running halted Halted deleted Deleted | **subscriptionId** | **String** | | [optional] +**subscriptionPlan** | **String** | | [optional] **updatedAt** | [**DateTime**](DateTime.md) | Last Time Project was Updated | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/dart/doc/ProjectBranding.md b/clients/client/dart/doc/ProjectBranding.md index 6e34e3aba2b..02ca645ec6e 100644 --- a/clients/client/dart/doc/ProjectBranding.md +++ b/clients/client/dart/doc/ProjectBranding.md @@ -12,7 +12,7 @@ Name | Type | Description | Notes **defaultTheme** | [**ProjectBrandingTheme**](ProjectBrandingTheme.md) | | **id** | **String** | The customization ID. | **projectId** | **String** | The Project's ID this customization is associated with | -**themes** | [**BuiltList<ProjectBrandingTheme>**](ProjectBrandingTheme.md) | The Project Branding Themes | +**themes** | [**BuiltList<ProjectBrandingTheme>**](ProjectBrandingTheme.md) | | **updatedAt** | [**DateTime**](DateTime.md) | Last Time Branding was Updated | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/dart/doc/ProjectMetadata.md b/clients/client/dart/doc/ProjectMetadata.md index 9468a46e7e6..210a26c0753 100644 --- a/clients/client/dart/doc/ProjectMetadata.md +++ b/clients/client/dart/doc/ProjectMetadata.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **slug** | **String** | The project's slug | [optional] **state** | **String** | The state of the project. running Running halted Halted deleted Deleted | **subscriptionId** | **String** | | [optional] +**subscriptionPlan** | **String** | | [optional] **updatedAt** | [**DateTime**](DateTime.md) | Last Time Project was Updated | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/dart/doc/RegistrationFlow.md b/clients/client/dart/doc/RegistrationFlow.md index d4ebf30887d..5f2d8377ed0 100644 --- a/clients/client/dart/doc/RegistrationFlow.md +++ b/clients/client/dart/doc/RegistrationFlow.md @@ -12,7 +12,7 @@ Name | Type | Description | Notes **expiresAt** | [**DateTime**](DateTime.md) | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **id** | **String** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http:///?flow= | **issuedAt** | [**DateTime**](DateTime.md) | IssuedAt is the time (UTC) when the flow occurred. | -**oauth2LoginChallenge** | **String** | | [optional] +**oauth2LoginChallenge** | **String** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2LoginRequest** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **requestUrl** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | **returnTo** | **String** | ReturnTo contains the requested return_to URL. | [optional] diff --git a/clients/client/dart/lib/src/api/frontend_api.dart b/clients/client/dart/lib/src/api/frontend_api.dart index 83ec181186b..c9a395f8b69 100644 --- a/clients/client/dart/lib/src/api/frontend_api.dart +++ b/clients/client/dart/lib/src/api/frontend_api.dart @@ -134,6 +134,7 @@ class FrontendApi { /// /// Parameters: /// * [cookie] - HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + /// * [returnTo] - Return to URL The URL to which the browser should be redirected to after the logout has been performed. /// * [cancelToken] - A [CancelToken] that can be used to cancel the operation /// * [headers] - Can be used to add additional headers to the request /// * [extras] - Can be used to add flags to the request @@ -145,6 +146,7 @@ class FrontendApi { /// Throws [DioError] if API call or serialization fails Future> createBrowserLogoutFlow({ String? cookie, + String? returnTo, CancelToken? cancelToken, Map? headers, Map? extra, @@ -166,9 +168,14 @@ class FrontendApi { validateStatus: validateStatus, ); + final _queryParameters = { + if (returnTo != null) r'return_to': encodeQueryParameter(_serializers, returnTo, const FullType(String)), + }; + final _response = await _dio.request( _path, options: _options, + queryParameters: _queryParameters, cancelToken: cancelToken, onSendProgress: onSendProgress, onReceiveProgress: onReceiveProgress, diff --git a/clients/client/dart/lib/src/api/identity_api.dart b/clients/client/dart/lib/src/api/identity_api.dart index 16fdc94d877..f599574688f 100644 --- a/clients/client/dart/lib/src/api/identity_api.dart +++ b/clients/client/dart/lib/src/api/identity_api.dart @@ -502,9 +502,9 @@ class IdentityApi { /// * [onSendProgress] - A [ProgressCallback] that can be used to get the send progress /// * [onReceiveProgress] - A [ProgressCallback] that can be used to get the receive progress /// - /// Returns a [Future] containing a [Response] with a [Identity] as data + /// Returns a [Future] /// Throws [DioError] if API call or serialization fails - Future> deleteIdentityCredentials({ + Future> deleteIdentityCredentials({ required String id, required String type, CancelToken? cancelToken, @@ -541,35 +541,7 @@ class IdentityApi { onReceiveProgress: onReceiveProgress, ); - Identity? _responseData; - - try { - final rawResponse = _response.data; - _responseData = rawResponse == null ? null : _serializers.deserialize( - rawResponse, - specifiedType: const FullType(Identity), - ) as Identity; - - } catch (error, stackTrace) { - throw DioError( - requestOptions: _response.requestOptions, - response: _response, - type: DioErrorType.unknown, - error: error, - stackTrace: stackTrace, - ); - } - - return Response( - data: _responseData, - headers: _response.headers, - isRedirect: _response.isRedirect, - requestOptions: _response.requestOptions, - redirects: _response.redirects, - statusCode: _response.statusCode, - statusMessage: _response.statusMessage, - extra: _response.extra, - ); + return _response; } /// Delete & Invalidate an Identity's Sessions diff --git a/clients/client/dart/lib/src/model/login_flow.dart b/clients/client/dart/lib/src/model/login_flow.dart index 9c10229139d..23119b72a05 100644 --- a/clients/client/dart/lib/src/model/login_flow.dart +++ b/clients/client/dart/lib/src/model/login_flow.dart @@ -20,7 +20,7 @@ part 'login_flow.g.dart'; /// * [expiresAt] - ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. /// * [id] - ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http:///?flow= /// * [issuedAt] - IssuedAt is the time (UTC) when the flow started. -/// * [oauth2LoginChallenge] +/// * [oauth2LoginChallenge] - Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. /// * [oauth2LoginRequest] /// * [refresh] - Refresh stores whether this login flow should enforce re-authentication. /// * [requestUrl] - RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. @@ -52,6 +52,7 @@ abstract class LoginFlow implements Built { @BuiltValueField(wireName: r'issued_at') DateTime get issuedAt; + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. @BuiltValueField(wireName: r'oauth2_login_challenge') String? get oauth2LoginChallenge; @@ -145,7 +146,7 @@ class _$LoginFlowSerializer implements PrimitiveSerializer { yield r'oauth2_login_challenge'; yield serializers.serialize( object.oauth2LoginChallenge, - specifiedType: const FullType.nullable(String), + specifiedType: const FullType(String), ); } if (object.oauth2LoginRequest != null) { @@ -266,9 +267,8 @@ class _$LoginFlowSerializer implements PrimitiveSerializer { case r'oauth2_login_challenge': final valueDes = serializers.deserialize( value, - specifiedType: const FullType.nullable(String), - ) as String?; - if (valueDes == null) continue; + specifiedType: const FullType(String), + ) as String; result.oauth2LoginChallenge = valueDes; break; case r'oauth2_login_request': diff --git a/clients/client/dart/lib/src/model/normalized_project.dart b/clients/client/dart/lib/src/model/normalized_project.dart index 0eef398a1fa..de242a6c45f 100644 --- a/clients/client/dart/lib/src/model/normalized_project.dart +++ b/clients/client/dart/lib/src/model/normalized_project.dart @@ -20,6 +20,7 @@ part 'normalized_project.g.dart'; /// * [slug] - The project's slug /// * [state] - The state of the project. running Running halted Halted deleted Deleted /// * [subscriptionId] +/// * [subscriptionPlan] /// * [updatedAt] - Last Time Project was Updated @BuiltValue() abstract class NormalizedProject implements Built { @@ -49,6 +50,9 @@ abstract class NormalizedProject implements Built _$this._subscriptionId = subscriptionId; + String? _subscriptionPlan; + String? get subscriptionPlan => _$this._subscriptionPlan; + set subscriptionPlan(String? subscriptionPlan) => + _$this._subscriptionPlan = subscriptionPlan; + DateTime? _updatedAt; DateTime? get updatedAt => _$this._updatedAt; set updatedAt(DateTime? updatedAt) => _$this._updatedAt = updatedAt; @@ -216,6 +227,7 @@ class NormalizedProjectBuilder _slug = $v.slug; _state = $v.state; _subscriptionId = $v.subscriptionId; + _subscriptionPlan = $v.subscriptionPlan; _updatedAt = $v.updatedAt; _$v = null; } @@ -252,6 +264,7 @@ class NormalizedProjectBuilder state: BuiltValueNullFieldError.checkNotNull( state, r'NormalizedProject', 'state'), subscriptionId: subscriptionId, + subscriptionPlan: subscriptionPlan, updatedAt: BuiltValueNullFieldError.checkNotNull( updatedAt, r'NormalizedProject', 'updatedAt')); } catch (_) { diff --git a/clients/client/dart/lib/src/model/project_branding.dart b/clients/client/dart/lib/src/model/project_branding.dart index ec5eca36fd0..e50493c9e02 100644 --- a/clients/client/dart/lib/src/model/project_branding.dart +++ b/clients/client/dart/lib/src/model/project_branding.dart @@ -10,14 +10,14 @@ import 'package:built_value/serializer.dart'; part 'project_branding.g.dart'; -/// The Project Branding +/// ProjectBranding /// /// Properties: /// * [createdAt] - The Customization Creation Date /// * [defaultTheme] /// * [id] - The customization ID. /// * [projectId] - The Project's ID this customization is associated with -/// * [themes] - The Project Branding Themes +/// * [themes] /// * [updatedAt] - Last Time Branding was Updated @BuiltValue() abstract class ProjectBranding implements Built { @@ -36,7 +36,6 @@ abstract class ProjectBranding implements Built get themes; diff --git a/clients/client/dart/lib/src/model/project_branding_colors.dart b/clients/client/dart/lib/src/model/project_branding_colors.dart index 14aab4d47be..05399c1436b 100644 --- a/clients/client/dart/lib/src/model/project_branding_colors.dart +++ b/clients/client/dart/lib/src/model/project_branding_colors.dart @@ -8,7 +8,7 @@ import 'package:built_value/serializer.dart'; part 'project_branding_colors.g.dart'; -/// The Project Branding Colors +/// ProjectBrandingColors /// /// Properties: /// * [accentDefaultColor] - AccentDefaultColor is a hex color code used by the Ory Account Experience theme. diff --git a/clients/client/dart/lib/src/model/project_branding_theme.dart b/clients/client/dart/lib/src/model/project_branding_theme.dart index cd664d8669b..b29f0850327 100644 --- a/clients/client/dart/lib/src/model/project_branding_theme.dart +++ b/clients/client/dart/lib/src/model/project_branding_theme.dart @@ -8,7 +8,7 @@ import 'package:built_value/serializer.dart'; part 'project_branding_theme.g.dart'; -/// The Project Branding Theme +/// ProjectBrandingTheme /// /// Properties: /// * [accentDefaultColor] - AccentDefaultColor is a hex color code used by the Ory Account Experience theme. diff --git a/clients/client/dart/lib/src/model/project_metadata.dart b/clients/client/dart/lib/src/model/project_metadata.dart index e7ac65cc20c..1ef9218aa02 100644 --- a/clients/client/dart/lib/src/model/project_metadata.dart +++ b/clients/client/dart/lib/src/model/project_metadata.dart @@ -19,6 +19,7 @@ part 'project_metadata.g.dart'; /// * [slug] - The project's slug /// * [state] - The state of the project. running Running halted Halted deleted Deleted /// * [subscriptionId] +/// * [subscriptionPlan] /// * [updatedAt] - Last Time Project was Updated @BuiltValue() abstract class ProjectMetadata implements Built { @@ -49,6 +50,9 @@ abstract class ProjectMetadata implements Built @@ -96,6 +98,7 @@ class _$ProjectMetadata extends ProjectMetadata { this.slug, required this.state, this.subscriptionId, + this.subscriptionPlan, required this.updatedAt}) : super._() { BuiltValueNullFieldError.checkNotNull( @@ -127,6 +130,7 @@ class _$ProjectMetadata extends ProjectMetadata { slug == other.slug && state == other.state && subscriptionId == other.subscriptionId && + subscriptionPlan == other.subscriptionPlan && updatedAt == other.updatedAt; } @@ -140,6 +144,7 @@ class _$ProjectMetadata extends ProjectMetadata { _$hash = $jc(_$hash, slug.hashCode); _$hash = $jc(_$hash, state.hashCode); _$hash = $jc(_$hash, subscriptionId.hashCode); + _$hash = $jc(_$hash, subscriptionPlan.hashCode); _$hash = $jc(_$hash, updatedAt.hashCode); _$hash = $jf(_$hash); return _$hash; @@ -155,6 +160,7 @@ class _$ProjectMetadata extends ProjectMetadata { ..add('slug', slug) ..add('state', state) ..add('subscriptionId', subscriptionId) + ..add('subscriptionPlan', subscriptionPlan) ..add('updatedAt', updatedAt)) .toString(); } @@ -193,6 +199,11 @@ class ProjectMetadataBuilder set subscriptionId(String? subscriptionId) => _$this._subscriptionId = subscriptionId; + String? _subscriptionPlan; + String? get subscriptionPlan => _$this._subscriptionPlan; + set subscriptionPlan(String? subscriptionPlan) => + _$this._subscriptionPlan = subscriptionPlan; + DateTime? _updatedAt; DateTime? get updatedAt => _$this._updatedAt; set updatedAt(DateTime? updatedAt) => _$this._updatedAt = updatedAt; @@ -211,6 +222,7 @@ class ProjectMetadataBuilder _slug = $v.slug; _state = $v.state; _subscriptionId = $v.subscriptionId; + _subscriptionPlan = $v.subscriptionPlan; _updatedAt = $v.updatedAt; _$v = null; } @@ -247,6 +259,7 @@ class ProjectMetadataBuilder state: BuiltValueNullFieldError.checkNotNull( state, r'ProjectMetadata', 'state'), subscriptionId: subscriptionId, + subscriptionPlan: subscriptionPlan, updatedAt: BuiltValueNullFieldError.checkNotNull( updatedAt, r'ProjectMetadata', 'updatedAt')); } catch (_) { diff --git a/clients/client/dart/lib/src/model/registration_flow.dart b/clients/client/dart/lib/src/model/registration_flow.dart index ddffa9c92a0..908af12849f 100644 --- a/clients/client/dart/lib/src/model/registration_flow.dart +++ b/clients/client/dart/lib/src/model/registration_flow.dart @@ -19,7 +19,7 @@ part 'registration_flow.g.dart'; /// * [expiresAt] - ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. /// * [id] - ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http:///?flow= /// * [issuedAt] - IssuedAt is the time (UTC) when the flow occurred. -/// * [oauth2LoginChallenge] +/// * [oauth2LoginChallenge] - Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. /// * [oauth2LoginRequest] /// * [requestUrl] - RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. /// * [returnTo] - ReturnTo contains the requested return_to URL. @@ -45,6 +45,7 @@ abstract class RegistrationFlow implements Built createBrowserLogoutFlow({ String cookie }) async + //Future createBrowserLogoutFlow({ String cookie, String returnTo }) async test('test createBrowserLogoutFlow', () async { // TODO }); diff --git a/clients/client/dart/test/identity_api_test.dart b/clients/client/dart/test/identity_api_test.dart index a4ee866e565..6d703af9a26 100644 --- a/clients/client/dart/test/identity_api_test.dart +++ b/clients/client/dart/test/identity_api_test.dart @@ -56,7 +56,7 @@ void main() { // // Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type You can only delete second factor (aal2) credentials. // - //Future deleteIdentityCredentials(String id, String type) async + //Future deleteIdentityCredentials(String id, String type) async test('test deleteIdentityCredentials', () async { // TODO }); diff --git a/clients/client/dart/test/login_flow_test.dart b/clients/client/dart/test/login_flow_test.dart index 1ec2b5b0786..6d08a9e37d8 100644 --- a/clients/client/dart/test/login_flow_test.dart +++ b/clients/client/dart/test/login_flow_test.dart @@ -36,6 +36,7 @@ void main() { // TODO }); + // Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. // String oauth2LoginChallenge test('to test the property `oauth2LoginChallenge`', () async { // TODO diff --git a/clients/client/dart/test/normalized_project_test.dart b/clients/client/dart/test/normalized_project_test.dart index 9fa40fc0c2d..2fa6440a22c 100644 --- a/clients/client/dart/test/normalized_project_test.dart +++ b/clients/client/dart/test/normalized_project_test.dart @@ -46,6 +46,11 @@ void main() { // TODO }); + // String subscriptionPlan + test('to test the property `subscriptionPlan`', () async { + // TODO + }); + // Last Time Project was Updated // DateTime updatedAt test('to test the property `updatedAt`', () async { diff --git a/clients/client/dart/test/project_branding_test.dart b/clients/client/dart/test/project_branding_test.dart index 7b8d02a2a6c..b795940458c 100644 --- a/clients/client/dart/test/project_branding_test.dart +++ b/clients/client/dart/test/project_branding_test.dart @@ -30,7 +30,6 @@ void main() { // TODO }); - // The Project Branding Themes // BuiltList themes test('to test the property `themes`', () async { // TODO diff --git a/clients/client/dart/test/project_metadata_test.dart b/clients/client/dart/test/project_metadata_test.dart index ef4ae07b701..2fb58a58012 100644 --- a/clients/client/dart/test/project_metadata_test.dart +++ b/clients/client/dart/test/project_metadata_test.dart @@ -47,6 +47,11 @@ void main() { // TODO }); + // String subscriptionPlan + test('to test the property `subscriptionPlan`', () async { + // TODO + }); + // Last Time Project was Updated // DateTime updatedAt test('to test the property `updatedAt`', () async { diff --git a/clients/client/dart/test/registration_flow_test.dart b/clients/client/dart/test/registration_flow_test.dart index bcb51ffbb35..f9404fb84f2 100644 --- a/clients/client/dart/test/registration_flow_test.dart +++ b/clients/client/dart/test/registration_flow_test.dart @@ -30,6 +30,7 @@ void main() { // TODO }); + // Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. // String oauth2LoginChallenge test('to test the property `oauth2LoginChallenge`', () async { // TODO diff --git a/clients/client/dotnet/Ory.Client.sln b/clients/client/dotnet/Ory.Client.sln index bea4ff0dc29..0633d2e0b0c 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", "{8900AAB2-CB09-4391-B326-2CA6E6C73C40}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{B2385A03-138A-4EC8-98B4-82EDE526EB2A}" 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 - {8900AAB2-CB09-4391-B326-2CA6E6C73C40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8900AAB2-CB09-4391-B326-2CA6E6C73C40}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8900AAB2-CB09-4391-B326-2CA6E6C73C40}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8900AAB2-CB09-4391-B326-2CA6E6C73C40}.Release|Any CPU.Build.0 = Release|Any CPU + {B2385A03-138A-4EC8-98B4-82EDE526EB2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B2385A03-138A-4EC8-98B4-82EDE526EB2A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B2385A03-138A-4EC8-98B4-82EDE526EB2A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B2385A03-138A-4EC8-98B4-82EDE526EB2A}.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 117e77080fb..39456f390dd 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.39 -- SDK version: 1.1.39 +- API version: v1.1.39-alpha.0 +- SDK version: 1.1.39-alpha.0 - 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/ClientLoginFlow.md b/clients/client/dotnet/docs/ClientLoginFlow.md index 5be72042e2d..d71fc158417 100644 --- a/clients/client/dotnet/docs/ClientLoginFlow.md +++ b/clients/client/dotnet/docs/ClientLoginFlow.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes **ExpiresAt** | **DateTime** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **Id** | **string** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id> | **IssuedAt** | **DateTime** | IssuedAt is the time (UTC) when the flow started. | -**Oauth2LoginChallenge** | **string** | | [optional] +**Oauth2LoginChallenge** | **string** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **Oauth2LoginRequest** | [**ClientOAuth2LoginRequest**](ClientOAuth2LoginRequest.md) | | [optional] **Refresh** | **bool** | Refresh stores whether this login flow should enforce re-authentication. | [optional] **RequestUrl** | **string** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | diff --git a/clients/client/dotnet/docs/ClientNormalizedProject.md b/clients/client/dotnet/docs/ClientNormalizedProject.md index c453bd649c9..d388ec6352f 100644 --- a/clients/client/dotnet/docs/ClientNormalizedProject.md +++ b/clients/client/dotnet/docs/ClientNormalizedProject.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **Slug** | **string** | The project's slug | [readonly] **State** | **string** | The state of the project. running Running halted Halted deleted Deleted | [readonly] **SubscriptionId** | **string** | | [optional] +**SubscriptionPlan** | **string** | | [optional] **UpdatedAt** | **DateTime** | Last Time Project was Updated | [readonly] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/dotnet/docs/ClientProjectBranding.md b/clients/client/dotnet/docs/ClientProjectBranding.md index 1b25cea874d..e49fae388ec 100644 --- a/clients/client/dotnet/docs/ClientProjectBranding.md +++ b/clients/client/dotnet/docs/ClientProjectBranding.md @@ -1,5 +1,4 @@ # Ory.Client.Model.ClientProjectBranding -The Project Branding ## Properties @@ -9,7 +8,7 @@ Name | Type | Description | Notes **DefaultTheme** | [**ClientProjectBrandingTheme**](ClientProjectBrandingTheme.md) | | **Id** | **string** | The customization ID. | [readonly] **ProjectId** | **string** | The Project's ID this customization is associated with | -**Themes** | [**List<ClientProjectBrandingTheme>**](ClientProjectBrandingTheme.md) | The Project Branding Themes | +**Themes** | [**List<ClientProjectBrandingTheme>**](ClientProjectBrandingTheme.md) | | **UpdatedAt** | **DateTime** | Last Time Branding was Updated | [readonly] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/dotnet/docs/ClientProjectBrandingColors.md b/clients/client/dotnet/docs/ClientProjectBrandingColors.md index c3cf8adda74..874ebc6c31d 100644 --- a/clients/client/dotnet/docs/ClientProjectBrandingColors.md +++ b/clients/client/dotnet/docs/ClientProjectBrandingColors.md @@ -1,5 +1,4 @@ # Ory.Client.Model.ClientProjectBrandingColors -The Project Branding Colors ## Properties diff --git a/clients/client/dotnet/docs/ClientProjectBrandingTheme.md b/clients/client/dotnet/docs/ClientProjectBrandingTheme.md index 89d0cfba4e2..c345421aa78 100644 --- a/clients/client/dotnet/docs/ClientProjectBrandingTheme.md +++ b/clients/client/dotnet/docs/ClientProjectBrandingTheme.md @@ -1,5 +1,4 @@ # Ory.Client.Model.ClientProjectBrandingTheme -The Project Branding Theme ## Properties diff --git a/clients/client/dotnet/docs/ClientProjectMetadata.md b/clients/client/dotnet/docs/ClientProjectMetadata.md index ef6b0a07b84..8230b44716d 100644 --- a/clients/client/dotnet/docs/ClientProjectMetadata.md +++ b/clients/client/dotnet/docs/ClientProjectMetadata.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **Slug** | **string** | The project's slug | [optional] [readonly] **State** | **string** | The state of the project. running Running halted Halted deleted Deleted | **SubscriptionId** | **string** | | [optional] +**SubscriptionPlan** | **string** | | [optional] **UpdatedAt** | **DateTime** | Last Time Project was Updated | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/dotnet/docs/ClientRegistrationFlow.md b/clients/client/dotnet/docs/ClientRegistrationFlow.md index 5e02eed91a4..2c5d2808d5b 100644 --- a/clients/client/dotnet/docs/ClientRegistrationFlow.md +++ b/clients/client/dotnet/docs/ClientRegistrationFlow.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **ExpiresAt** | **DateTime** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **Id** | **string** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id> | **IssuedAt** | **DateTime** | IssuedAt is the time (UTC) when the flow occurred. | -**Oauth2LoginChallenge** | **string** | | [optional] +**Oauth2LoginChallenge** | **string** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **Oauth2LoginRequest** | [**ClientOAuth2LoginRequest**](ClientOAuth2LoginRequest.md) | | [optional] **RequestUrl** | **string** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | **ReturnTo** | **string** | ReturnTo contains the requested return_to URL. | [optional] diff --git a/clients/client/dotnet/docs/ClientSetProjectBrandingThemeBody.md b/clients/client/dotnet/docs/ClientSetProjectBrandingThemeBody.md index c002c9c9f85..01c30d4a2a1 100644 --- a/clients/client/dotnet/docs/ClientSetProjectBrandingThemeBody.md +++ b/clients/client/dotnet/docs/ClientSetProjectBrandingThemeBody.md @@ -1,5 +1,4 @@ # Ory.Client.Model.ClientSetProjectBrandingThemeBody -Set Project Branding Theme Request Parameters ## Properties diff --git a/clients/client/dotnet/docs/FrontendApi.md b/clients/client/dotnet/docs/FrontendApi.md index 996e3b5980e..2ab4c0f94e2 100644 --- a/clients/client/dotnet/docs/FrontendApi.md +++ b/clients/client/dotnet/docs/FrontendApi.md @@ -120,7 +120,7 @@ No authorization required # **CreateBrowserLogoutFlow** -> ClientLogoutFlow CreateBrowserLogoutFlow (string cookie = null) +> ClientLogoutFlow CreateBrowserLogoutFlow (string cookie = null, string returnTo = null) Create a Logout URL for Browsers @@ -144,11 +144,12 @@ namespace Example config.BasePath = "https://playground.projects.oryapis.com"; var apiInstance = new FrontendApi(config); var cookie = "cookie_example"; // string | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + var returnTo = "returnTo_example"; // string | Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) try { // Create a Logout URL for Browsers - ClientLogoutFlow result = apiInstance.CreateBrowserLogoutFlow(cookie); + ClientLogoutFlow result = apiInstance.CreateBrowserLogoutFlow(cookie, returnTo); Debug.WriteLine(result); } catch (ApiException e) @@ -167,6 +168,7 @@ namespace Example Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **cookie** | **string**| HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | [optional] + **returnTo** | **string**| Return to URL The URL to which the browser should be redirected to after the logout has been performed. | [optional] ### Return type @@ -186,6 +188,7 @@ No authorization required | Status code | Description | Response headers | |-------------|-------------|------------------| | **200** | logoutFlow | - | +| **400** | errorGeneric | - | | **401** | errorGeneric | - | | **500** | errorGeneric | - | diff --git a/clients/client/dotnet/docs/IdentityApi.md b/clients/client/dotnet/docs/IdentityApi.md index e099bf07ff2..d4d58652f01 100644 --- a/clients/client/dotnet/docs/IdentityApi.md +++ b/clients/client/dotnet/docs/IdentityApi.md @@ -409,7 +409,7 @@ void (empty response body) # **DeleteIdentityCredentials** -> ClientIdentity DeleteIdentityCredentials (string id, string type) +> void DeleteIdentityCredentials (string id, string type) Delete a credential for a specific identity @@ -441,8 +441,7 @@ namespace Example try { // Delete a credential for a specific identity - ClientIdentity result = apiInstance.DeleteIdentityCredentials(id, type); - Debug.WriteLine(result); + apiInstance.DeleteIdentityCredentials(id, type); } catch (ApiException e) { @@ -464,7 +463,7 @@ Name | Type | Description | Notes ### Return type -[**ClientIdentity**](ClientIdentity.md) +void (empty response body) ### Authorization @@ -479,7 +478,7 @@ Name | Type | Description | Notes ### HTTP response details | Status code | Description | Response headers | |-------------|-------------|------------------| -| **200** | identity | - | +| **204** | Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. | - | | **404** | errorGeneric | - | | **0** | errorGeneric | - | 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 95cf3afdb84..373cbb74072 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7812454d420..f914f205602 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -79,7 +79,8 @@ public void CreateBrowserLogoutFlowTest() { // TODO uncomment below to test the method and replace null with proper value //string cookie = null; - //var response = instance.CreateBrowserLogoutFlow(cookie); + //string returnTo = null; + //var response = instance.CreateBrowserLogoutFlow(cookie, returnTo); //Assert.IsType(response); } 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 a77f96c6d64..6df68060b2e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -123,8 +123,7 @@ public void DeleteIdentityCredentialsTest() // TODO uncomment below to test the method and replace null with proper value //string id = null; //string type = null; - //var response = instance.DeleteIdentityCredentials(id, type); - //Assert.IsType(response); + //instance.DeleteIdentityCredentials(id, type); } /// 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 773dec7fe58..e3c188bd806 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c0075f74942..1c56ee4c90b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 edd2d95a819..33dbb290b7f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5837ffd76f2..99d2345f010 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 080f78b3075..42e25ceec3e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6b19e14a21f..da7a8324e32 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fbf1bc8bf55..429207e2114 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0b555c4c22d..420b4f54683 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2b26dc5f25a..d2d5d7228b7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b79d836ac26..a5dfc8d8a3d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9c3bb98c36e..9533a3fa0d2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 95e843e73ce..bcdb0625653 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 863b99c1b35..60f4664b37c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4eb094e52fa..3643e7b2859 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fc5bb975bfd..4637a731708 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1c7f6d6fe28..5db881ee206 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 99ce110eecb..5cc5e692e6a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6f020eab7b4..5fcf14c112e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d2de7a4e29d..1a2abc30b0d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf9a60b887d..7d8026631c9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dd0fc67b746..20e4f79b5b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f36b9facae0..9e07b42a576 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d17b1ec1033..9ba694e8ef0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8838d65fc0c..3b453fc69cf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 96c13462079..3af4897c035 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3fa3f83c6cc..2010a29bcec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bb7ec72762a..e3e03f6978d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bff2be7cbd6..edf11595ad1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInviteTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInviteTests.cs index 272228eafaa..d98899edc4b 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInviteTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInviteTests.cs @@ -3,7 +3,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInvitesResponseTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInvitesResponseTests.cs index 47fc4866911..db36807b6e8 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInvitesResponseTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientCreateProjectInvitesResponseTests.cs @@ -3,7 +3,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f0866fd173f..31da6524762 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 69588132354..5fd772d3e61 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3f33e486c70..f264066091f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3e8fb5dbffd..613ed2ee001 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 646ed57812c..0f936c7c3c2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c80b745b6ee..63ed963b26d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 543a72e62b8..ec164065473 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0c6489891a1..eb9380b6114 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 761fea23bde..07ea8a9ff65 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b447d40faa1..bb55017c8b8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8dc52dbc31e..2dc88ad6fb1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 afe09a848dd..83ca099346e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2e50db51057..cf1569d7181 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 051ed38e21e..87a85492287 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d65b60f4110..f8f9494eeaa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d3b4edf856d..6b4f8f4b31e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 06b679139dc..a30cb4fa208 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c28d7958cc9..7d9a3eede97 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1485f062b69..a3be9f8a73c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0b3143590c9..04b529e8561 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 121aedfbad4..c97e4f710db 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bc761e2eb45..b6d4f830887 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fd4d2186aad..4a62856097c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 63935f512f2..89d1f0034de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a3ecf277551..d7b7e5d6756 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b81a0632d07..62e54dcd209 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de6a0f3810c..2c40366e20f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 264a9c6e0d3..fdd744df743 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 687e7c796be..3b644073ba1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 34c94c7ea24..c75bb79db93 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e427d22dc66..f1865fe04b6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 48b60394a63..4615bb659ef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 07887961238..b8de218edd8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7b0986be1db..c34e781a447 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 54cee286943..2d734dce28a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf178eef256..91c086270bb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5e97a6991b6..9c47c0545a6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8ee3e035f78..90a07f9f4e9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6d23e054d9f..e4f9e001007 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 982da0dcbed..ed15f4c3e53 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0250babd0fc..2488a1ca61d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 15060755df4..6edca845432 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cb773e93990..b774bf13e6c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b83389f040e..d5ae09a73ab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2ad6ec4367a..ebfebe8a1cc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c02bbcff85f..013cbb0da94 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1a5193c997e..03b640aa3c2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e7ed0dd5ba8..a0a5ba30394 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cbc04380e65..5c0706b7ea4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 57c3c1fa6c3..114bde400a1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f25d0297441..f91ce5b30f5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fa9250d9260..26f318e043b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 09a064cffe7..33631c15049 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1f41767fb5d..57a6a0aaee6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 002c5a29b22..40161565b33 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5fc4acaa05b..f0ba71b768c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 48921eef1b0..c81a69315a1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ca44b69c723..68ae42e7213 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 95e1cb8e271..5a44abf7103 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1693e2b38bc..9e2af6d5d31 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e98eb16fafd..792824b7cd7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 965ba4092b5..3677e454747 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2dac257cddd..88cd99bd8a2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ 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 0bfed0690d2..fb172149219 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 598e05f15e5..36427bcab02 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -114,6 +114,14 @@ public void SubscriptionIdTest() // TODO unit test for the property 'SubscriptionId' } /// + /// Test the property 'SubscriptionPlan' + /// + [Fact] + public void SubscriptionPlanTest() + { + // TODO unit test for the property 'SubscriptionPlan' + } + /// /// Test the property 'UpdatedAt' /// [Fact] 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 c3280695672..0c70ae450b3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6eb55b672fc..3529d88deda 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2237e3eef3d..5099497b87c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5e5c2431468..fe4ed6e80e5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a950629139..84d2acf2108 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d19ad595d13..d2a0ecfd463 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bbc7e1f7493..c0e6fbf3c27 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 75c5f7185bd..fb16478a018 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6d06d86613a..d0270e613fe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b12d152146b..107f2bb1412 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f64861600a2..41b011f1120 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ba026318aef..f27ecbf5980 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 32c63f30069..d8b5dbc9c25 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ceaa4032a84..f631e3a8f2e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c9b313d48ce..b91d4df34f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c1c676a09c4..c44101d1f59 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7299077e449..4041a937363 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6085b12877a..6de08c15805 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e7b9ddf747a..c978d44f5c8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bcbeac530e8..b7da67db0ff 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e0939b36826..a5d039a0a89 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8183f6c5f7a..460df7a382e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b4761286359..68803a7dfe6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a8e2948a455..eb298418a16 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 05be508ee2d..ce88a5a1fab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3f3fbb1e2e9..fe56c27ed3d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectInviteTests.cs b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectInviteTests.cs index 22bbfa2e08c..b6316f562f2 100644 --- a/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectInviteTests.cs +++ b/clients/client/dotnet/src/Ory.Client.Test/Model/ClientProjectInviteTests.cs @@ -3,7 +3,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2c0049c90a9..1fdaaf0aee6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -114,6 +114,14 @@ public void SubscriptionIdTest() // TODO unit test for the property 'SubscriptionId' } /// + /// Test the property 'SubscriptionPlan' + /// + [Fact] + public void SubscriptionPlanTest() + { + // TODO unit test for the property 'SubscriptionPlan' + } + /// /// Test the property 'UpdatedAt' /// [Fact] 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 cf182f975a4..66f8a1efb02 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fcbd2f028e8..87088dccd79 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 44f11b8654a..a2a38d7f216 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 59390037bf8..f3dd39f5823 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5ad80ee5c74..d72abb64571 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf38530325c..5a70ea36480 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2f9dd0130d6..9f722b6ba4d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fc3253e63d2..f13d1a62247 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0d65d5c3d30..f2803b7ae0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a2e57008311..6b92a8a942e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fe51c7d7f5f..35840ca12aa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 89a8d1b9624..7c098878ef5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d249ee7ac2b..2ef5ee23e0d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a616567a608..2fa9288d936 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f30e5df9b12..d419d82fb57 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8f32e80d0df..47796563cdc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 13c53cda7b6..dd306322639 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e06b57619a1..4a72e2cd93e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0a9b4af31f7..3c90b3aa3d9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 19b1027ce03..f607e43606e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3fa61c3e1e5..f6beea85272 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 67499828e86..c590b576560 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8d3c450e2fd..20678d862a0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f23215dcfcd..b1b32539c4b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 34b72348854..7a4307469a6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8ba384fc108..624579eadbd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73acb034a8b..6d0a692e33d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 76075d04d7b..4a99b9b6434 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 89da8b53dae..6f20892b509 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 126f148cae0..277c208b5b2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 22ff1bf3d5c..d569976c23c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 04bf11fc1be..5f90ebaf14b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 33a28cb1e2e..d55a3cda01a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0dcc34078cb..f1ab4256303 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 265ac793430..f724e0ea1e9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 674d48aa42b..bb82bb5bfb9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5196b10db67..8a72f8d1f06 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fe814c1c355..e4f1cc5b04f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 10aed5c715d..8e49dbca106 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2a7c6317037..db9aac65fa7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 580fe525ce0..e102bdb0ff8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0928ba4de6f..bfa56b005af 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de2bb41c61f..c3776a03634 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 81b6a6232ad..b9d1d795a54 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4c84ddca113..cb023e71225 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1ab67666e3b..7e52b3e0c87 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 87c8429a6f5..dad728f2bda 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 22b4b030599..99fb590307e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2ae98fab274..9885293c911 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7c6d7ec6b80..aaeb55346e7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bd5dd586468..5f3e319ed93 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 28aaea11413..b51a4f3dd96 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c3d3e6a2759..9ead3ea7e31 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 50f5324cf77..a4ca9367f90 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a8ed9ec2978..55f6c1ff69f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c0ca41754f5..a27c7ffa686 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2f0f7e4ecb9..955070a4177 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 882585b9abb..50545d416f3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 df0c787c3f0..1c2023bf4fa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de2844d5f52..53894e6834c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2cd20cd6624..6a4a1a7ff17 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c29daaf4b42..0947442b898 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d32b5921915..ed815a19e1b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 010d9100038..ee7e41c3db0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6693407df86..6ea73002e22 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1a6e7a15aaf..fa2cb46fcb3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 be62e6ed55e..f4fac54d5eb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 96ed2240b32..7f3c60869e2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f27c61bcb1a..e2eebe253db 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1a1b95c5e28..159cfdc72b0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 35b3209b459..33279137bf5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 68e183b81f8..0a4b4b3f171 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3cfa3c0dd4c..af5aef6abfd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7152231a7cd..82d6acfa512 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 11557afa2d3..3e0e9825802 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 257fe5ca351..518130abe2e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f947075d09c..0630ca6efa3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8f7fc648ac8..d36998c384c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 afa56cdd738..2708c9aafb3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 13767861c53..9b8480b9723 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b88a06810fb..71053bada55 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d8e4c16404c..2ffe90d508a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b13d836a2e9..729b64cad74 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 00f612c3909..c29a2a987b8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 43b050081c3..130cc711859 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 91415699c2a..08d50d6e2dd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f942835a610..2d34ee54e88 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -64,8 +64,9 @@ public interface IFrontendApiSync : IApiAccessor /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// ClientLogoutFlow - ClientLogoutFlow CreateBrowserLogoutFlow(string cookie = default(string)); + ClientLogoutFlow CreateBrowserLogoutFlow(string cookie = default(string), string returnTo = default(string)); /// /// Create a Logout URL for Browsers @@ -75,8 +76,9 @@ public interface IFrontendApiSync : IApiAccessor /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// ApiResponse of ClientLogoutFlow - ApiResponse CreateBrowserLogoutFlowWithHttpInfo(string cookie = default(string)); + ApiResponse CreateBrowserLogoutFlowWithHttpInfo(string cookie = default(string), string returnTo = default(string)); /// /// Create Recovery Flow for Browsers /// @@ -780,9 +782,10 @@ public interface IFrontendApiAsync : IApiAccessor /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// Cancellation Token to cancel the request. /// Task of ClientLogoutFlow - System.Threading.Tasks.Task CreateBrowserLogoutFlowAsync(string cookie = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task CreateBrowserLogoutFlowAsync(string cookie = default(string), string returnTo = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Create a Logout URL for Browsers @@ -792,9 +795,10 @@ public interface IFrontendApiAsync : IApiAccessor /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// Cancellation Token to cancel the request. /// Task of ApiResponse (ClientLogoutFlow) - System.Threading.Tasks.Task> CreateBrowserLogoutFlowWithHttpInfoAsync(string cookie = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + System.Threading.Tasks.Task> CreateBrowserLogoutFlowWithHttpInfoAsync(string cookie = default(string), string returnTo = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Create Recovery Flow for Browsers /// @@ -1810,10 +1814,11 @@ public Ory.Client.Client.ExceptionFactory ExceptionFactory /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// ClientLogoutFlow - public ClientLogoutFlow CreateBrowserLogoutFlow(string cookie = default(string)) + public ClientLogoutFlow CreateBrowserLogoutFlow(string cookie = default(string), string returnTo = default(string)) { - Ory.Client.Client.ApiResponse localVarResponse = CreateBrowserLogoutFlowWithHttpInfo(cookie); + Ory.Client.Client.ApiResponse localVarResponse = CreateBrowserLogoutFlowWithHttpInfo(cookie, returnTo); return localVarResponse.Data; } @@ -1822,8 +1827,9 @@ public Ory.Client.Client.ExceptionFactory ExceptionFactory /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// ApiResponse of ClientLogoutFlow - public Ory.Client.Client.ApiResponse CreateBrowserLogoutFlowWithHttpInfo(string cookie = default(string)) + public Ory.Client.Client.ApiResponse CreateBrowserLogoutFlowWithHttpInfo(string cookie = default(string), string returnTo = default(string)) { Ory.Client.Client.RequestOptions localVarRequestOptions = new Ory.Client.Client.RequestOptions(); @@ -1847,6 +1853,10 @@ public Ory.Client.Client.ExceptionFactory ExceptionFactory localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept); } + if (returnTo != null) + { + localVarRequestOptions.QueryParameters.Add(Ory.Client.Client.ClientUtils.ParameterToMultiMap("", "return_to", returnTo)); + } if (cookie != null) { localVarRequestOptions.HeaderParameters.Add("cookie", Ory.Client.Client.ClientUtils.ParameterToString(cookie)); // header parameter @@ -1872,11 +1882,12 @@ public Ory.Client.Client.ExceptionFactory ExceptionFactory /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// Cancellation Token to cancel the request. /// Task of ClientLogoutFlow - public async System.Threading.Tasks.Task CreateBrowserLogoutFlowAsync(string cookie = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task CreateBrowserLogoutFlowAsync(string cookie = default(string), string returnTo = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - Ory.Client.Client.ApiResponse localVarResponse = await CreateBrowserLogoutFlowWithHttpInfoAsync(cookie, cancellationToken).ConfigureAwait(false); + Ory.Client.Client.ApiResponse localVarResponse = await CreateBrowserLogoutFlowWithHttpInfoAsync(cookie, returnTo, cancellationToken).ConfigureAwait(false); return localVarResponse.Data; } @@ -1885,9 +1896,10 @@ public Ory.Client.Client.ExceptionFactory ExceptionFactory /// /// Thrown when fails to make API call /// HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + /// Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) /// Cancellation Token to cancel the request. /// Task of ApiResponse (ClientLogoutFlow) - public async System.Threading.Tasks.Task> CreateBrowserLogoutFlowWithHttpInfoAsync(string cookie = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async System.Threading.Tasks.Task> CreateBrowserLogoutFlowWithHttpInfoAsync(string cookie = default(string), string returnTo = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { Ory.Client.Client.RequestOptions localVarRequestOptions = new Ory.Client.Client.RequestOptions(); @@ -1912,6 +1924,10 @@ public Ory.Client.Client.ExceptionFactory ExceptionFactory localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept); } + if (returnTo != null) + { + localVarRequestOptions.QueryParameters.Add(Ory.Client.Client.ClientUtils.ParameterToMultiMap("", "return_to", returnTo)); + } if (cookie != null) { localVarRequestOptions.HeaderParameters.Add("cookie", Ory.Client.Client.ClientUtils.ParameterToString(cookie)); // header parameter diff --git a/clients/client/dotnet/src/Ory.Client/Api/IdentityApi.cs b/clients/client/dotnet/src/Ory.Client/Api/IdentityApi.cs index 3fba885e448..4f6fb9a8bb6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -141,8 +141,8 @@ public interface IIdentityApiSync : IApiAccessor /// Thrown when fails to make API call /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup - /// ClientIdentity - ClientIdentity DeleteIdentityCredentials(string id, string type); + /// + void DeleteIdentityCredentials(string id, string type); /// /// Delete a credential for a specific identity @@ -153,8 +153,8 @@ public interface IIdentityApiSync : IApiAccessor /// Thrown when fails to make API call /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup - /// ApiResponse of ClientIdentity - ApiResponse DeleteIdentityCredentialsWithHttpInfo(string id, string type); + /// ApiResponse of Object(void) + ApiResponse DeleteIdentityCredentialsWithHttpInfo(string id, string type); /// /// Delete & Invalidate an Identity's Sessions /// @@ -567,8 +567,8 @@ public interface IIdentityApiAsync : IApiAccessor /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup /// Cancellation Token to cancel the request. - /// Task of ClientIdentity - System.Threading.Tasks.Task DeleteIdentityCredentialsAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// Task of void + System.Threading.Tasks.Task DeleteIdentityCredentialsAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Delete a credential for a specific identity @@ -580,8 +580,8 @@ public interface IIdentityApiAsync : IApiAccessor /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup /// Cancellation Token to cancel the request. - /// Task of ApiResponse (ClientIdentity) - System.Threading.Tasks.Task> DeleteIdentityCredentialsWithHttpInfoAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + /// Task of ApiResponse + System.Threading.Tasks.Task> DeleteIdentityCredentialsWithHttpInfoAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); /// /// Delete & Invalidate an Identity's Sessions /// @@ -1698,11 +1698,10 @@ public Ory.Client.Client.ApiResponse DeleteIdentityWithHttpInfo(string i /// Thrown when fails to make API call /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup - /// ClientIdentity - public ClientIdentity DeleteIdentityCredentials(string id, string type) + /// + public void DeleteIdentityCredentials(string id, string type) { - Ory.Client.Client.ApiResponse localVarResponse = DeleteIdentityCredentialsWithHttpInfo(id, type); - return localVarResponse.Data; + DeleteIdentityCredentialsWithHttpInfo(id, type); } /// @@ -1711,8 +1710,8 @@ public ClientIdentity DeleteIdentityCredentials(string id, string type) /// Thrown when fails to make API call /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup - /// ApiResponse of ClientIdentity - public Ory.Client.Client.ApiResponse DeleteIdentityCredentialsWithHttpInfo(string id, string type) + /// ApiResponse of Object(void) + public Ory.Client.Client.ApiResponse DeleteIdentityCredentialsWithHttpInfo(string id, string type) { // verify the required parameter 'id' is set if (id == null) @@ -1759,7 +1758,7 @@ public Ory.Client.Client.ApiResponse DeleteIdentityCredentialsWi } // make the HTTP request - var localVarResponse = this.Client.Delete("/admin/identities/{id}/credentials/{type}", localVarRequestOptions, this.Configuration); + var localVarResponse = this.Client.Delete("/admin/identities/{id}/credentials/{type}", localVarRequestOptions, this.Configuration); if (this.ExceptionFactory != null) { Exception _exception = this.ExceptionFactory("DeleteIdentityCredentials", localVarResponse); @@ -1779,11 +1778,10 @@ public Ory.Client.Client.ApiResponse DeleteIdentityCredentialsWi /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup /// Cancellation Token to cancel the request. - /// Task of ClientIdentity - public async System.Threading.Tasks.Task DeleteIdentityCredentialsAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + /// Task of void + public async System.Threading.Tasks.Task DeleteIdentityCredentialsAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { - Ory.Client.Client.ApiResponse localVarResponse = await DeleteIdentityCredentialsWithHttpInfoAsync(id, type, cancellationToken).ConfigureAwait(false); - return localVarResponse.Data; + await DeleteIdentityCredentialsWithHttpInfoAsync(id, type, cancellationToken).ConfigureAwait(false); } /// @@ -1793,8 +1791,8 @@ public Ory.Client.Client.ApiResponse DeleteIdentityCredentialsWi /// ID is the identity's ID. /// Type is the credential's Type. One of totp, webauthn, lookup /// Cancellation Token to cancel the request. - /// Task of ApiResponse (ClientIdentity) - public async System.Threading.Tasks.Task> DeleteIdentityCredentialsWithHttpInfoAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + /// Task of ApiResponse + public async System.Threading.Tasks.Task> DeleteIdentityCredentialsWithHttpInfoAsync(string id, string type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { // verify the required parameter 'id' is set if (id == null) @@ -1842,7 +1840,7 @@ public Ory.Client.Client.ApiResponse DeleteIdentityCredentialsWi } // make the HTTP request - var localVarResponse = await this.AsynchronousClient.DeleteAsync("/admin/identities/{id}/credentials/{type}", localVarRequestOptions, this.Configuration, cancellationToken).ConfigureAwait(false); + var localVarResponse = await this.AsynchronousClient.DeleteAsync("/admin/identities/{id}/credentials/{type}", localVarRequestOptions, this.Configuration, cancellationToken).ConfigureAwait(false); if (this.ExceptionFactory != null) { diff --git a/clients/client/dotnet/src/Ory.Client/Api/JwkApi.cs b/clients/client/dotnet/src/Ory.Client/Api/JwkApi.cs index 63f489034f5..8b63ba0d507 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 83e5154583a..b29eb05d8c0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2311b8572dd..c95bbe94fe2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7954883c662..d145082ac14 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b1e9afd28d1..d1af9d7d567 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5da2fe3a2e6..1d5e689ce1d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4395cc0a436..8456838fc66 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 01cdb0f8eb8..b3f0cf1aada 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6328e0521e2..8f582839598 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d5b33926459..eee75b3e422 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 168c77e3fef..7a2c74b51d2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b0c92514871..31453958be1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f0153ebf432..45a70986b89 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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.39"; + public const string Version = "1.1.39-alpha.0"; /// /// Identifier for ISO 8601 DateTime Format @@ -107,7 +107,7 @@ public class Configuration : IReadableConfiguration public Configuration() { Proxy = null; - UserAgent = "OpenAPI-Generator/1.1.39/csharp"; + UserAgent = "OpenAPI-Generator/1.1.39-alpha.0/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.39\n"; - report += " SDK Package Version: 1.1.39\n"; + report += " Version of the API: v1.1.39-alpha.0\n"; + report += " SDK Package Version: 1.1.39-alpha.0\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 abd5ef405bf..fa7c45c6cd9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1a4d2c11bf6..209a21eb408 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eef317d4b13..7cd0b9c9947 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b9c4bbac40c..58065898cbe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c23d4031d18..19219eb5735 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bc938ceb463..5d4e81474e5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8589afce873..ecd9f22b414 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ea6751eac3d..6083fb947b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e3be087be01..9ad3e84be46 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1d01008339b..4cf952363fa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1e2a7508d40..98c95bc818a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 179c67617b2..0a80c8d4873 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0a9a3183b46..1940a26da37 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5ce2877c9da..de1bd92ce62 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3cb50fc7078..70596c370a7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73b1ebb038b..13800fa58e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2e895020c75..27aafdf06e1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 be7e7733d59..e935761e74a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 63c289f8ee3..35cb9415f25 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3842b8b3d1b..7a109a383c4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d63a3302670..6e05d1073cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 302e9d5bc42..1d0fdf293c6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 255b072e71a..3af7ba84ca1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a6f1e7b31f7..4b2e1da7d51 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4341c27518e..8e23951f20a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 80e9418e622..2546e2b35a5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c572f5a8a7e..7c4cf8233a2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 55c4df1a996..f602d264278 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7ab8caf3652..59c6fc63787 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a3af45f3461..7e8c11150d7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cc67a0b5535..47e26af1a4e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6b49000711d..214ff0a1ece 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvite.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvite.cs index fe9de1e7059..80d79dfad99 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvite.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvite.cs @@ -3,7 +3,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvitesResponse.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvitesResponse.cs index da7dff97a84..e5c4d3c021f 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvitesResponse.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientCreateProjectInvitesResponse.cs @@ -3,7 +3,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c8b7f634b11..0a78f87a451 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e18fad29dec..d2a37a39273 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73aaf04defe..8eea1def122 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f24062d7fb5..ce70d55fa4d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 968ede3c67c..12913908b67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6618d416842..63c0673bf8b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b2888dc0568..a61b478398e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 169e1b9bb6c..f55b543b46f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5be8c4800bb..95808ae195b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1143a21ba0b..5737a3339c3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0f93ea87e19..ccec6a920b4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 068dc68997e..27951f46059 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 07feecf11c1..d48dc999c96 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cc7bfe17677..86b50ba6d9d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 03eb12bd21e..a0d6e96f9ce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1daf763d47f..fb0a4e73823 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2fa647f6832..f0683520ce4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 921fc6ec4d1..7fe84235cda 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a3d456ac0d..664aa90554b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0d51837152e..5521e1bc7a8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6ab14c3c5d5..97f52828d48 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 00a7c0f034e..6bd106a1faf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 357e4fe546b..2c42f7124d5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ab54252475e..51cbeecda51 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 836b2cffe32..d275071a42d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d7616b64525..d9a0e9ff727 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5b4e5e874d1..6b0b2a8bac6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3f706bff2dd..51d92dd3656 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 99a9ee0b638..5a235d9721f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 51e00bf5854..c447d85015d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 40d730b15c3..b445208a216 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 532b8948cb5..493dc6b7bf3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 396b330c2c5..5104024971a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2a05f4b060b..34e3afbc14f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9bd18a3d2d1..ec053b3770e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 052eb179579..fea4b9686f5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3ea2c8d2880..6b3b95f76be 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 70eadf88c76..8fc35189912 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 97598e404d0..4f0d52a0077 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 051651ce95e..f0c4f92abc8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 33343160322..c3c927cf3c7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 68aa4337071..e46bebbb458 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 93b0e6f62a3..dce583db172 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 034c4eab85d..94ec6210bb6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a0dd2ba5ce9..4229e41e0b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c9ca4801720..a3be660747f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 47659949a27..36a99934fb3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 11c439489c2..b9515fdc0ce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5e57bc93f88..f0dd6ae76ba 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d881b0a8f1a..9c9cdcf50e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b87b3c10b61..fc611784ad9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c2d23c3e78a..856bf532cfe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -48,7 +48,7 @@ protected ClientLoginFlow() /// ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. (required). /// ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id> (required). /// IssuedAt is the time (UTC) when the flow started. (required). - /// oauth2LoginChallenge. + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.. /// oauth2LoginRequest. /// Refresh stores whether this login flow should enforce re-authentication.. /// RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. (required). @@ -129,9 +129,10 @@ protected ClientLoginFlow() public DateTime IssuedAt { get; set; } /// - /// Gets or Sets Oauth2LoginChallenge + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. /// - [DataMember(Name = "oauth2_login_challenge", EmitDefaultValue = true)] + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. + [DataMember(Name = "oauth2_login_challenge", EmitDefaultValue = false)] public string Oauth2LoginChallenge { get; set; } /// diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientLogoutFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientLogoutFlow.cs index d1595f9e86c..9a87d584bc6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 62bde8d7a47..b18f8745adc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d3eb2fd337c..f51d03f6086 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 30bcddac10a..b98c529a93f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 28e10c296a4..683494a2131 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c2c892581d2..1ce0bf54440 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9a44d151d76..8387b59ae2d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4eee22d3f3f..1856c6153c1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 05c6fd6cf07..38bab7a8e22 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -89,7 +89,8 @@ protected ClientNormalizedProject() /// currentRevision (required). /// hosts (required). /// subscriptionId. - public ClientNormalizedProject(ClientNormalizedProjectRevision currentRevision = default(ClientNormalizedProjectRevision), List hosts = default(List), string subscriptionId = default(string)) + /// subscriptionPlan. + public ClientNormalizedProject(ClientNormalizedProjectRevision currentRevision = default(ClientNormalizedProjectRevision), List hosts = default(List), string subscriptionId = default(string), string subscriptionPlan = default(string)) { // to ensure "currentRevision" is required (not null) if (currentRevision == null) { @@ -102,6 +103,7 @@ protected ClientNormalizedProject() } this.Hosts = hosts; this.SubscriptionId = subscriptionId; + this.SubscriptionPlan = subscriptionPlan; this.AdditionalProperties = new Dictionary(); } @@ -168,6 +170,12 @@ public bool ShouldSerializeSlug() [DataMember(Name = "subscription_id", EmitDefaultValue = true)] public string SubscriptionId { get; set; } + /// + /// Gets or Sets SubscriptionPlan + /// + [DataMember(Name = "subscription_plan", EmitDefaultValue = true)] + public string SubscriptionPlan { get; set; } + /// /// Last Time Project was Updated /// @@ -204,6 +212,7 @@ public override string ToString() sb.Append(" Slug: ").Append(Slug).Append("\n"); sb.Append(" State: ").Append(State).Append("\n"); sb.Append(" SubscriptionId: ").Append(SubscriptionId).Append("\n"); + sb.Append(" SubscriptionPlan: ").Append(SubscriptionPlan).Append("\n"); sb.Append(" UpdatedAt: ").Append(UpdatedAt).Append("\n"); sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n"); sb.Append("}\n"); @@ -276,6 +285,11 @@ public bool Equals(ClientNormalizedProject input) (this.SubscriptionId != null && this.SubscriptionId.Equals(input.SubscriptionId)) ) && + ( + this.SubscriptionPlan == input.SubscriptionPlan || + (this.SubscriptionPlan != null && + this.SubscriptionPlan.Equals(input.SubscriptionPlan)) + ) && ( this.UpdatedAt == input.UpdatedAt || (this.UpdatedAt != null && @@ -318,6 +332,10 @@ public override int GetHashCode() { hashCode = (hashCode * 59) + this.SubscriptionId.GetHashCode(); } + if (this.SubscriptionPlan != null) + { + hashCode = (hashCode * 59) + this.SubscriptionPlan.GetHashCode(); + } if (this.UpdatedAt != null) { hashCode = (hashCode * 59) + this.UpdatedAt.GetHashCode(); diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevision.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevision.cs index 4b9518a2d9d..5ee882f7823 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionHook.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientNormalizedProjectRevisionHook.cs index 1578dbe9981..faf322a0a63 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c34f4637e4b..488cd36eb0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e757c9ea052..63168f71c64 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5928e4efa09..8fa3d922fd5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2747342c3a1..7b2af1ec36b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a8fbe3626d6..a4a9950f44f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 818eab722af..fc872d28751 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c1b213b2631..d914662752b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b55487e95bc..e9f99f5110b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b7f2445c505..7d4d1d636f1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bf5dd9b6de8..b2b87129c50 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 70cf5b4aed7..fef75ce9dd7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 039f7fb64b8..61f55510deb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 327ee87b9d6..92bff521ec9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3e833e73103..7348c26c34b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 59102a1f70d..fe811242448 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 155a013c939..8a156a73336 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4ac5ccfe8d4..ef3dca6ba09 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f25f53aa87a..0b9c60d287f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f456030c950..e14b485d882 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 34587510830..199e8609753 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0b0b9b3b600..4161d22f1b4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7ba7d141c0d..9409c14e20d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e63fc7bf810..8d999b2c7eb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 22fb579d50b..bd59225e470 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f10e06f0a93..235d8b423b6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d3e9da0f965..9164fef3559 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -27,7 +27,7 @@ namespace Ory.Client.Model { /// - /// The Project Branding + /// ClientProjectBranding /// [DataContract(Name = "projectBranding")] public partial class ClientProjectBranding : IEquatable, IValidatableObject @@ -45,7 +45,7 @@ protected ClientProjectBranding() /// /// defaultTheme (required). /// The Project's ID this customization is associated with (required). - /// The Project Branding Themes (required). + /// themes (required). public ClientProjectBranding(ClientProjectBrandingTheme defaultTheme = default(ClientProjectBrandingTheme), string projectId = default(string), List themes = default(List)) { // to ensure "defaultTheme" is required (not null) @@ -110,9 +110,8 @@ public bool ShouldSerializeId() public string ProjectId { get; set; } /// - /// The Project Branding Themes + /// Gets or Sets Themes /// - /// The Project Branding Themes [DataMember(Name = "themes", IsRequired = true, EmitDefaultValue = false)] public List Themes { get; set; } diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingColors.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingColors.cs index 6ac1e6fa2e7..ad0b7167910 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -27,7 +27,7 @@ namespace Ory.Client.Model { /// - /// The Project Branding Colors + /// ClientProjectBrandingColors /// [DataContract(Name = "projectBrandingColors")] public partial class ClientProjectBrandingColors : IEquatable, IValidatableObject diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingTheme.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectBrandingTheme.cs index d8bf8fe9e36..192c278d031 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -27,7 +27,7 @@ namespace Ory.Client.Model { /// - /// The Project Branding Theme + /// ClientProjectBrandingTheme /// [DataContract(Name = "projectBrandingTheme")] public partial class ClientProjectBrandingTheme : IEquatable, IValidatableObject diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectHost.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectHost.cs index 98c825d7f60..2651ccba634 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectInvite.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectInvite.cs index 5d20044a479..63d0aa3b8f9 100644 --- a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectInvite.cs +++ b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectInvite.cs @@ -3,7 +3,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 579dc4a1e30..10ca8a80ec9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -82,8 +82,9 @@ protected ClientProjectMetadata() /// The project's name if set (required). /// The state of the project. running Running halted Halted deleted Deleted (required). /// subscriptionId. + /// subscriptionPlan. /// Last Time Project was Updated (required). - public ClientProjectMetadata(DateTime createdAt = default(DateTime), List hosts = default(List), string name = default(string), StateEnum state = default(StateEnum), string subscriptionId = default(string), DateTime updatedAt = default(DateTime)) + public ClientProjectMetadata(DateTime createdAt = default(DateTime), List hosts = default(List), string name = default(string), StateEnum state = default(StateEnum), string subscriptionId = default(string), string subscriptionPlan = default(string), DateTime updatedAt = default(DateTime)) { this.CreatedAt = createdAt; // to ensure "hosts" is required (not null) @@ -99,6 +100,7 @@ protected ClientProjectMetadata() this.State = state; this.UpdatedAt = updatedAt; this.SubscriptionId = subscriptionId; + this.SubscriptionPlan = subscriptionPlan; this.AdditionalProperties = new Dictionary(); } @@ -158,6 +160,12 @@ public bool ShouldSerializeSlug() [DataMember(Name = "subscription_id", EmitDefaultValue = true)] public string SubscriptionId { get; set; } + /// + /// Gets or Sets SubscriptionPlan + /// + [DataMember(Name = "subscription_plan", EmitDefaultValue = true)] + public string SubscriptionPlan { get; set; } + /// /// Last Time Project was Updated /// @@ -186,6 +194,7 @@ public override string ToString() sb.Append(" Slug: ").Append(Slug).Append("\n"); sb.Append(" State: ").Append(State).Append("\n"); sb.Append(" SubscriptionId: ").Append(SubscriptionId).Append("\n"); + sb.Append(" SubscriptionPlan: ").Append(SubscriptionPlan).Append("\n"); sb.Append(" UpdatedAt: ").Append(UpdatedAt).Append("\n"); sb.Append(" AdditionalProperties: ").Append(AdditionalProperties).Append("\n"); sb.Append("}\n"); @@ -258,6 +267,11 @@ public bool Equals(ClientProjectMetadata input) (this.SubscriptionId != null && this.SubscriptionId.Equals(input.SubscriptionId)) ) && + ( + this.SubscriptionPlan == input.SubscriptionPlan || + (this.SubscriptionPlan != null && + this.SubscriptionPlan.Equals(input.SubscriptionPlan)) + ) && ( this.UpdatedAt == input.UpdatedAt || (this.UpdatedAt != null && @@ -300,6 +314,10 @@ public override int GetHashCode() { hashCode = (hashCode * 59) + this.SubscriptionId.GetHashCode(); } + if (this.SubscriptionPlan != null) + { + hashCode = (hashCode * 59) + this.SubscriptionPlan.GetHashCode(); + } if (this.UpdatedAt != null) { hashCode = (hashCode * 59) + this.UpdatedAt.GetHashCode(); diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceIdentity.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientProjectServiceIdentity.cs index 2296ed63382..c484b1662bc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eccc76fea9c..0bc20b700c8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dc7ae3d68f7..e03ce298fbc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 44076e4e4f2..4f9167a2f99 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e74f610c350..4cd2d4253b7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 89bb5ea5b29..3012ebbfe7e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d6713aa5fac..404bea86c77 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 41c1b46e572..f60833323b3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 381c51db506..d1256fece5e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 788f02bfca8..0d6c6716e00 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3d835f3a93e..3c5a605698d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -47,7 +47,7 @@ protected ClientRegistrationFlow() /// ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. (required). /// ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id> (required). /// IssuedAt is the time (UTC) when the flow occurred. (required). - /// oauth2LoginChallenge. + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.. /// oauth2LoginRequest. /// RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. (required). /// ReturnTo contains the requested return_to URL.. @@ -116,9 +116,10 @@ protected ClientRegistrationFlow() public DateTime IssuedAt { get; set; } /// - /// Gets or Sets Oauth2LoginChallenge + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. /// - [DataMember(Name = "oauth2_login_challenge", EmitDefaultValue = true)] + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. + [DataMember(Name = "oauth2_login_challenge", EmitDefaultValue = false)] public string Oauth2LoginChallenge { get; set; } /// diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientRejectOAuth2Request.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientRejectOAuth2Request.cs index 126a40613ad..72ce245fca9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 75d3439516f..1f1723dbc54 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0c4d00825dd..2cfcce0fc1a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3a8ed6d13c9..30ae37e2654 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8fb66760775..22d6867c7c7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5efd532cda0..76b7c76e220 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c5f887ffe94..a1a1936bd14 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f12ce04a990..a5e75d86932 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 239579167f1..03fe0908e86 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6be86158e0d..9388e809065 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e10db690cee..850997aaef8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 40c2c91f2c6..6a4690d8cfe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0d38f335628..3de1def9906 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6522c009799..b8fb905f0f4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1b534e46ed5..130ce105bf1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -27,7 +27,7 @@ namespace Ory.Client.Model { /// - /// Set Project Branding Theme Request Parameters + /// ClientSetProjectBrandingThemeBody /// [DataContract(Name = "setProjectBrandingThemeBody")] public partial class ClientSetProjectBrandingThemeBody : IEquatable, IValidatableObject diff --git a/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlow.cs b/clients/client/dotnet/src/Ory.Client/Model/ClientSettingsFlow.cs index 12a8162cad3..e4a0a336dee 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3d5b50dc43f..5c22873aaba 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2169a73bc22..2b6f154844a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9286f31e9b5..78e0648b801 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6bfc719feb4..c744daeb525 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 03596c19055..4905cc2ea12 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b3c746701b3..1c3d70f6c8f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e5a5ceac9bd..b76a9ff27e2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2d4b28679d3..70f0a14a369 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e26b26cfa58..51832edac2d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c58abb8f089..a3a0ff1f935 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b6c24e2acb7..396712a2190 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 27445e106da..2e42b12961b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 60497342f2e..8245277601d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 09c7e43ff07..c87477600ea 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b62452d658e..6438cc9967c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c8f043b8cfa..b2a386d2c42 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0ee5ae85f61..ad8783d5224 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cad3ccc9b03..d23dc15b08d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 58c848504c4..5cd718a0004 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aec7283ac10..1e6db8e760c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ff82d7ccad5..3c493793569 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 962584c96b5..ae611431436 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3c59579c337..c833a013edf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e4e268510e2..e8f349328bf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6173ea75887..07ced631249 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 03d33afa8be..c7200baac4c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 61ab8e03ee8..fe94e5a5e0b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 56642aee960..aa38e857766 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 917722f25c0..ce6b2076109 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1913ce49d6f..a468e2c67d2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 38af6048440..0c812244d22 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73d5d18ecc6..fd6525546ec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a864f954d95..ca7942c7e05 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2f2c8b2d11e..81c7fdc636c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8f5d56a03a2..5fe44b2adb5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2342dd91e72..8416182e29c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 44b589438d9..f4d92992815 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7226a7b88af..c333a2402da 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ada300b66a9..2c193f013e8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b145393bce4..6280080c0ab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf658939323..556df722101 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a81d73ba8d9..4914011b9ab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 32e4d8c621a..70e9ae79b0a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c2ed957a52e..a1195941d60 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3ba5ff7d742..5fbd1ba5cb6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 968bf8102e6..368dd802bfb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9d49a4300f0..64989fcb16e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bdaef7c549c..d1887b7e140 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7f36a8f6baa..0bfb4960c23 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c7bc376f832..2e3de93f300 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ca0b8b57318..56282e6e43f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f454584daf3..3c6e2ffebc0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1f6be599c1b..47fe3d7d1cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dfd1e5a917e..c7634e95d68 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c4cf7d750fe..9514861fb44 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fc9bb59d91c..ea18409d0a4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5b96d8f1745..c3f1fa6ba12 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3c13a23389d..6ffcb32f343 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.39 + 1.1.39-alpha.0 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 877913d8572..32291c0e648 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.39"}] + [{:ory_client, "~> v1.1.39-alpha.0"}] end ``` diff --git a/clients/client/elixir/lib/ory/api/frontend.ex b/clients/client/elixir/lib/ory/api/frontend.ex index 14e33bb9258..0e9a2e36b3d 100644 --- a/clients/client/elixir/lib/ory/api/frontend.ex +++ b/clients/client/elixir/lib/ory/api/frontend.ex @@ -64,6 +64,7 @@ defmodule Ory.Api.Frontend do - `connection` (Ory.Connection): Connection to server - `opts` (keyword): Optional parameters - `:cookie` (String.t): HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + - `:return_to` (String.t): Return to URL The URL to which the browser should be redirected to after the logout has been performed. ### Returns @@ -73,7 +74,8 @@ defmodule Ory.Api.Frontend do @spec create_browser_logout_flow(Tesla.Env.client, keyword()) :: {:ok, Ory.Model.ErrorGeneric.t} | {:ok, Ory.Model.LogoutFlow.t} | {:error, Tesla.Env.t} def create_browser_logout_flow(connection, opts \\ []) do optional_params = %{ - :cookie => :headers + :cookie => :headers, + :return_to => :query } request = @@ -87,6 +89,7 @@ defmodule Ory.Api.Frontend do |> Connection.request(request) |> evaluate_response([ {200, %Ory.Model.LogoutFlow{}}, + {400, %Ory.Model.ErrorGeneric{}}, {401, %Ory.Model.ErrorGeneric{}}, {500, %Ory.Model.ErrorGeneric{}} ]) diff --git a/clients/client/elixir/lib/ory/api/identity.ex b/clients/client/elixir/lib/ory/api/identity.ex index 94584ef4e52..43c7e98c7ec 100644 --- a/clients/client/elixir/lib/ory/api/identity.ex +++ b/clients/client/elixir/lib/ory/api/identity.ex @@ -210,10 +210,10 @@ defmodule Ory.Api.Identity do ### Returns - - `{:ok, Ory.Model.Identity.t}` on success + - `{:ok, nil}` on success - `{:error, Tesla.Env.t}` on failure """ - @spec delete_identity_credentials(Tesla.Env.client, String.t, String.t, keyword()) :: {:ok, Ory.Model.ErrorGeneric.t} | {:ok, Ory.Model.Identity.t} | {:error, Tesla.Env.t} + @spec delete_identity_credentials(Tesla.Env.client, String.t, String.t, keyword()) :: {:ok, nil} | {:ok, Ory.Model.ErrorGeneric.t} | {:error, Tesla.Env.t} def delete_identity_credentials(connection, id, type, _opts \\ []) do request = %{} @@ -224,7 +224,7 @@ defmodule Ory.Api.Identity do connection |> Connection.request(request) |> evaluate_response([ - {200, %Ory.Model.Identity{}}, + {204, false}, {404, %Ory.Model.ErrorGeneric{}}, {:default, %Ory.Model.ErrorGeneric{}} ]) diff --git a/clients/client/elixir/lib/ory/connection.ex b/clients/client/elixir/lib/ory/connection.ex index 049d4c14d83..a0c4d04e477 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.39 - elixir" + "openapi-generator - Ory v1.1.39-alpha.0 - elixir" ) ) diff --git a/clients/client/elixir/lib/ory/model/normalized_project.ex b/clients/client/elixir/lib/ory/model/normalized_project.ex index e8e7da0e6f6..ea04019753e 100644 --- a/clients/client/elixir/lib/ory/model/normalized_project.ex +++ b/clients/client/elixir/lib/ory/model/normalized_project.ex @@ -15,6 +15,7 @@ defmodule Ory.Model.NormalizedProject do :slug, :state, :subscription_id, + :subscription_plan, :updated_at ] @@ -26,6 +27,7 @@ defmodule Ory.Model.NormalizedProject do :slug => String.t, :state => String.t, :subscription_id => String.t | nil, + :subscription_plan => String.t | nil, :updated_at => DateTime.t } end diff --git a/clients/client/elixir/lib/ory/model/project_branding.ex b/clients/client/elixir/lib/ory/model/project_branding.ex index bf98235e794..c3d742a3b25 100644 --- a/clients/client/elixir/lib/ory/model/project_branding.ex +++ b/clients/client/elixir/lib/ory/model/project_branding.ex @@ -3,7 +3,7 @@ defmodule Ory.Model.ProjectBranding do @moduledoc """ - The Project Branding + """ @derive [Poison.Encoder] diff --git a/clients/client/elixir/lib/ory/model/project_branding_colors.ex b/clients/client/elixir/lib/ory/model/project_branding_colors.ex index 16def35c967..3a1ef014bb9 100644 --- a/clients/client/elixir/lib/ory/model/project_branding_colors.ex +++ b/clients/client/elixir/lib/ory/model/project_branding_colors.ex @@ -3,7 +3,7 @@ defmodule Ory.Model.ProjectBrandingColors do @moduledoc """ - The Project Branding Colors + """ @derive [Poison.Encoder] diff --git a/clients/client/elixir/lib/ory/model/project_branding_theme.ex b/clients/client/elixir/lib/ory/model/project_branding_theme.ex index d3b7d7921b9..04065bf0829 100644 --- a/clients/client/elixir/lib/ory/model/project_branding_theme.ex +++ b/clients/client/elixir/lib/ory/model/project_branding_theme.ex @@ -3,7 +3,7 @@ defmodule Ory.Model.ProjectBrandingTheme do @moduledoc """ - The Project Branding Theme + """ @derive [Poison.Encoder] diff --git a/clients/client/elixir/lib/ory/model/project_metadata.ex b/clients/client/elixir/lib/ory/model/project_metadata.ex index 886cd86a806..a4c302c99fc 100644 --- a/clients/client/elixir/lib/ory/model/project_metadata.ex +++ b/clients/client/elixir/lib/ory/model/project_metadata.ex @@ -15,6 +15,7 @@ defmodule Ory.Model.ProjectMetadata do :slug, :state, :subscription_id, + :subscription_plan, :updated_at ] @@ -26,6 +27,7 @@ defmodule Ory.Model.ProjectMetadata do :slug => String.t | nil, :state => String.t, :subscription_id => String.t | nil, + :subscription_plan => String.t | nil, :updated_at => DateTime.t } end diff --git a/clients/client/elixir/lib/ory/model/set_project_branding_theme_body.ex b/clients/client/elixir/lib/ory/model/set_project_branding_theme_body.ex index 31efc024f25..2943909a1a4 100644 --- a/clients/client/elixir/lib/ory/model/set_project_branding_theme_body.ex +++ b/clients/client/elixir/lib/ory/model/set_project_branding_theme_body.ex @@ -3,7 +3,7 @@ defmodule Ory.Model.SetProjectBrandingThemeBody do @moduledoc """ - Set Project Branding Theme Request Parameters + """ @derive [Poison.Encoder] diff --git a/clients/client/elixir/mix.exs b/clients/client/elixir/mix.exs index 0febe7a8e27..2fef975c80a 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.39", + version: "1.1.39-alpha.0", elixir: "~> 1.10", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, diff --git a/clients/client/go/README.md b/clients/client/go/README.md index d86089f5e36..cf7f68c191d 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.39 +- API version: v1.1.39-alpha.0 - 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 1e369b3dc0a..14ec069edbc 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.39 + version: v1.1.39-alpha.0 servers: - url: "https://{project}.projects.oryapis.com/" variables: @@ -898,12 +898,9 @@ paths: type: string style: simple responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/identity' - description: identity + "204": + description: "Empty responses are sent when, for example, resources are\ + \ deleted. The HTTP status code for empty responses is\ntypically 201." "404": content: application/json: @@ -4728,6 +4725,18 @@ paths: schema: type: string style: simple + - description: |- + Return to URL + + The URL to which the browser should be redirected to after the logout + has been performed. + explode: true + in: query + name: return_to + required: false + schema: + type: string + style: form responses: "200": content: @@ -4735,6 +4744,12 @@ paths: schema: $ref: '#/components/schemas/logoutFlow' description: logoutFlow + "400": + content: + application/json: + schema: + $ref: '#/components/schemas/errorGeneric' + description: errorGeneric "401": content: application/json: @@ -7023,11 +7038,6 @@ components: theme: $ref: '#/components/schemas/projectBrandingColors' type: object - createProjectBrandingsBody: - description: Create multiple Project Brandings Request Body - items: - $ref: '#/components/schemas/createProjectBranding' - type: array createProjectInvite: description: Create Project Invite Request Body properties: @@ -8449,8 +8459,11 @@ components: format: date-time type: string oauth2_login_challenge: - format: uuid4 - nullable: true + description: |- + Ory OAuth 2.0 Login Challenge. + + This value is set using the `login_challenge` query parameter of the registration and login endpoints. + If 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' @@ -8813,6 +8826,9 @@ components: format: uuid4 nullable: true type: string + subscription_plan: + nullable: true + type: string updated_at: description: Last Time Project was Updated format: date-time @@ -11819,7 +11835,6 @@ components: $ref: '#/components/schemas/projectApiKey' type: array projectBranding: - description: The Project Branding properties: created_at: description: The Customization Creation Date @@ -11838,9 +11853,9 @@ components: format: uuid type: string themes: - description: The Project Branding Themes items: $ref: '#/components/schemas/projectBrandingTheme' + title: ProjectBrandingThemes is a list of ProjectBrandingTheme. type: array updated_at: description: Last Time Branding was Updated @@ -11854,9 +11869,9 @@ components: - project_id - themes - updated_at + title: ProjectBranding holds all settings for customizing the Ory Account Experience. type: object projectBrandingColors: - description: The Project Branding Colors properties: accent_default_color: description: AccentDefaultColor is a hex color code used by the Ory Account @@ -11974,9 +11989,10 @@ components: 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: - description: The Project Branding Theme properties: accent_default_color: description: AccentDefaultColor is a hex color code used by the Ory Account @@ -12132,11 +12148,12 @@ components: - name - project_branding_id - updated_at + title: ProjectBrandingTheme represents a Theme for the Ory Account Experience. type: object projectBrandingThemes: - description: The Project Branding Themes items: $ref: '#/components/schemas/projectBrandingTheme' + title: ProjectBrandingThemes is a list of ProjectBrandingTheme. type: array projectHost: properties: @@ -12247,6 +12264,7 @@ components: id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: running slug: slug + subscription_plan: subscription_plan properties: created_at: description: The Project's Creation Date @@ -12289,6 +12307,9 @@ components: format: uuid4 nullable: true type: string + subscription_plan: + nullable: true + type: string updated_at: description: Last Time Project was Updated format: date-time @@ -12808,8 +12829,11 @@ components: format: date-time type: string oauth2_login_challenge: - format: uuid4 - nullable: true + description: |- + Ory OAuth 2.0 Login Challenge. + + This value is set using the `login_challenge` query parameter of the registration and login endpoints. + If 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' @@ -13256,7 +13280,6 @@ components: - services type: object setProjectBrandingThemeBody: - description: Set Project Branding Theme Request Parameters properties: logo_type: description: Logo type @@ -13269,6 +13292,8 @@ components: 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\ diff --git a/clients/client/go/api_courier.go b/clients/client/go/api_courier.go index 917bda0dd26..5fe99907d72 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_frontend.go b/clients/client/go/api_frontend.go index c3f6ab3953c..7ffebef39e9 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -1122,6 +1122,7 @@ type FrontendApiCreateBrowserLogoutFlowRequest struct { ctx context.Context ApiService FrontendApi cookie *string + returnTo *string } // HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. @@ -1130,6 +1131,12 @@ func (r FrontendApiCreateBrowserLogoutFlowRequest) Cookie(cookie string) Fronten return r } +// Return to URL The URL to which the browser should be redirected to after the logout has been performed. +func (r FrontendApiCreateBrowserLogoutFlowRequest) ReturnTo(returnTo string) FrontendApiCreateBrowserLogoutFlowRequest { + r.returnTo = &returnTo + return r +} + func (r FrontendApiCreateBrowserLogoutFlowRequest) Execute() (*LogoutFlow, *http.Response, error) { return r.ApiService.CreateBrowserLogoutFlowExecute(r) } @@ -1179,6 +1186,9 @@ func (a *FrontendApiService) CreateBrowserLogoutFlowExecute(r FrontendApiCreateB localVarQueryParams := url.Values{} localVarFormParams := url.Values{} + if r.returnTo != nil { + localVarQueryParams.Add("return_to", parameterToString(*r.returnTo, "")) + } // to determine the Content-Type header localVarHTTPContentTypes := []string{} @@ -1221,6 +1231,16 @@ func (a *FrontendApiService) CreateBrowserLogoutFlowExecute(r FrontendApiCreateB body: localVarBody, error: localVarHTTPResponse.Status, } + if localVarHTTPResponse.StatusCode == 400 { + var v ErrorGeneric + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } if localVarHTTPResponse.StatusCode == 401 { var v ErrorGeneric err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) diff --git a/clients/client/go/api_identity.go b/clients/client/go/api_identity.go index f1208e86ff9..9e26966f1b0 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -118,8 +118,7 @@ You can only delete second factor (aal2) credentials. DeleteIdentityCredentials(ctx context.Context, id string, type_ string) IdentityApiDeleteIdentityCredentialsRequest // DeleteIdentityCredentialsExecute executes the request - // @return Identity - DeleteIdentityCredentialsExecute(r IdentityApiDeleteIdentityCredentialsRequest) (*Identity, *http.Response, error) + DeleteIdentityCredentialsExecute(r IdentityApiDeleteIdentityCredentialsRequest) (*http.Response, error) /* DeleteIdentitySessions Delete & Invalidate an Identity's Sessions @@ -970,7 +969,7 @@ type IdentityApiDeleteIdentityCredentialsRequest struct { type_ string } -func (r IdentityApiDeleteIdentityCredentialsRequest) Execute() (*Identity, *http.Response, error) { +func (r IdentityApiDeleteIdentityCredentialsRequest) Execute() (*http.Response, error) { return r.ApiService.DeleteIdentityCredentialsExecute(r) } @@ -995,18 +994,16 @@ func (a *IdentityApiService) DeleteIdentityCredentials(ctx context.Context, id s } // Execute executes the request -// @return Identity -func (a *IdentityApiService) DeleteIdentityCredentialsExecute(r IdentityApiDeleteIdentityCredentialsRequest) (*Identity, *http.Response, error) { +func (a *IdentityApiService) DeleteIdentityCredentialsExecute(r IdentityApiDeleteIdentityCredentialsRequest) (*http.Response, error) { var ( localVarHTTPMethod = http.MethodDelete localVarPostBody interface{} formFiles []formFile - localVarReturnValue *Identity ) localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "IdentityApiService.DeleteIdentityCredentials") if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + return nil, &GenericOpenAPIError{error: err.Error()} } localVarPath := localBasePath + "/admin/identities/{id}/credentials/{type}" @@ -1036,19 +1033,19 @@ func (a *IdentityApiService) DeleteIdentityCredentialsExecute(r IdentityApiDelet } req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { - return localVarReturnValue, nil, err + return nil, err } localVarHTTPResponse, err := a.client.callAPI(req) if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err + return localVarHTTPResponse, err } localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) localVarHTTPResponse.Body.Close() localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) if err != nil { - return localVarReturnValue, localVarHTTPResponse, err + return localVarHTTPResponse, err } if localVarHTTPResponse.StatusCode >= 300 { @@ -1061,31 +1058,22 @@ func (a *IdentityApiService) DeleteIdentityCredentialsExecute(r IdentityApiDelet err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) if err != nil { newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr + return localVarHTTPResponse, newErr } newErr.model = v - return localVarReturnValue, localVarHTTPResponse, newErr + return localVarHTTPResponse, newErr } var v ErrorGeneric err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) if err != nil { newErr.error = err.Error() - return localVarReturnValue, localVarHTTPResponse, newErr + return localVarHTTPResponse, newErr } newErr.model = v - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr + return localVarHTTPResponse, newErr } - return localVarReturnValue, localVarHTTPResponse, nil + return localVarHTTPResponse, nil } type IdentityApiDeleteIdentitySessionsRequest struct { diff --git a/clients/client/go/api_jwk.go b/clients/client/go/api_jwk.go index ecddac98485..3e277be3805 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_metadata.go b/clients/client/go/api_metadata.go index 53ef5ca01a1..b343776f9e5 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_o_auth2.go b/clients/client/go/api_o_auth2.go index e8c593d083c..d5d83bd4c14 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_oidc.go b/clients/client/go/api_oidc.go index ec9898b5ce9..f9edc9cab01 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_permission.go b/clients/client/go/api_permission.go index 5315405c6e4..72e959b5e24 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_project.go b/clients/client/go/api_project.go index f602524fda0..4e52a892059 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_relationship.go b/clients/client/go/api_relationship.go index 7642df41dba..cda72cf2657 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/api_wellknown.go b/clients/client/go/api_wellknown.go index 31720d500ab..2738fb36173 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/client.go b/clients/client/go/client.go index 23b6a9a0047..8fc9c2fa8bb 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.39 +API version: v1.1.39-alpha.0 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.39 +// APIClient manages communication with the Ory APIs API vv1.1.39-alpha.0 // 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 960e63a84bb..af3573182d8 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/docs/FrontendApi.md b/clients/client/go/docs/FrontendApi.md index b9e5da83022..dda84beb628 100644 --- a/clients/client/go/docs/FrontendApi.md +++ b/clients/client/go/docs/FrontendApi.md @@ -113,7 +113,7 @@ No authorization required ## CreateBrowserLogoutFlow -> LogoutFlow CreateBrowserLogoutFlow(ctx).Cookie(cookie).Execute() +> LogoutFlow CreateBrowserLogoutFlow(ctx).Cookie(cookie).ReturnTo(returnTo).Execute() Create a Logout URL for Browsers @@ -133,10 +133,11 @@ import ( func main() { cookie := "cookie_example" // string | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + returnTo := "returnTo_example" // string | Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.FrontendApi.CreateBrowserLogoutFlow(context.Background()).Cookie(cookie).Execute() + resp, r, err := apiClient.FrontendApi.CreateBrowserLogoutFlow(context.Background()).Cookie(cookie).ReturnTo(returnTo).Execute() if err != nil { fmt.Fprintf(os.Stderr, "Error when calling `FrontendApi.CreateBrowserLogoutFlow``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) @@ -158,6 +159,7 @@ Other parameters are passed through a pointer to a apiCreateBrowserLogoutFlowReq Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **cookie** | **string** | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | + **returnTo** | **string** | Return to URL The URL to which the browser should be redirected to after the logout has been performed. | ### Return type diff --git a/clients/client/go/docs/IdentityApi.md b/clients/client/go/docs/IdentityApi.md index dc6badd8451..12dc9096a19 100644 --- a/clients/client/go/docs/IdentityApi.md +++ b/clients/client/go/docs/IdentityApi.md @@ -359,7 +359,7 @@ Name | Type | Description | Notes ## DeleteIdentityCredentials -> Identity DeleteIdentityCredentials(ctx, id, type_).Execute() +> DeleteIdentityCredentials(ctx, id, type_).Execute() Delete a credential for a specific identity @@ -388,8 +388,6 @@ func main() { fmt.Fprintf(os.Stderr, "Error when calling `IdentityApi.DeleteIdentityCredentials``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `DeleteIdentityCredentials`: Identity - fmt.Fprintf(os.Stdout, "Response from `IdentityApi.DeleteIdentityCredentials`: %v\n", resp) } ``` @@ -414,7 +412,7 @@ Name | Type | Description | Notes ### Return type -[**Identity**](Identity.md) + (empty response body) ### Authorization diff --git a/clients/client/go/docs/LoginFlow.md b/clients/client/go/docs/LoginFlow.md index 31956f0b529..32a6b113509 100644 --- a/clients/client/go/docs/LoginFlow.md +++ b/clients/client/go/docs/LoginFlow.md @@ -9,7 +9,7 @@ Name | Type | Description | Notes **ExpiresAt** | **time.Time** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **Id** | **string** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id> | **IssuedAt** | **time.Time** | IssuedAt is the time (UTC) when the flow started. | -**Oauth2LoginChallenge** | Pointer to **NullableString** | | [optional] +**Oauth2LoginChallenge** | Pointer to **string** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **Oauth2LoginRequest** | Pointer to [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **Refresh** | Pointer to **bool** | Refresh stores whether this login flow should enforce re-authentication. | [optional] **RequestUrl** | **string** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | @@ -174,16 +174,6 @@ SetOauth2LoginChallenge sets Oauth2LoginChallenge field to given value. HasOauth2LoginChallenge returns a boolean if a field has been set. -### SetOauth2LoginChallengeNil - -`func (o *LoginFlow) SetOauth2LoginChallengeNil(b bool)` - - SetOauth2LoginChallengeNil sets the value for Oauth2LoginChallenge to be an explicit nil - -### UnsetOauth2LoginChallenge -`func (o *LoginFlow) UnsetOauth2LoginChallenge()` - -UnsetOauth2LoginChallenge ensures that no value is present for Oauth2LoginChallenge, not even an explicit nil ### GetOauth2LoginRequest `func (o *LoginFlow) GetOauth2LoginRequest() OAuth2LoginRequest` diff --git a/clients/client/go/docs/NormalizedProject.md b/clients/client/go/docs/NormalizedProject.md index 55c799922a3..0499b46fb78 100644 --- a/clients/client/go/docs/NormalizedProject.md +++ b/clients/client/go/docs/NormalizedProject.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **Slug** | **string** | The project's slug | [readonly] **State** | **string** | The state of the project. running Running halted Halted deleted Deleted | [readonly] **SubscriptionId** | Pointer to **NullableString** | | [optional] +**SubscriptionPlan** | Pointer to **NullableString** | | [optional] **UpdatedAt** | **time.Time** | Last Time Project was Updated | [readonly] ## Methods @@ -187,6 +188,41 @@ HasSubscriptionId returns a boolean if a field has been set. `func (o *NormalizedProject) UnsetSubscriptionId()` UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil +### GetSubscriptionPlan + +`func (o *NormalizedProject) GetSubscriptionPlan() string` + +GetSubscriptionPlan returns the SubscriptionPlan field if non-nil, zero value otherwise. + +### GetSubscriptionPlanOk + +`func (o *NormalizedProject) GetSubscriptionPlanOk() (*string, bool)` + +GetSubscriptionPlanOk returns a tuple with the SubscriptionPlan field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSubscriptionPlan + +`func (o *NormalizedProject) SetSubscriptionPlan(v string)` + +SetSubscriptionPlan sets SubscriptionPlan field to given value. + +### HasSubscriptionPlan + +`func (o *NormalizedProject) HasSubscriptionPlan() bool` + +HasSubscriptionPlan returns a boolean if a field has been set. + +### SetSubscriptionPlanNil + +`func (o *NormalizedProject) SetSubscriptionPlanNil(b bool)` + + SetSubscriptionPlanNil sets the value for SubscriptionPlan to be an explicit nil + +### UnsetSubscriptionPlan +`func (o *NormalizedProject) UnsetSubscriptionPlan()` + +UnsetSubscriptionPlan ensures that no value is present for SubscriptionPlan, not even an explicit nil ### GetUpdatedAt `func (o *NormalizedProject) GetUpdatedAt() time.Time` diff --git a/clients/client/go/docs/ProjectBranding.md b/clients/client/go/docs/ProjectBranding.md index 3b82d7689ed..00b99c87832 100644 --- a/clients/client/go/docs/ProjectBranding.md +++ b/clients/client/go/docs/ProjectBranding.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **DefaultTheme** | [**ProjectBrandingTheme**](ProjectBrandingTheme.md) | | **Id** | **string** | The customization ID. | [readonly] **ProjectId** | **string** | The Project's ID this customization is associated with | -**Themes** | [**[]ProjectBrandingTheme**](ProjectBrandingTheme.md) | The Project Branding Themes | +**Themes** | [**[]ProjectBrandingTheme**](ProjectBrandingTheme.md) | | **UpdatedAt** | **time.Time** | Last Time Branding was Updated | [readonly] ## Methods diff --git a/clients/client/go/docs/ProjectMetadata.md b/clients/client/go/docs/ProjectMetadata.md index cea53a2d407..7c2b1081b20 100644 --- a/clients/client/go/docs/ProjectMetadata.md +++ b/clients/client/go/docs/ProjectMetadata.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **Slug** | Pointer to **string** | The project's slug | [optional] [readonly] **State** | **string** | The state of the project. running Running halted Halted deleted Deleted | **SubscriptionId** | Pointer to **NullableString** | | [optional] +**SubscriptionPlan** | Pointer to **NullableString** | | [optional] **UpdatedAt** | **time.Time** | Last Time Project was Updated | ## Methods @@ -192,6 +193,41 @@ HasSubscriptionId returns a boolean if a field has been set. `func (o *ProjectMetadata) UnsetSubscriptionId()` UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil +### GetSubscriptionPlan + +`func (o *ProjectMetadata) GetSubscriptionPlan() string` + +GetSubscriptionPlan returns the SubscriptionPlan field if non-nil, zero value otherwise. + +### GetSubscriptionPlanOk + +`func (o *ProjectMetadata) GetSubscriptionPlanOk() (*string, bool)` + +GetSubscriptionPlanOk returns a tuple with the SubscriptionPlan field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSubscriptionPlan + +`func (o *ProjectMetadata) SetSubscriptionPlan(v string)` + +SetSubscriptionPlan sets SubscriptionPlan field to given value. + +### HasSubscriptionPlan + +`func (o *ProjectMetadata) HasSubscriptionPlan() bool` + +HasSubscriptionPlan returns a boolean if a field has been set. + +### SetSubscriptionPlanNil + +`func (o *ProjectMetadata) SetSubscriptionPlanNil(b bool)` + + SetSubscriptionPlanNil sets the value for SubscriptionPlan to be an explicit nil + +### UnsetSubscriptionPlan +`func (o *ProjectMetadata) UnsetSubscriptionPlan()` + +UnsetSubscriptionPlan ensures that no value is present for SubscriptionPlan, not even an explicit nil ### GetUpdatedAt `func (o *ProjectMetadata) GetUpdatedAt() time.Time` diff --git a/clients/client/go/docs/RegistrationFlow.md b/clients/client/go/docs/RegistrationFlow.md index 1bc65a91c46..b82f205ff0a 100644 --- a/clients/client/go/docs/RegistrationFlow.md +++ b/clients/client/go/docs/RegistrationFlow.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **ExpiresAt** | **time.Time** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **Id** | **string** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id> | **IssuedAt** | **time.Time** | IssuedAt is the time (UTC) when the flow occurred. | -**Oauth2LoginChallenge** | Pointer to **NullableString** | | [optional] +**Oauth2LoginChallenge** | Pointer to **string** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **Oauth2LoginRequest** | Pointer to [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **RequestUrl** | **string** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | **ReturnTo** | Pointer to **string** | ReturnTo contains the requested return_to URL. | [optional] @@ -146,16 +146,6 @@ SetOauth2LoginChallenge sets Oauth2LoginChallenge field to given value. HasOauth2LoginChallenge returns a boolean if a field has been set. -### SetOauth2LoginChallengeNil - -`func (o *RegistrationFlow) SetOauth2LoginChallengeNil(b bool)` - - SetOauth2LoginChallengeNil sets the value for Oauth2LoginChallenge to be an explicit nil - -### UnsetOauth2LoginChallenge -`func (o *RegistrationFlow) UnsetOauth2LoginChallenge()` - -UnsetOauth2LoginChallenge ensures that no value is present for Oauth2LoginChallenge, not even an explicit nil ### GetOauth2LoginRequest `func (o *RegistrationFlow) GetOauth2LoginRequest() OAuth2LoginRequest` 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 009ac549151..0572a3b877f 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.39 +API version: v1.1.39-alpha.0 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 355a77b8bc8..e921c086031 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.39 +API version: v1.1.39-alpha.0 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 69e551471d6..f8f991afcda 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.39 +API version: v1.1.39-alpha.0 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 fa5d3e51d06..50f53718e28 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.39 +API version: v1.1.39-alpha.0 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 7ba0c9db5f6..2f40f2cc469 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.39 +API version: v1.1.39-alpha.0 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 6db65c1a0b0..06bbf4c546b 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.39 +API version: v1.1.39-alpha.0 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 e5a91265039..72d976e08f2 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.39 +API version: v1.1.39-alpha.0 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 27dd4e44882..de7ab855e8e 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_cloud_account.go b/clients/client/go/model_cloud_account.go index 811b0535c32..71acee28813 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_continue_with.go b/clients/client/go/model_continue_with.go index 060e2ea7c03..b7ebe1d7f30 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.39 +API version: v1.1.39-alpha.0 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 1760296affa..793cc19a805 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.39 +API version: v1.1.39-alpha.0 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 60c7ec642de..4ec1c5d1b18 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.39 +API version: v1.1.39-alpha.0 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 129b1728146..d7d8d5aa7bc 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.39 +API version: v1.1.39-alpha.0 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 b2b137be81d..7b7ac555308 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.39 +API version: v1.1.39-alpha.0 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 bafa6e2642b..9d34b8dfc64 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.39 +API version: v1.1.39-alpha.0 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 02a8a5764b2..291a5facb12 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.39 +API version: v1.1.39-alpha.0 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 56ad32c4913..3762c37f9bf 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.39 +API version: v1.1.39-alpha.0 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 270ec1774e2..8fb9c6786f5 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.39 +API version: v1.1.39-alpha.0 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 40a272d6a58..ef4f8ed836b 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.39 +API version: v1.1.39-alpha.0 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 c783bba4096..1a740d0a03b 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.39 +API version: v1.1.39-alpha.0 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 0c9aa0e8c6b..caec41bcd34 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_project_invite.go b/clients/client/go/model_create_project_invite.go index e05b300c0bf..3c3c7a241a0 100644 --- a/clients/client/go/model_create_project_invite.go +++ b/clients/client/go/model_create_project_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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_create_project_invites_response.go b/clients/client/go/model_create_project_invites_response.go index a7e3d3ad2d7..fbd373d5761 100644 --- a/clients/client/go/model_create_project_invites_response.go +++ b/clients/client/go/model_create_project_invites_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.39 +API version: v1.1.39-alpha.0 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 901a27bb5d1..220e9b19f7f 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.39 +API version: v1.1.39-alpha.0 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 0fb85ec7561..c49704ae978 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.39 +API version: v1.1.39-alpha.0 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 878588b0e3d..de8a53dea2a 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.39 +API version: v1.1.39-alpha.0 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 5f8a5dee26c..413457fc22a 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_custom_domain.go b/clients/client/go/model_custom_domain.go index 080d9649483..a6dea3b875f 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.39 +API version: v1.1.39-alpha.0 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 7deca67201e..c3c4027b129 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.39 +API version: v1.1.39-alpha.0 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 f34fb9b2071..906b0143cb3 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.39 +API version: v1.1.39-alpha.0 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 a26fc33e30d..5b85fed1e11 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.39 +API version: v1.1.39-alpha.0 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 0f4222c620f..2c21af07f30 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_error_generic.go b/clients/client/go/model_error_generic.go index 7298f479df0..c1a9134e1b7 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.39 +API version: v1.1.39-alpha.0 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 4437434181b..d7f28a15aa8 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.39 +API version: v1.1.39-alpha.0 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 de16f7cee23..06310fe2e0c 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_flow_error.go b/clients/client/go/model_flow_error.go index 504614b75a2..05466ed9705 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_generic_error.go b/clients/client/go/model_generic_error.go index 0b236c5a55c..4480faa59a3 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.39 +API version: v1.1.39-alpha.0 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 933975fa943..3e2860dd9d7 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_generic_usage.go b/clients/client/go/model_generic_usage.go index 9f91a772d99..0c2703417fe 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.39 +API version: v1.1.39-alpha.0 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 46360de0d2c..ecaf5c36f4a 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.39 +API version: v1.1.39-alpha.0 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 41e6cf90968..45972970c48 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.39 +API version: v1.1.39-alpha.0 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 9244092887c..982a5b8e758 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.39 +API version: v1.1.39-alpha.0 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 735b77c0bb7..62aaed93e21 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_health_status.go b/clients/client/go/model_health_status.go index 6abf2b7a41d..0fc891bca3b 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity.go b/clients/client/go/model_identity.go index bad46d595ca..5c944500c7b 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_credentials.go b/clients/client/go/model_identity_credentials.go index f94dd0b5b46..1e0d96900a3 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.39 +API version: v1.1.39-alpha.0 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 5638c2c4180..bbb3daf4234 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.39 +API version: v1.1.39-alpha.0 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 ed2cfa89f13..f2bd31dd90d 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.39 +API version: v1.1.39-alpha.0 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 fa2d2878c04..9ff2a89bc02 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.39 +API version: v1.1.39-alpha.0 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 d2977282470..dfc78ba2ade 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_patch.go b/clients/client/go/model_identity_patch.go index 855c6bea586..357ac960f82 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.39 +API version: v1.1.39-alpha.0 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 ee0d88512a5..0c4ea8e6444 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.39 +API version: v1.1.39-alpha.0 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 95f91e10d6d..144716fa132 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.39 +API version: v1.1.39-alpha.0 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 96229fef410..58a889d5651 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_identity_state.go b/clients/client/go/model_identity_state.go index 112b6423520..65b34c7a187 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.39 +API version: v1.1.39-alpha.0 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 c7a2e439778..2a9c73b0866 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.39 +API version: v1.1.39-alpha.0 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 49557b59a29..b09a3f9680a 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.39 +API version: v1.1.39-alpha.0 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 8f1e6405bfa..8fd40459993 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.39 +API version: v1.1.39-alpha.0 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 85294aad614..50529db179d 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.39 +API version: v1.1.39-alpha.0 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 4c7cb0738bb..bd420b91166 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.39 +API version: v1.1.39-alpha.0 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 519bf88be05..dc5b3b24e21 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.39 +API version: v1.1.39-alpha.0 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 77de856408f..2e3b3fb9e68 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.39 +API version: v1.1.39-alpha.0 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 bd833e394ad..60a47ed2e85 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.39 +API version: v1.1.39-alpha.0 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 cf2b4f31886..38564785681 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.39 +API version: v1.1.39-alpha.0 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 633d7d6e880..ab6a2e51399 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.39 +API version: v1.1.39-alpha.0 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 8ed41bfc39f..81c318b0aab 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.39 +API version: v1.1.39-alpha.0 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 4deb25725c0..5b21b40551f 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.39 +API version: v1.1.39-alpha.0 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 bce9d1e70df..d512a2025c4 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.39 +API version: v1.1.39-alpha.0 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 e81b6e6f2c5..6d3efb9e380 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_json_patch.go b/clients/client/go/model_json_patch.go index 5b7890836a4..45e63c350ad 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.39 +API version: v1.1.39-alpha.0 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 eb7dc554558..ec6f268b7a2 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.39 +API version: v1.1.39-alpha.0 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 b0cd945bc08..5b9958d933c 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_keto_namespace.go b/clients/client/go/model_keto_namespace.go index 9bf2de2a3f2..dab68547f47 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_login_flow.go b/clients/client/go/model_login_flow.go index df2664d6b78..8eb56823079 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -27,7 +27,8 @@ type LoginFlow struct { Id string `json:"id"` // IssuedAt is the time (UTC) when the flow started. IssuedAt time.Time `json:"issued_at"` - Oauth2LoginChallenge NullableString `json:"oauth2_login_challenge,omitempty"` + // Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. + Oauth2LoginChallenge *string `json:"oauth2_login_challenge,omitempty"` Oauth2LoginRequest *OAuth2LoginRequest `json:"oauth2_login_request,omitempty"` // Refresh stores whether this login flow should enforce re-authentication. Refresh *bool `json:"refresh,omitempty"` @@ -207,46 +208,36 @@ func (o *LoginFlow) SetIssuedAt(v time.Time) { o.IssuedAt = v } -// GetOauth2LoginChallenge returns the Oauth2LoginChallenge field value if set, zero value otherwise (both if not set or set to explicit null). +// GetOauth2LoginChallenge returns the Oauth2LoginChallenge field value if set, zero value otherwise. func (o *LoginFlow) GetOauth2LoginChallenge() string { - if o == nil || o.Oauth2LoginChallenge.Get() == nil { + if o == nil || o.Oauth2LoginChallenge == nil { var ret string return ret } - return *o.Oauth2LoginChallenge.Get() + return *o.Oauth2LoginChallenge } // GetOauth2LoginChallengeOk returns a tuple with the Oauth2LoginChallenge field value if set, nil otherwise // and a boolean to check if the value has been set. -// NOTE: If the value is an explicit nil, `nil, true` will be returned func (o *LoginFlow) GetOauth2LoginChallengeOk() (*string, bool) { - if o == nil { + if o == nil || o.Oauth2LoginChallenge == nil { return nil, false } - return o.Oauth2LoginChallenge.Get(), o.Oauth2LoginChallenge.IsSet() + return o.Oauth2LoginChallenge, true } // HasOauth2LoginChallenge returns a boolean if a field has been set. func (o *LoginFlow) HasOauth2LoginChallenge() bool { - if o != nil && o.Oauth2LoginChallenge.IsSet() { + if o != nil && o.Oauth2LoginChallenge != nil { return true } return false } -// SetOauth2LoginChallenge gets a reference to the given NullableString and assigns it to the Oauth2LoginChallenge field. +// SetOauth2LoginChallenge gets a reference to the given string and assigns it to the Oauth2LoginChallenge field. func (o *LoginFlow) SetOauth2LoginChallenge(v string) { - o.Oauth2LoginChallenge.Set(&v) -} -// SetOauth2LoginChallengeNil sets the value for Oauth2LoginChallenge to be an explicit nil -func (o *LoginFlow) SetOauth2LoginChallengeNil() { - o.Oauth2LoginChallenge.Set(nil) -} - -// UnsetOauth2LoginChallenge ensures that no value is present for Oauth2LoginChallenge, not even an explicit nil -func (o *LoginFlow) UnsetOauth2LoginChallenge() { - o.Oauth2LoginChallenge.Unset() + o.Oauth2LoginChallenge = &v } // GetOauth2LoginRequest returns the Oauth2LoginRequest field value if set, zero value otherwise. @@ -530,8 +521,8 @@ func (o LoginFlow) MarshalJSON() ([]byte, error) { if true { toSerialize["issued_at"] = o.IssuedAt } - if o.Oauth2LoginChallenge.IsSet() { - toSerialize["oauth2_login_challenge"] = o.Oauth2LoginChallenge.Get() + if o.Oauth2LoginChallenge != nil { + toSerialize["oauth2_login_challenge"] = o.Oauth2LoginChallenge } if o.Oauth2LoginRequest != nil { toSerialize["oauth2_login_request"] = o.Oauth2LoginRequest diff --git a/clients/client/go/model_logout_flow.go b/clients/client/go/model_logout_flow.go index f2f7ef4948a..50a303cc54e 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.39 +API version: v1.1.39-alpha.0 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 ac0b3f56540..b7520306cc9 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.39 +API version: v1.1.39-alpha.0 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 6d90138fbf8..7f15d19bc1c 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_message.go b/clients/client/go/model_message.go index f56bebc078b..7fd61a378ae 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_message_dispatch.go b/clients/client/go/model_message_dispatch.go index dd58bdc52e5..0685ec2cd6d 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_metrics_datapoint.go b/clients/client/go/model_metrics_datapoint.go index e3f63db335e..a539dc298aa 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_namespace.go b/clients/client/go/model_namespace.go index 7dc88172e26..b46cccecd74 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.39 +API version: v1.1.39-alpha.0 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 38840c69573..bf09cfe1151 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_normalized_project.go b/clients/client/go/model_normalized_project.go index b0edd7d321b..7b43923318f 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -29,6 +29,7 @@ type NormalizedProject struct { // The state of the project. running Running halted Halted deleted Deleted State string `json:"state"` SubscriptionId NullableString `json:"subscription_id,omitempty"` + SubscriptionPlan NullableString `json:"subscription_plan,omitempty"` // Last Time Project was Updated UpdatedAt time.Time `json:"updated_at"` AdditionalProperties map[string]interface{} @@ -246,6 +247,48 @@ func (o *NormalizedProject) UnsetSubscriptionId() { o.SubscriptionId.Unset() } +// GetSubscriptionPlan returns the SubscriptionPlan field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *NormalizedProject) GetSubscriptionPlan() string { + if o == nil || o.SubscriptionPlan.Get() == nil { + var ret string + return ret + } + return *o.SubscriptionPlan.Get() +} + +// GetSubscriptionPlanOk returns a tuple with the SubscriptionPlan field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *NormalizedProject) GetSubscriptionPlanOk() (*string, bool) { + if o == nil { + return nil, false + } + return o.SubscriptionPlan.Get(), o.SubscriptionPlan.IsSet() +} + +// HasSubscriptionPlan returns a boolean if a field has been set. +func (o *NormalizedProject) HasSubscriptionPlan() bool { + if o != nil && o.SubscriptionPlan.IsSet() { + return true + } + + return false +} + +// SetSubscriptionPlan gets a reference to the given NullableString and assigns it to the SubscriptionPlan field. +func (o *NormalizedProject) SetSubscriptionPlan(v string) { + o.SubscriptionPlan.Set(&v) +} +// SetSubscriptionPlanNil sets the value for SubscriptionPlan to be an explicit nil +func (o *NormalizedProject) SetSubscriptionPlanNil() { + o.SubscriptionPlan.Set(nil) +} + +// UnsetSubscriptionPlan ensures that no value is present for SubscriptionPlan, not even an explicit nil +func (o *NormalizedProject) UnsetSubscriptionPlan() { + o.SubscriptionPlan.Unset() +} + // GetUpdatedAt returns the UpdatedAt field value func (o *NormalizedProject) GetUpdatedAt() time.Time { if o == nil { @@ -293,6 +336,9 @@ func (o NormalizedProject) MarshalJSON() ([]byte, error) { if o.SubscriptionId.IsSet() { toSerialize["subscription_id"] = o.SubscriptionId.Get() } + if o.SubscriptionPlan.IsSet() { + toSerialize["subscription_plan"] = o.SubscriptionPlan.Get() + } if true { toSerialize["updated_at"] = o.UpdatedAt } @@ -321,6 +367,7 @@ func (o *NormalizedProject) UnmarshalJSON(bytes []byte) (err error) { delete(additionalProperties, "slug") delete(additionalProperties, "state") delete(additionalProperties, "subscription_id") + delete(additionalProperties, "subscription_plan") delete(additionalProperties, "updated_at") o.AdditionalProperties = additionalProperties } diff --git a/clients/client/go/model_normalized_project_revision.go b/clients/client/go/model_normalized_project_revision.go index 4995724c8d2..ae66fcadd70 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_normalized_project_revision_hook.go b/clients/client/go/model_normalized_project_revision_hook.go index 0911c41d5af..6699500cd9d 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.39 +API version: v1.1.39-alpha.0 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 4e8e959aa8b..b8fa2f982cf 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.39 +API version: v1.1.39-alpha.0 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 9c735b83870..695c8e76ac4 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.39 +API version: v1.1.39-alpha.0 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 4071fb080b5..78f7d343d56 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.39 +API version: v1.1.39-alpha.0 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 9421bb98f04..29d9898f4dd 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.39 +API version: v1.1.39-alpha.0 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 1eddde6d51e..7bf4161cc9b 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.39 +API version: v1.1.39-alpha.0 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 6ee1c169704..7f3c551344c 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.39 +API version: v1.1.39-alpha.0 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 5ecc312f294..71cb1193d41 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.39 +API version: v1.1.39-alpha.0 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 96feb2afc16..69093abbe16 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.39 +API version: v1.1.39-alpha.0 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 e8320d8190b..bf7f14eb931 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.39 +API version: v1.1.39-alpha.0 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 d03b9ba88f3..d5b25b3a91e 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.39 +API version: v1.1.39-alpha.0 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 9b208504119..1c46f407d26 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.39 +API version: v1.1.39-alpha.0 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 8ea3b2fdc6b..1689f16e730 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_oidc_configuration.go b/clients/client/go/model_oidc_configuration.go index c79ed995774..cbd41c89a88 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.39 +API version: v1.1.39-alpha.0 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 99695829be9..62f1f635608 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_pagination.go b/clients/client/go/model_pagination.go index 5a75dc02043..791c31db099 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_pagination_headers.go b/clients/client/go/model_pagination_headers.go index cf86f4b9922..d85b57a66a9 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_parse_error.go b/clients/client/go/model_parse_error.go index a2a62d47c1f..278171c2f27 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.39 +API version: v1.1.39-alpha.0 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 5587afaa50a..b3d599e61fb 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.39 +API version: v1.1.39-alpha.0 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 2de02dfefe3..871fcd2c96f 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_plan.go b/clients/client/go/model_plan.go index 3474dcabe40..46dd31ad865 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_plan_details.go b/clients/client/go/model_plan_details.go index 7d2f3df1014..27b49487617 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.39 +API version: v1.1.39-alpha.0 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 35567179d32..093a83e71e1 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.39 +API version: v1.1.39-alpha.0 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 41a21efc85a..4895095e78a 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project.go b/clients/client/go/model_project.go index 8dc01c34136..4de3bec9a50 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.39 +API version: v1.1.39-alpha.0 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 fc824e7258b..bd9fd93fdc9 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_branding.go b/clients/client/go/model_project_branding.go index ca427f08496..1cbeb8ff3e3 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -16,7 +16,7 @@ import ( "time" ) -// ProjectBranding The Project Branding +// ProjectBranding struct for ProjectBranding type ProjectBranding struct { // The Customization Creation Date CreatedAt time.Time `json:"created_at"` @@ -25,7 +25,6 @@ type ProjectBranding struct { Id string `json:"id"` // The Project's ID this customization is associated with ProjectId string `json:"project_id"` - // The Project Branding Themes Themes []ProjectBrandingTheme `json:"themes"` // Last Time Branding was Updated UpdatedAt time.Time `json:"updated_at"` diff --git a/clients/client/go/model_project_branding_colors.go b/clients/client/go/model_project_branding_colors.go index 29dca21d607..1dc38853901 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -15,7 +15,7 @@ import ( "encoding/json" ) -// ProjectBrandingColors The Project Branding Colors +// ProjectBrandingColors struct for ProjectBrandingColors type ProjectBrandingColors struct { // AccentDefaultColor is a hex color code used by the Ory Account Experience theme. AccentDefaultColor *string `json:"accent_default_color,omitempty"` diff --git a/clients/client/go/model_project_branding_theme.go b/clients/client/go/model_project_branding_theme.go index 3ebf79b78bf..289aee9bf43 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -16,7 +16,7 @@ import ( "time" ) -// ProjectBrandingTheme The Project Branding Theme +// ProjectBrandingTheme struct for ProjectBrandingTheme type ProjectBrandingTheme struct { // AccentDefaultColor is a hex color code used by the Ory Account Experience theme. AccentDefaultColor *string `json:"accent_default_color,omitempty"` diff --git a/clients/client/go/model_project_host.go b/clients/client/go/model_project_host.go index 270a334e8b5..f0f3534a55f 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_invite.go b/clients/client/go/model_project_invite.go index 56c8a436663..3c91a70d199 100644 --- a/clients/client/go/model_project_invite.go +++ b/clients/client/go/model_project_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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_metadata.go b/clients/client/go/model_project_metadata.go index 81e9b49a885..4e957307496 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -30,6 +30,7 @@ type ProjectMetadata struct { // The state of the project. running Running halted Halted deleted Deleted State string `json:"state"` SubscriptionId NullableString `json:"subscription_id,omitempty"` + SubscriptionPlan NullableString `json:"subscription_plan,omitempty"` // Last Time Project was Updated UpdatedAt time.Time `json:"updated_at"` AdditionalProperties map[string]interface{} @@ -254,6 +255,48 @@ func (o *ProjectMetadata) UnsetSubscriptionId() { o.SubscriptionId.Unset() } +// GetSubscriptionPlan returns the SubscriptionPlan field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *ProjectMetadata) GetSubscriptionPlan() string { + if o == nil || o.SubscriptionPlan.Get() == nil { + var ret string + return ret + } + return *o.SubscriptionPlan.Get() +} + +// GetSubscriptionPlanOk returns a tuple with the SubscriptionPlan field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *ProjectMetadata) GetSubscriptionPlanOk() (*string, bool) { + if o == nil { + return nil, false + } + return o.SubscriptionPlan.Get(), o.SubscriptionPlan.IsSet() +} + +// HasSubscriptionPlan returns a boolean if a field has been set. +func (o *ProjectMetadata) HasSubscriptionPlan() bool { + if o != nil && o.SubscriptionPlan.IsSet() { + return true + } + + return false +} + +// SetSubscriptionPlan gets a reference to the given NullableString and assigns it to the SubscriptionPlan field. +func (o *ProjectMetadata) SetSubscriptionPlan(v string) { + o.SubscriptionPlan.Set(&v) +} +// SetSubscriptionPlanNil sets the value for SubscriptionPlan to be an explicit nil +func (o *ProjectMetadata) SetSubscriptionPlanNil() { + o.SubscriptionPlan.Set(nil) +} + +// UnsetSubscriptionPlan ensures that no value is present for SubscriptionPlan, not even an explicit nil +func (o *ProjectMetadata) UnsetSubscriptionPlan() { + o.SubscriptionPlan.Unset() +} + // GetUpdatedAt returns the UpdatedAt field value func (o *ProjectMetadata) GetUpdatedAt() time.Time { if o == nil { @@ -301,6 +344,9 @@ func (o ProjectMetadata) MarshalJSON() ([]byte, error) { if o.SubscriptionId.IsSet() { toSerialize["subscription_id"] = o.SubscriptionId.Get() } + if o.SubscriptionPlan.IsSet() { + toSerialize["subscription_plan"] = o.SubscriptionPlan.Get() + } if true { toSerialize["updated_at"] = o.UpdatedAt } @@ -329,6 +375,7 @@ func (o *ProjectMetadata) UnmarshalJSON(bytes []byte) (err error) { delete(additionalProperties, "slug") delete(additionalProperties, "state") delete(additionalProperties, "subscription_id") + delete(additionalProperties, "subscription_plan") delete(additionalProperties, "updated_at") o.AdditionalProperties = additionalProperties } diff --git a/clients/client/go/model_project_service_identity.go b/clients/client/go/model_project_service_identity.go index 7feaa0e55ca..913ca73dc5d 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.39 +API version: v1.1.39-alpha.0 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 88630e66ae0..2c6df7dd998 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.39 +API version: v1.1.39-alpha.0 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 77552143d56..48c893652a6 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_project_services.go b/clients/client/go/model_project_services.go index fa7c08bbd53..ac6445c2184 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_quota_usage.go b/clients/client/go/model_quota_usage.go index da66049625a..460ea5eefc5 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.39 +API version: v1.1.39-alpha.0 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 95e50efdd35..f8bd77b3b27 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_recovery_flow.go b/clients/client/go/model_recovery_flow.go index febca773db1..eadc8e99f12 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.39 +API version: v1.1.39-alpha.0 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 f786a72d772..10c3334f96c 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.39 +API version: v1.1.39-alpha.0 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 35e92b0eead..940e0d4ce98 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.39 +API version: v1.1.39-alpha.0 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 8a1325f3ea2..975077a35e0 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_registration_flow.go b/clients/client/go/model_registration_flow.go index 1ddb9cb3893..441deaefce5 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -25,7 +25,8 @@ type RegistrationFlow struct { Id string `json:"id"` // IssuedAt is the time (UTC) when the flow occurred. IssuedAt time.Time `json:"issued_at"` - Oauth2LoginChallenge NullableString `json:"oauth2_login_challenge,omitempty"` + // Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. + Oauth2LoginChallenge *string `json:"oauth2_login_challenge,omitempty"` Oauth2LoginRequest *OAuth2LoginRequest `json:"oauth2_login_request,omitempty"` // RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. RequestUrl string `json:"request_url"` @@ -170,46 +171,36 @@ func (o *RegistrationFlow) SetIssuedAt(v time.Time) { o.IssuedAt = v } -// GetOauth2LoginChallenge returns the Oauth2LoginChallenge field value if set, zero value otherwise (both if not set or set to explicit null). +// GetOauth2LoginChallenge returns the Oauth2LoginChallenge field value if set, zero value otherwise. func (o *RegistrationFlow) GetOauth2LoginChallenge() string { - if o == nil || o.Oauth2LoginChallenge.Get() == nil { + if o == nil || o.Oauth2LoginChallenge == nil { var ret string return ret } - return *o.Oauth2LoginChallenge.Get() + return *o.Oauth2LoginChallenge } // GetOauth2LoginChallengeOk returns a tuple with the Oauth2LoginChallenge field value if set, nil otherwise // and a boolean to check if the value has been set. -// NOTE: If the value is an explicit nil, `nil, true` will be returned func (o *RegistrationFlow) GetOauth2LoginChallengeOk() (*string, bool) { - if o == nil { + if o == nil || o.Oauth2LoginChallenge == nil { return nil, false } - return o.Oauth2LoginChallenge.Get(), o.Oauth2LoginChallenge.IsSet() + return o.Oauth2LoginChallenge, true } // HasOauth2LoginChallenge returns a boolean if a field has been set. func (o *RegistrationFlow) HasOauth2LoginChallenge() bool { - if o != nil && o.Oauth2LoginChallenge.IsSet() { + if o != nil && o.Oauth2LoginChallenge != nil { return true } return false } -// SetOauth2LoginChallenge gets a reference to the given NullableString and assigns it to the Oauth2LoginChallenge field. +// SetOauth2LoginChallenge gets a reference to the given string and assigns it to the Oauth2LoginChallenge field. func (o *RegistrationFlow) SetOauth2LoginChallenge(v string) { - o.Oauth2LoginChallenge.Set(&v) -} -// SetOauth2LoginChallengeNil sets the value for Oauth2LoginChallenge to be an explicit nil -func (o *RegistrationFlow) SetOauth2LoginChallengeNil() { - o.Oauth2LoginChallenge.Set(nil) -} - -// UnsetOauth2LoginChallenge ensures that no value is present for Oauth2LoginChallenge, not even an explicit nil -func (o *RegistrationFlow) UnsetOauth2LoginChallenge() { - o.Oauth2LoginChallenge.Unset() + o.Oauth2LoginChallenge = &v } // GetOauth2LoginRequest returns the Oauth2LoginRequest field value if set, zero value otherwise. @@ -426,8 +417,8 @@ func (o RegistrationFlow) MarshalJSON() ([]byte, error) { if true { toSerialize["issued_at"] = o.IssuedAt } - if o.Oauth2LoginChallenge.IsSet() { - toSerialize["oauth2_login_challenge"] = o.Oauth2LoginChallenge.Get() + if o.Oauth2LoginChallenge != nil { + toSerialize["oauth2_login_challenge"] = o.Oauth2LoginChallenge } if o.Oauth2LoginRequest != nil { toSerialize["oauth2_login_request"] = o.Oauth2LoginRequest diff --git a/clients/client/go/model_reject_o_auth2_request.go b/clients/client/go/model_reject_o_auth2_request.go index 5fc94450ee8..bbd76ee64e2 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relation_query.go b/clients/client/go/model_relation_query.go index e2d782c146e..0955d99a2b1 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationship.go b/clients/client/go/model_relationship.go index c7bda31d7b0..ca000ff7a04 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationship_namespaces.go b/clients/client/go/model_relationship_namespaces.go index b841c93fcae..fa3f0c2d041 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationship_patch.go b/clients/client/go/model_relationship_patch.go index 3dea4a12df6..eaa90818077 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_relationships.go b/clients/client/go/model_relationships.go index a115ef65a6d..2760a03432e 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_schema_patch.go b/clients/client/go/model_schema_patch.go index 3ea78f3d708..a68575a8861 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.39 +API version: v1.1.39-alpha.0 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 7878121c80f..00eaff4b8b0 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_session.go b/clients/client/go/model_session.go index f38f6fa7a5b..1a7aa96a593 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.39 +API version: v1.1.39-alpha.0 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 923f22d18ad..845ad001c81 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_session_device.go b/clients/client/go/model_session_device.go index 1658849bf77..4282bc7b0b5 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.39 +API version: v1.1.39-alpha.0 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 c11ec75d536..1991879da43 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.39 +API version: v1.1.39-alpha.0 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 ea0cdef5727..2c6814e5e76 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_set_project.go b/clients/client/go/model_set_project.go index d02263a9592..69d462654da 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.39 +API version: v1.1.39-alpha.0 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 ae33047b354..ff5ed83df8e 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ @@ -15,7 +15,7 @@ import ( "encoding/json" ) -// SetProjectBrandingThemeBody Set Project Branding Theme Request Parameters +// SetProjectBrandingThemeBody struct for SetProjectBrandingThemeBody type SetProjectBrandingThemeBody struct { // Logo type LogoType *string `json:"logo_type,omitempty"` diff --git a/clients/client/go/model_settings_flow.go b/clients/client/go/model_settings_flow.go index d2dc63830af..7773438c419 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.39 +API version: v1.1.39-alpha.0 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 5216eb382b6..442ce1c0960 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_source_position.go b/clients/client/go/model_source_position.go index 71b24cd86c3..e0ddfbb3b01 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_stripe_customer.go b/clients/client/go/model_stripe_customer.go index 8ae3d08831a..59d7066e708 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_subject_set.go b/clients/client/go/model_subject_set.go index 6097d45b3e7..641e7e5384f 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_subscription.go b/clients/client/go/model_subscription.go index 42d90c6d945..fadc9252519 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.39 +API version: v1.1.39-alpha.0 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 f4466f9be7f..11a15dc714d 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.39 +API version: v1.1.39-alpha.0 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 13f2cf5353c..318ddb2ade7 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.39 +API version: v1.1.39-alpha.0 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 31cc88f3248..e91a06b451a 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.39 +API version: v1.1.39-alpha.0 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 6d4755df5ad..f8dea4aa159 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_token_pagination.go b/clients/client/go/model_token_pagination.go index 04b76cf820b..2459e1c37ac 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.39 +API version: v1.1.39-alpha.0 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 056bbd3dbdb..8086c5221d4 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.39 +API version: v1.1.39-alpha.0 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 b622e21f25d..fa055889937 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.39 +API version: v1.1.39-alpha.0 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 e244aa3fde0..6f173f3e155 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.39 +API version: v1.1.39-alpha.0 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 9b42f3abefd..b7c9a7c8126 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.39 +API version: v1.1.39-alpha.0 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 417cac6fd9d..ba93d6de77f 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.39 +API version: v1.1.39-alpha.0 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 f550dd29536..7f0632e4c7f 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_container.go b/clients/client/go/model_ui_container.go index c2d278a2106..5fb5333c1fb 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_node.go b/clients/client/go/model_ui_node.go index 0473300b561..3040fd05224 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.39 +API version: v1.1.39-alpha.0 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 fc1c4b2c8b6..6e590fc073a 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.39 +API version: v1.1.39-alpha.0 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 43ecb9fd59c..eb77cab89fb 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.39 +API version: v1.1.39-alpha.0 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 82181172f53..9f24ad5a617 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.39 +API version: v1.1.39-alpha.0 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 e0c1651d0d6..192a5a5ef1d 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.39 +API version: v1.1.39-alpha.0 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 b50c869d566..2032885c95b 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.39 +API version: v1.1.39-alpha.0 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 c08f183487c..dcd042f4736 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.39 +API version: v1.1.39-alpha.0 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 09fed0f7cec..02d770a2b5a 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_ui_text.go b/clients/client/go/model_ui_text.go index 57a825e92f4..a360a171c0c 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.39 +API version: v1.1.39-alpha.0 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 633abaa24cf..bb60072a91d 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.39 +API version: v1.1.39-alpha.0 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 16e2fcabda9..bdda6d5b83d 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.39 +API version: v1.1.39-alpha.0 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 3c040bc8117..b6ad9d82e47 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.39 +API version: v1.1.39-alpha.0 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 40d45b2cf9c..2e3a2640b5c 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.39 +API version: v1.1.39-alpha.0 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 38ea30d51b0..f553d32ab97 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.39 +API version: v1.1.39-alpha.0 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 7d05ad5b825..5f6177baaa7 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.39 +API version: v1.1.39-alpha.0 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 d94fe56c008..1f06209771b 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.39 +API version: v1.1.39-alpha.0 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 477ebfce4dd..668994400fb 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.39 +API version: v1.1.39-alpha.0 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 29a0da4ee07..0eb6912353a 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.39 +API version: v1.1.39-alpha.0 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 29a6ff79517..575092a4334 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.39 +API version: v1.1.39-alpha.0 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 cf729b17950..6a8e2e7283e 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.39 +API version: v1.1.39-alpha.0 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 effbc982461..0c1d89a0b2d 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.39 +API version: v1.1.39-alpha.0 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 c30777b7e6c..28f4706e4b7 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.39 +API version: v1.1.39-alpha.0 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 13fa8e859a4..320b23758fd 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.39 +API version: v1.1.39-alpha.0 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 0fe6d22259c..9fd1ca00f41 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.39 +API version: v1.1.39-alpha.0 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 7550da7df70..f5980dda64e 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.39 +API version: v1.1.39-alpha.0 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 2aa74e29b03..0a0931bad21 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.39 +API version: v1.1.39-alpha.0 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 c73e240250a..e3755570094 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.39 +API version: v1.1.39-alpha.0 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 8e175023b62..fd6848245b0 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.39 +API version: v1.1.39-alpha.0 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 35b70c6d35f..4364c157a4e 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.39 +API version: v1.1.39-alpha.0 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 641ba7fb44b..aa57be7fd66 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.39 +API version: v1.1.39-alpha.0 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 fe96d54c894..82e77f78e18 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.39 +API version: v1.1.39-alpha.0 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 6e1b8720b5a..a1a82d3218c 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.39 +API version: v1.1.39-alpha.0 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 7bad3ba4e54..389436c90e1 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.39 +API version: v1.1.39-alpha.0 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 aeb7a43f255..84bfd528085 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_usage.go b/clients/client/go/model_usage.go index b399e7242b1..2f6f9f12eb1 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.39 +API version: v1.1.39-alpha.0 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 cd61cc03d95..04ec5da5dab 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_verification_flow.go b/clients/client/go/model_verification_flow.go index 8cdf9d4d1f2..1e9cd505927 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.39 +API version: v1.1.39-alpha.0 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 c73caa8d78d..82fed35515a 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_version.go b/clients/client/go/model_version.go index ac9205c19f4..7388f3f505a 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/model_warning.go b/clients/client/go/model_warning.go index 146a8ff33f4..a1ea9cafcd7 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/response.go b/clients/client/go/response.go index 9f62b4be2bd..1ef9602dabf 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/go/utils.go b/clients/client/go/utils.go index 83ebb3c08a3..f3ce92ad8ce 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.39 +API version: v1.1.39-alpha.0 Contact: support@ory.sh */ diff --git a/clients/client/java/README.md b/clients/client/java/README.md index de7177d0a69..db74b322684 100644 --- a/clients/client/java/README.md +++ b/clients/client/java/README.md @@ -1,8 +1,8 @@ # client Ory APIs -- API version: v1.1.39 - - Build date: 2023-06-21T07:28:49.836329197Z[Etc/UTC] +- API version: v1.1.39-alpha.0 + - Build date: 2023-06-28T11:04:15.642376473Z[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.39 + v1.1.39-alpha.0 compile ``` @@ -58,7 +58,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "sh.ory:client:v1.1.39" + implementation "sh.ory:client:v1.1.39-alpha.0" } ``` @@ -72,7 +72,7 @@ mvn clean package Then manually install the following JARs: -* `target/client-v1.1.39.jar` +* `target/client-v1.1.39-alpha.0.jar` * `target/lib/*.jar` ## Getting Started diff --git a/clients/client/java/api/openapi.yaml b/clients/client/java/api/openapi.yaml index 39d9086157b..7e5e23cb529 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.39 + version: v1.1.39-alpha.0 servers: - url: "https://{project}.projects.oryapis.com/" variables: @@ -958,12 +958,10 @@ paths: type: string style: simple responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/identity' - description: identity + "204": + description: |- + Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is + typically 201. "404": content: application/json: @@ -4995,6 +4993,18 @@ paths: schema: type: string style: simple + - description: |- + Return to URL + + The URL to which the browser should be redirected to after the logout + has been performed. + explode: true + in: query + name: return_to + required: false + schema: + type: string + style: form responses: "200": content: @@ -5002,6 +5012,12 @@ paths: schema: $ref: '#/components/schemas/logoutFlow' description: logoutFlow + "400": + content: + application/json: + schema: + $ref: '#/components/schemas/errorGeneric' + description: errorGeneric "401": content: application/json: @@ -7418,11 +7434,6 @@ components: theme: $ref: '#/components/schemas/projectBrandingColors' type: object - createProjectBrandingsBody: - description: Create multiple Project Brandings Request Body - items: - $ref: '#/components/schemas/createProjectBranding' - type: array createProjectInvite: description: Create Project Invite Request Body properties: @@ -8874,8 +8885,11 @@ components: format: date-time type: string oauth2_login_challenge: - format: uuid4 - nullable: true + description: |- + Ory OAuth 2.0 Login Challenge. + + This value is set using the `login_challenge` query parameter of the registration and login endpoints. + If 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' @@ -9239,6 +9253,9 @@ components: format: uuid4 nullable: true type: string + subscription_plan: + nullable: true + type: string updated_at: description: Last Time Project was Updated format: date-time @@ -12301,7 +12318,6 @@ components: $ref: '#/components/schemas/projectApiKey' type: array projectBranding: - description: The Project Branding properties: created_at: description: The Customization Creation Date @@ -12320,9 +12336,9 @@ components: format: uuid type: string themes: - description: The Project Branding Themes items: $ref: '#/components/schemas/projectBrandingTheme' + title: ProjectBrandingThemes is a list of ProjectBrandingTheme. type: array updated_at: description: Last Time Branding was Updated @@ -12336,9 +12352,9 @@ components: - project_id - themes - updated_at + title: ProjectBranding holds all settings for customizing the Ory Account Experience. type: object projectBrandingColors: - description: The Project Branding Colors properties: accent_default_color: description: AccentDefaultColor is a hex color code used by the Ory Account @@ -12456,9 +12472,10 @@ components: 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: - description: The Project Branding Theme properties: accent_default_color: description: AccentDefaultColor is a hex color code used by the Ory Account @@ -12614,11 +12631,12 @@ components: - name - project_branding_id - updated_at + title: ProjectBrandingTheme represents a Theme for the Ory Account Experience. type: object projectBrandingThemes: - description: The Project Branding Themes items: $ref: '#/components/schemas/projectBrandingTheme' + title: ProjectBrandingThemes is a list of ProjectBrandingTheme. type: array projectHost: properties: @@ -12735,6 +12753,7 @@ components: id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: running slug: slug + subscription_plan: subscription_plan properties: created_at: description: The Project's Creation Date @@ -12777,6 +12796,9 @@ components: format: uuid4 nullable: true type: string + subscription_plan: + nullable: true + type: string updated_at: description: Last Time Project was Updated format: date-time @@ -13303,8 +13325,11 @@ components: format: date-time type: string oauth2_login_challenge: - format: uuid4 - nullable: true + description: |- + Ory OAuth 2.0 Login Challenge. + + This value is set using the `login_challenge` query parameter of the registration and login endpoints. + If 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' @@ -13756,7 +13781,6 @@ components: - services type: object setProjectBrandingThemeBody: - description: Set Project Branding Theme Request Parameters properties: logo_type: description: Logo type @@ -13769,6 +13793,8 @@ components: type: string theme: $ref: '#/components/schemas/projectBrandingColors' + title: SetProjectBrandingThemeBody is the request body for the set project branding + theme endpoint. type: object settingsFlow: description: |- diff --git a/clients/client/java/build.gradle b/clients/client/java/build.gradle index ae444004a3a..6abdefa12a3 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.39' +version = 'v1.1.39-alpha.0' buildscript { repositories { diff --git a/clients/client/java/build.sbt b/clients/client/java/build.sbt index 1f4917eb0bb..5df11ed03ae 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.39", + version := "v1.1.39-alpha.0", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/clients/client/java/docs/FrontendApi.md b/clients/client/java/docs/FrontendApi.md index 698fe2370fe..bd72aee5a85 100644 --- a/clients/client/java/docs/FrontendApi.md +++ b/clients/client/java/docs/FrontendApi.md @@ -111,7 +111,7 @@ No authorization required # **createBrowserLogoutFlow** -> LogoutFlow createBrowserLogoutFlow(cookie) +> LogoutFlow createBrowserLogoutFlow(cookie, returnTo) Create a Logout URL for Browsers @@ -133,8 +133,9 @@ public class Example { FrontendApi apiInstance = new FrontendApi(defaultClient); String cookie = "cookie_example"; // String | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + String returnTo = "returnTo_example"; // String | Return to URL The URL to which the browser should be redirected to after the logout has been performed. try { - LogoutFlow result = apiInstance.createBrowserLogoutFlow(cookie); + LogoutFlow result = apiInstance.createBrowserLogoutFlow(cookie, returnTo); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FrontendApi#createBrowserLogoutFlow"); @@ -152,6 +153,7 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **cookie** | **String**| HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | [optional] | +| **returnTo** | **String**| Return to URL The URL to which the browser should be redirected to after the logout has been performed. | [optional] | ### Return type @@ -170,6 +172,7 @@ No authorization required | Status code | Description | Response headers | |-------------|-------------|------------------| | **200** | logoutFlow | - | +| **400** | errorGeneric | - | | **401** | errorGeneric | - | | **500** | errorGeneric | - | diff --git a/clients/client/java/docs/IdentityApi.md b/clients/client/java/docs/IdentityApi.md index ac1d6b4ef13..0f5effa0eff 100644 --- a/clients/client/java/docs/IdentityApi.md +++ b/clients/client/java/docs/IdentityApi.md @@ -374,7 +374,7 @@ null (empty response body) # **deleteIdentityCredentials** -> Identity deleteIdentityCredentials(id, type) +> deleteIdentityCredentials(id, type) Delete a credential for a specific identity @@ -403,8 +403,7 @@ public class Example { String id = "id_example"; // String | ID is the identity's ID. String type = "totp"; // String | Type is the credential's Type. One of totp, webauthn, lookup try { - Identity result = apiInstance.deleteIdentityCredentials(id, type); - System.out.println(result); + apiInstance.deleteIdentityCredentials(id, type); } catch (ApiException e) { System.err.println("Exception when calling IdentityApi#deleteIdentityCredentials"); System.err.println("Status code: " + e.getCode()); @@ -425,7 +424,7 @@ public class Example { ### Return type -[**Identity**](Identity.md) +null (empty response body) ### Authorization @@ -439,7 +438,7 @@ public class Example { ### HTTP response details | Status code | Description | Response headers | |-------------|-------------|------------------| -| **200** | identity | - | +| **204** | Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. | - | | **404** | errorGeneric | - | | **0** | errorGeneric | - | diff --git a/clients/client/java/docs/LoginFlow.md b/clients/client/java/docs/LoginFlow.md index c9c03bf8e3b..e0b60e245b9 100644 --- a/clients/client/java/docs/LoginFlow.md +++ b/clients/client/java/docs/LoginFlow.md @@ -13,7 +13,7 @@ This object represents a login flow. A login flow is initiated at the \"Initiate |**expiresAt** | **OffsetDateTime** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | | |**id** | **String** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id> | | |**issuedAt** | **OffsetDateTime** | IssuedAt is the time (UTC) when the flow started. | | -|**oauth2LoginChallenge** | **String** | | [optional] | +|**oauth2LoginChallenge** | **String** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] | |**oauth2LoginRequest** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] | |**refresh** | **Boolean** | Refresh stores whether this login flow should enforce re-authentication. | [optional] | |**requestUrl** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | | diff --git a/clients/client/java/docs/NormalizedProject.md b/clients/client/java/docs/NormalizedProject.md index 45b882ed660..15888c0260b 100644 --- a/clients/client/java/docs/NormalizedProject.md +++ b/clients/client/java/docs/NormalizedProject.md @@ -14,6 +14,7 @@ |**slug** | **String** | The project's slug | [readonly] | |**state** | [**StateEnum**](#StateEnum) | The state of the project. running Running halted Halted deleted Deleted | [readonly] | |**subscriptionId** | **String** | | [optional] | +|**subscriptionPlan** | **String** | | [optional] | |**updatedAt** | **OffsetDateTime** | Last Time Project was Updated | [readonly] | diff --git a/clients/client/java/docs/ProjectBranding.md b/clients/client/java/docs/ProjectBranding.md index aa41670f931..ef96f141979 100644 --- a/clients/client/java/docs/ProjectBranding.md +++ b/clients/client/java/docs/ProjectBranding.md @@ -2,7 +2,6 @@ # ProjectBranding -The Project Branding ## Properties @@ -12,7 +11,7 @@ The Project Branding |**defaultTheme** | [**ProjectBrandingTheme**](ProjectBrandingTheme.md) | | | |**id** | **String** | The customization ID. | [readonly] | |**projectId** | **String** | The Project's ID this customization is associated with | | -|**themes** | [**List<ProjectBrandingTheme>**](ProjectBrandingTheme.md) | The Project Branding Themes | | +|**themes** | [**List<ProjectBrandingTheme>**](ProjectBrandingTheme.md) | | | |**updatedAt** | **OffsetDateTime** | Last Time Branding was Updated | [readonly] | diff --git a/clients/client/java/docs/ProjectBrandingColors.md b/clients/client/java/docs/ProjectBrandingColors.md index 24da6bff1fe..41f291b7fa0 100644 --- a/clients/client/java/docs/ProjectBrandingColors.md +++ b/clients/client/java/docs/ProjectBrandingColors.md @@ -2,7 +2,6 @@ # ProjectBrandingColors -The Project Branding Colors ## Properties diff --git a/clients/client/java/docs/ProjectBrandingTheme.md b/clients/client/java/docs/ProjectBrandingTheme.md index a8966621d46..cc3d0423d76 100644 --- a/clients/client/java/docs/ProjectBrandingTheme.md +++ b/clients/client/java/docs/ProjectBrandingTheme.md @@ -2,7 +2,6 @@ # ProjectBrandingTheme -The Project Branding Theme ## Properties diff --git a/clients/client/java/docs/ProjectMetadata.md b/clients/client/java/docs/ProjectMetadata.md index 7efa57e5223..1c6068b5072 100644 --- a/clients/client/java/docs/ProjectMetadata.md +++ b/clients/client/java/docs/ProjectMetadata.md @@ -14,6 +14,7 @@ |**slug** | **String** | The project's slug | [optional] [readonly] | |**state** | [**StateEnum**](#StateEnum) | The state of the project. running Running halted Halted deleted Deleted | | |**subscriptionId** | **String** | | [optional] | +|**subscriptionPlan** | **String** | | [optional] | |**updatedAt** | **OffsetDateTime** | Last Time Project was Updated | | diff --git a/clients/client/java/docs/RegistrationFlow.md b/clients/client/java/docs/RegistrationFlow.md index 12ce93ee623..d336610e262 100644 --- a/clients/client/java/docs/RegistrationFlow.md +++ b/clients/client/java/docs/RegistrationFlow.md @@ -11,7 +11,7 @@ |**expiresAt** | **OffsetDateTime** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | | |**id** | **String** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id> | | |**issuedAt** | **OffsetDateTime** | IssuedAt is the time (UTC) when the flow occurred. | | -|**oauth2LoginChallenge** | **String** | | [optional] | +|**oauth2LoginChallenge** | **String** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] | |**oauth2LoginRequest** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] | |**requestUrl** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | | |**returnTo** | **String** | ReturnTo contains the requested return_to URL. | [optional] | diff --git a/clients/client/java/docs/SetProjectBrandingThemeBody.md b/clients/client/java/docs/SetProjectBrandingThemeBody.md index ef784ace912..47b9ae5cf67 100644 --- a/clients/client/java/docs/SetProjectBrandingThemeBody.md +++ b/clients/client/java/docs/SetProjectBrandingThemeBody.md @@ -2,7 +2,6 @@ # SetProjectBrandingThemeBody -Set Project Branding Theme Request Parameters ## Properties 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 a5530d365b5..4adf08d957d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 99dcb508e3d..3639bfb5a24 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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.39/java"); + setUserAgent("OpenAPI-Generator/v1.1.39-alpha.0/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 27c4d9b580e..f555a912947 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 0991c4d3b04..816a19177c8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 206056ce1fc..dd9d3c802d5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 754bb31b88c..d2c83c1a117 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1de144fd0b0..eb38148cfbf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1814a328a23..4f1116ed062 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 8ab2a50bb1c..5e0a4f7a996 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e8de6307405..3a588a1f7de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 770da89035a..d6f27d65aeb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a315aa7f877..ce4d0a010a8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2b59458b0d2..f0fe4d83ff5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -259,6 +259,7 @@ public okhttp3.Call createBrowserLoginFlowAsync(Boolean refresh, String aal, Str /** * Build call for createBrowserLogoutFlow * @param cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -266,11 +267,12 @@ public okhttp3.Call createBrowserLoginFlowAsync(Boolean refresh, String aal, Str +
Status Code Description Response Headers
200 logoutFlow -
400 errorGeneric -
401 errorGeneric -
500 errorGeneric -
*/ - public okhttp3.Call createBrowserLogoutFlowCall(String cookie, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createBrowserLogoutFlowCall(String cookie, String returnTo, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -295,6 +297,10 @@ public okhttp3.Call createBrowserLogoutFlowCall(String cookie, final ApiCallback Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); + if (returnTo != null) { + localVarQueryParams.addAll(localVarApiClient.parameterToPair("return_to", returnTo)); + } + if (cookie != null) { localVarHeaderParams.put("cookie", localVarApiClient.parameterToString(cookie)); } @@ -319,8 +325,8 @@ public okhttp3.Call createBrowserLogoutFlowCall(String cookie, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call createBrowserLogoutFlowValidateBeforeCall(String cookie, final ApiCallback _callback) throws ApiException { - return createBrowserLogoutFlowCall(cookie, _callback); + private okhttp3.Call createBrowserLogoutFlowValidateBeforeCall(String cookie, String returnTo, final ApiCallback _callback) throws ApiException { + return createBrowserLogoutFlowCall(cookie, returnTo, _callback); } @@ -328,18 +334,20 @@ private okhttp3.Call createBrowserLogoutFlowValidateBeforeCall(String cookie, fi * Create a Logout URL for Browsers * This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. * @param cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * @return LogoutFlow * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details +
Status Code Description Response Headers
200 logoutFlow -
400 errorGeneric -
401 errorGeneric -
500 errorGeneric -
*/ - public LogoutFlow createBrowserLogoutFlow(String cookie) throws ApiException { - ApiResponse localVarResp = createBrowserLogoutFlowWithHttpInfo(cookie); + public LogoutFlow createBrowserLogoutFlow(String cookie, String returnTo) throws ApiException { + ApiResponse localVarResp = createBrowserLogoutFlowWithHttpInfo(cookie, returnTo); return localVarResp.getData(); } @@ -347,18 +355,20 @@ public LogoutFlow createBrowserLogoutFlow(String cookie) throws ApiException { * Create a Logout URL for Browsers * This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. * @param cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * @return ApiResponse<LogoutFlow> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details +
Status Code Description Response Headers
200 logoutFlow -
400 errorGeneric -
401 errorGeneric -
500 errorGeneric -
*/ - public ApiResponse createBrowserLogoutFlowWithHttpInfo(String cookie) throws ApiException { - okhttp3.Call localVarCall = createBrowserLogoutFlowValidateBeforeCall(cookie, null); + public ApiResponse createBrowserLogoutFlowWithHttpInfo(String cookie, String returnTo) throws ApiException { + okhttp3.Call localVarCall = createBrowserLogoutFlowValidateBeforeCall(cookie, returnTo, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -367,6 +377,7 @@ public ApiResponse createBrowserLogoutFlowWithHttpInfo(String cookie * Create a Logout URL for Browsers (asynchronously) * This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. * @param cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -374,13 +385,14 @@ public ApiResponse createBrowserLogoutFlowWithHttpInfo(String cookie +
Status Code Description Response Headers
200 logoutFlow -
400 errorGeneric -
401 errorGeneric -
500 errorGeneric -
*/ - public okhttp3.Call createBrowserLogoutFlowAsync(String cookie, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createBrowserLogoutFlowAsync(String cookie, String returnTo, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createBrowserLogoutFlowValidateBeforeCall(cookie, _callback); + okhttp3.Call localVarCall = createBrowserLogoutFlowValidateBeforeCall(cookie, returnTo, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; 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 86ea3f79601..25eddc6d2c9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -742,7 +742,7 @@ public okhttp3.Call deleteIdentityAsync(String id, final ApiCallback _call * @http.response.details - +
Status Code Description Response Headers
200 identity -
204 Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. -
404 errorGeneric -
0 errorGeneric -
@@ -814,19 +814,17 @@ private okhttp3.Call deleteIdentityCredentialsValidateBeforeCall(String id, Stri * Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type You can only delete second factor (aal2) credentials. * @param id ID is the identity's ID. (required) * @param type Type is the credential's Type. One of totp, webauthn, lookup (required) - * @return Identity * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 identity -
204 Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. -
404 errorGeneric -
0 errorGeneric -
*/ - public Identity deleteIdentityCredentials(String id, String type) throws ApiException { - ApiResponse localVarResp = deleteIdentityCredentialsWithHttpInfo(id, type); - return localVarResp.getData(); + public void deleteIdentityCredentials(String id, String type) throws ApiException { + deleteIdentityCredentialsWithHttpInfo(id, type); } /** @@ -834,20 +832,19 @@ public Identity deleteIdentityCredentials(String id, String type) throws ApiExce * Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type You can only delete second factor (aal2) credentials. * @param id ID is the identity's ID. (required) * @param type Type is the credential's Type. One of totp, webauthn, lookup (required) - * @return ApiResponse<Identity> + * @return ApiResponse<Void> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 identity -
204 Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. -
404 errorGeneric -
0 errorGeneric -
*/ - public ApiResponse deleteIdentityCredentialsWithHttpInfo(String id, String type) throws ApiException { + public ApiResponse deleteIdentityCredentialsWithHttpInfo(String id, String type) throws ApiException { okhttp3.Call localVarCall = deleteIdentityCredentialsValidateBeforeCall(id, type, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return localVarApiClient.execute(localVarCall, localVarReturnType); + return localVarApiClient.execute(localVarCall); } /** @@ -861,16 +858,15 @@ public ApiResponse deleteIdentityCredentialsWithHttpInfo(String id, St * @http.response.details - +
Status Code Description Response Headers
200 identity -
204 Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. -
404 errorGeneric -
0 errorGeneric -
*/ - public okhttp3.Call deleteIdentityCredentialsAsync(String id, String type, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteIdentityCredentialsAsync(String id, String type, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = deleteIdentityCredentialsValidateBeforeCall(id, type, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); - localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + localVarApiClient.executeAsync(localVarCall, _callback); return localVarCall; } /** 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 8946c6a64bc..650f3c9223c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 34feff1773c..9111702e206 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d4f43a49cba..f4cd4d5a78b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 945eaa82415..7937023ae02 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f43feec2d5b..f1cf171387e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bcd44fb5812..023e2379488 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f197752d7e4..413914c243f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 faa81a959f7..c4bf95c7d93 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 10e597b6290..67dd8fb991a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bde4cfb869a..cf69ccc83c9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 04f0d1029eb..faa0fec8f5b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dfbd1b1a7f8..5ba33269f27 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 7ed26c3cfbd..54dcb66fe2d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 aa2eedc26cf..33603e0bb3d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 3619b67f0b8..c409dae345f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f87b0bbbdbf..200851368ee 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 635bbd61fed..bf0aceca99c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 efaed0d38d3..8530fc48155 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 36d8fc8caed..3458d3dc38c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f2867128fdf..8edc25c85fc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 70ef9d2f1d8..f269f90f1ed 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/CheckOplSyntaxResult.java b/clients/client/java/src/main/java/sh/ory/model/CheckOplSyntaxResult.java index 20864703480..6022988bed0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 b9ba050c6f4..ea1edd40db2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d34cab1b370..8649671719d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ba40a8247b2..d4da3f80953 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 0adac7fc0c9..8de0cfa3b1d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 81beead9c30..a6470650d46 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 1ff5b1ad60e..e3e89b2139f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 eb22232d056..abced6cb9fe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bddcad10766..75934a2519a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7f9587239b5..cff9c60c6f7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 9299408d949..c6e7b1ae459 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/CreateJsonWebKeySet.java b/clients/client/java/src/main/java/sh/ory/model/CreateJsonWebKeySet.java index dde9678960f..937df2d5ec3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 2c411ab3280..951b92a4a0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ad196b3caa8..73e65f6e030 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 e16b3d71a2b..ffef131642f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/CreateProjectInvite.java b/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvite.java index b634b0344dc..2b35054d64f 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvite.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvite.java @@ -2,7 +2,7 @@ * Ory APIs * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,7 @@ * Create Project Invite Request Body */ @ApiModel(description = "Create Project Invite Request Body") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class CreateProjectInvite { public static final String SERIALIZED_NAME_INVITEE_EMAILS = "invitee_emails"; @SerializedName(SERIALIZED_NAME_INVITEE_EMAILS) diff --git a/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvitesResponse.java b/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvitesResponse.java index 72fa13cd39f..28061dd88b0 100644 --- a/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvitesResponse.java +++ b/clients/client/java/src/main/java/sh/ory/model/CreateProjectInvitesResponse.java @@ -2,7 +2,7 @@ * Ory APIs * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -52,7 +52,7 @@ * Response to the create project invite request */ @ApiModel(description = "Response to the create project invite request") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class CreateProjectInvitesResponse { 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/CreateRecoveryCodeForIdentityBody.java b/clients/client/java/src/main/java/sh/ory/model/CreateRecoveryCodeForIdentityBody.java index 157d1a0ad6d..1b8c3b3063b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ac677cbbcb9..1963f689a7b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a0274d3832e..653a61b9a1a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 06b0929d14f..f013e7d1536 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class CreateSubscriptionBody { /** * usd USD eur Euro 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 eb4c766d03b..d506ed4c362 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 841fb53baf9..8d71d8bd8a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/ErrorAuthenticatorAssuranceLevelNotSatisfied.java b/clients/client/java/src/main/java/sh/ory/model/ErrorAuthenticatorAssuranceLevelNotSatisfied.java index 99c28669ea5..5bacf427313 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 0ff8f9ebdf6..56ac0cd2686 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bb9562a1b34..0b6f1fa1e14 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 640df56e473..a9365e9bec0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 41b13cc591e..3b6992f5706 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ccdcfb1bf18..a27ca1c3c0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 b5add5b8996..62528c0a33f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c78614f85f8..510e882600f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 e9b1911f4e0..42d0fe77385 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 44d1e10905f..dfa6b72d099 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 518abf6bb00..7e4a299f7f5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 75009f13694..cf5074bca64 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 46cc1b056fd..c2b91f657f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 48a4e651078..7035bd08421 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 0e8333e9a81..22529930240 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a69cbad3d76..dc6b28f916f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 fd912798644..7e710b58855 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c2046e1e124..853db100b45 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 283ea670ce4..0fc7a49163f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 1a4d9ee5316..8a2860d4df5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 dcc4be5792d..e76b7b006f2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 24e6b8eb1d6..c5381e08499 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 b64748b1b28..74fed462996 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 5ea21abf6f4..28271ccf752 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 458140422d8..7792f08bf45 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a43ce06efd9..f82c2fd9589 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0cecee63614..11cecc30f8f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 507828abc9a..e7ffce6d5af 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 4bf1c15c5ab..888a46ef160 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f9716d07871..7cba0c420e7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a499bc59ffd..21be1552a55 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 7c852b84076..59a119172d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f22a9597805..ee27ff5b8e4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/InternalIsOwnerForProjectBySlugBody.java b/clients/client/java/src/main/java/sh/ory/model/InternalIsOwnerForProjectBySlugBody.java index 3953fbf8902..bd74a37ba78 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 6ee6f7cf874..cd7274db70d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 e93a29e7327..49ebc722134 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 8de1101aa00..740ec51ae33 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 8a530439e80..3cadf21005b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 75865333acf..0d6024a7357 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 79ab094453e..34f20d7fc60 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 58a03ca782f..b8524dda56e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 2b733d12dec..30fc2208e71 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f70d4a91d99..8431024db0e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 17c6b3ee5cd..26bf74c37fa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 11922634fcc..82d432386ed 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -24,7 +24,6 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; -import org.openapitools.jackson.nullable.JsonNullable; import sh.ory.model.AuthenticatorAssuranceLevel; import sh.ory.model.IdentityCredentialsType; import sh.ory.model.OAuth2LoginRequest; @@ -55,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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class LoginFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) @@ -242,11 +241,11 @@ public LoginFlow oauth2LoginChallenge(String oauth2LoginChallenge) { } /** - * Get oauth2LoginChallenge + * Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. * @return oauth2LoginChallenge **/ @javax.annotation.Nullable - @ApiModelProperty(value = "") + @ApiModelProperty(value = "Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.") public String getOauth2LoginChallenge() { return oauth2LoginChallenge; @@ -537,22 +536,11 @@ public boolean equals(Object o) { Objects.equals(this.additionalProperties, loginFlow.additionalProperties); } - private static boolean equalsNullable(JsonNullable a, JsonNullable b) { - return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get())); - } - @Override public int hashCode() { return Objects.hash(active, createdAt, expiresAt, id, issuedAt, oauth2LoginChallenge, oauth2LoginRequest, refresh, requestUrl, requestedAal, returnTo, sessionTokenExchangeCode, type, ui, updatedAt, additionalProperties); } - private static int hashCodeNullable(JsonNullable a) { - if (a == null) { - return 1; - } - return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31; - } - @Override public String toString() { StringBuilder sb = new StringBuilder(); 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 9fdeb9f4bd9..79c606627c6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d8509fe5014..4f672e3439d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 29d4fd2c97b..858e391da2d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/Message.java b/clients/client/java/src/main/java/sh/ory/model/Message.java index 723cfdaabdf..fad76c87f7e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 988e3668bc7..d62fb457c4f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 3f56f68df31..d2259a227fb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a70edd11505..5c8e224bf5b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 e847239a6cb..8b7e9b0bf32 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 1d30f4a4c22..41d32d1c675 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class NormalizedProject { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @@ -132,6 +132,10 @@ public StateEnum read(final JsonReader jsonReader) throws IOException { @SerializedName(SERIALIZED_NAME_SUBSCRIPTION_ID) private String subscriptionId; + public static final String SERIALIZED_NAME_SUBSCRIPTION_PLAN = "subscription_plan"; + @SerializedName(SERIALIZED_NAME_SUBSCRIPTION_PLAN) + private String subscriptionPlan; + public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; @@ -285,6 +289,29 @@ public void setSubscriptionId(String subscriptionId) { } + public NormalizedProject subscriptionPlan(String subscriptionPlan) { + + this.subscriptionPlan = subscriptionPlan; + return this; + } + + /** + * Get subscriptionPlan + * @return subscriptionPlan + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getSubscriptionPlan() { + return subscriptionPlan; + } + + + public void setSubscriptionPlan(String subscriptionPlan) { + this.subscriptionPlan = subscriptionPlan; + } + + /** * Last Time Project was Updated * @return updatedAt @@ -360,6 +387,7 @@ public boolean equals(Object o) { Objects.equals(this.slug, normalizedProject.slug) && Objects.equals(this.state, normalizedProject.state) && Objects.equals(this.subscriptionId, normalizedProject.subscriptionId) && + Objects.equals(this.subscriptionPlan, normalizedProject.subscriptionPlan) && Objects.equals(this.updatedAt, normalizedProject.updatedAt)&& Objects.equals(this.additionalProperties, normalizedProject.additionalProperties); } @@ -370,7 +398,7 @@ private static boolean equalsNullable(JsonNullable a, JsonNullable b) @Override public int hashCode() { - return Objects.hash(createdAt, currentRevision, hosts, id, slug, state, subscriptionId, updatedAt, additionalProperties); + return Objects.hash(createdAt, currentRevision, hosts, id, slug, state, subscriptionId, subscriptionPlan, updatedAt, additionalProperties); } private static int hashCodeNullable(JsonNullable a) { @@ -391,6 +419,7 @@ public String toString() { sb.append(" slug: ").append(toIndentedString(slug)).append("\n"); sb.append(" state: ").append(toIndentedString(state)).append("\n"); sb.append(" subscriptionId: ").append(toIndentedString(subscriptionId)).append("\n"); + sb.append(" subscriptionPlan: ").append(toIndentedString(subscriptionPlan)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n"); sb.append(" additionalProperties: ").append(toIndentedString(additionalProperties)).append("\n"); sb.append("}"); @@ -422,6 +451,7 @@ private String toIndentedString(Object o) { openapiFields.add("slug"); openapiFields.add("state"); openapiFields.add("subscription_id"); + openapiFields.add("subscription_plan"); openapiFields.add("updated_at"); // a set of required properties/fields (JSON key names) @@ -474,6 +504,9 @@ public static void validateJsonObject(JsonObject jsonObj) throws IOException { if ((jsonObj.get("subscription_id") != null && !jsonObj.get("subscription_id").isJsonNull()) && !jsonObj.get("subscription_id").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `subscription_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("subscription_id").toString())); } + if ((jsonObj.get("subscription_plan") != null && !jsonObj.get("subscription_plan").isJsonNull()) && !jsonObj.get("subscription_plan").isJsonPrimitive()) { + throw new IllegalArgumentException(String.format("Expected the field `subscription_plan` to be a primitive type in the JSON string but got `%s`", jsonObj.get("subscription_plan").toString())); + } } public static class CustomTypeAdapterFactory implements TypeAdapterFactory { 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 82399a1d425..acc3ce1f0e4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class NormalizedProjectRevision { 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/NormalizedProjectRevisionHook.java b/clients/client/java/src/main/java/sh/ory/model/NormalizedProjectRevisionHook.java index d2f75589b32..b1a0d99608a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 778c2995305..c05e534193f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 4c67a8e287a..56c5776ca75 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bccfcc645e0..ce99b79266c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 5a0b777a375..17aebb6d724 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d151a28965e..bc26de85b17 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bdfa0f56c04..1b3e6b17f0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 fadaa92ae99..ae2d4a5dd79 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 7cc5736671f..033b6854a68 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 22733485de2..fce1605022a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 928273fa846..a36c8a21b4a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c4e0780de94..956d418dfad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 770114e524a..53d0ef2c60e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c32bdb95b0a..9ed33540703 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -51,7 +51,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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 876d56daa68..88e42fa85bc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 6c084c9c275..fc4ce0e4bc9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 31f778793bf..d96d9afd48c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d1eeee1783e..4841c1d69ce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 86b5abd21f8..3500503f55e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 65c8f6bc2f1..2974e2cd0de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d26fca86985..e0630cadfd0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 23b53b6ff57..7cbcf0e17e3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 599be228a7f..595b2a84411 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 58ded45a1dc..12f3b08cfc9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 117d2b7767a..0088c7e80b8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * Project */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class Project { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) 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 bbf7d162ead..f1a449c1458 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ff276ea8c24..2323ecb7d3f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,10 +50,9 @@ import sh.ory.JSON; /** - * The Project Branding + * ProjectBranding */ -@ApiModel(description = "The Project Branding") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class ProjectBranding { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @@ -180,11 +179,11 @@ public ProjectBranding addThemesItem(ProjectBrandingTheme themesItem) { } /** - * The Project Branding Themes + * Get themes * @return themes **/ @javax.annotation.Nonnull - @ApiModelProperty(required = true, value = "The Project Branding Themes") + @ApiModelProperty(required = true, value = "") public List getThemes() { return themes; 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 75050bc9172..f6f82c74520 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -46,10 +46,9 @@ import sh.ory.JSON; /** - * The Project Branding Colors + * ProjectBrandingColors */ -@ApiModel(description = "The Project Branding Colors") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ef4ea9a0bd0..cfe63f06f73 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -47,10 +47,9 @@ import sh.ory.JSON; /** - * The Project Branding Theme + * ProjectBrandingTheme */ -@ApiModel(description = "The Project Branding Theme") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 946f70c30a0..ac6763515a0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/ProjectInvite.java b/clients/client/java/src/main/java/sh/ory/model/ProjectInvite.java index df754d4b87b..8bf6383927b 100644 --- a/clients/client/java/src/main/java/sh/ory/model/ProjectInvite.java +++ b/clients/client/java/src/main/java/sh/ory/model/ProjectInvite.java @@ -2,7 +2,7 @@ * Ory APIs * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -50,7 +50,7 @@ /** * ProjectInvite */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class ProjectInvite { 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/ProjectMetadata.java b/clients/client/java/src/main/java/sh/ory/model/ProjectMetadata.java index 2513f3016ec..994cf622199 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class ProjectMetadata { public static final String SERIALIZED_NAME_CREATED_AT = "created_at"; @SerializedName(SERIALIZED_NAME_CREATED_AT) @@ -131,6 +131,10 @@ public StateEnum read(final JsonReader jsonReader) throws IOException { @SerializedName(SERIALIZED_NAME_SUBSCRIPTION_ID) private String subscriptionId; + public static final String SERIALIZED_NAME_SUBSCRIPTION_PLAN = "subscription_plan"; + @SerializedName(SERIALIZED_NAME_SUBSCRIPTION_PLAN) + private String subscriptionPlan; + public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; @@ -296,6 +300,29 @@ public void setSubscriptionId(String subscriptionId) { } + public ProjectMetadata subscriptionPlan(String subscriptionPlan) { + + this.subscriptionPlan = subscriptionPlan; + return this; + } + + /** + * Get subscriptionPlan + * @return subscriptionPlan + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getSubscriptionPlan() { + return subscriptionPlan; + } + + + public void setSubscriptionPlan(String subscriptionPlan) { + this.subscriptionPlan = subscriptionPlan; + } + + public ProjectMetadata updatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; @@ -380,6 +407,7 @@ public boolean equals(Object o) { Objects.equals(this.slug, projectMetadata.slug) && Objects.equals(this.state, projectMetadata.state) && Objects.equals(this.subscriptionId, projectMetadata.subscriptionId) && + Objects.equals(this.subscriptionPlan, projectMetadata.subscriptionPlan) && Objects.equals(this.updatedAt, projectMetadata.updatedAt)&& Objects.equals(this.additionalProperties, projectMetadata.additionalProperties); } @@ -390,7 +418,7 @@ private static boolean equalsNullable(JsonNullable a, JsonNullable b) @Override public int hashCode() { - return Objects.hash(createdAt, hosts, id, name, slug, state, subscriptionId, updatedAt, additionalProperties); + return Objects.hash(createdAt, hosts, id, name, slug, state, subscriptionId, subscriptionPlan, updatedAt, additionalProperties); } private static int hashCodeNullable(JsonNullable a) { @@ -411,6 +439,7 @@ public String toString() { sb.append(" slug: ").append(toIndentedString(slug)).append("\n"); sb.append(" state: ").append(toIndentedString(state)).append("\n"); sb.append(" subscriptionId: ").append(toIndentedString(subscriptionId)).append("\n"); + sb.append(" subscriptionPlan: ").append(toIndentedString(subscriptionPlan)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n"); sb.append(" additionalProperties: ").append(toIndentedString(additionalProperties)).append("\n"); sb.append("}"); @@ -442,6 +471,7 @@ private String toIndentedString(Object o) { openapiFields.add("slug"); openapiFields.add("state"); openapiFields.add("subscription_id"); + openapiFields.add("subscription_plan"); openapiFields.add("updated_at"); // a set of required properties/fields (JSON key names) @@ -494,6 +524,9 @@ public static void validateJsonObject(JsonObject jsonObj) throws IOException { if ((jsonObj.get("subscription_id") != null && !jsonObj.get("subscription_id").isJsonNull()) && !jsonObj.get("subscription_id").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `subscription_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("subscription_id").toString())); } + if ((jsonObj.get("subscription_plan") != null && !jsonObj.get("subscription_plan").isJsonNull()) && !jsonObj.get("subscription_plan").isJsonPrimitive()) { + throw new IllegalArgumentException(String.format("Expected the field `subscription_plan` to be a primitive type in the JSON string but got `%s`", jsonObj.get("subscription_plan").toString())); + } } public static class CustomTypeAdapterFactory implements TypeAdapterFactory { 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 e435d7bf531..aae968896b0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 03c2919827c..94c5f81c265 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 3e130f52f43..dfb461c2fe8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 fec504650ff..4ead10572d8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 1f70845683e..270c1dd635f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/RecoveryCodeForIdentity.java b/clients/client/java/src/main/java/sh/ory/model/RecoveryCodeForIdentity.java index 912df3dca4b..d65010467fd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 9e58c0cfcf2..e44660f55d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ac0c5bf7452..5d1cb8fef05 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 890ebd750ae..f17aae4838e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 6037aa981ba..7052f471681 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d91efa23e41..728548cc2fe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -24,7 +24,6 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; -import org.openapitools.jackson.nullable.JsonNullable; import sh.ory.model.IdentityCredentialsType; import sh.ory.model.OAuth2LoginRequest; import sh.ory.model.UiContainer; @@ -53,7 +52,7 @@ /** * RegistrationFlow */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class RegistrationFlow { public static final String SERIALIZED_NAME_ACTIVE = "active"; @SerializedName(SERIALIZED_NAME_ACTIVE) @@ -205,11 +204,11 @@ public RegistrationFlow oauth2LoginChallenge(String oauth2LoginChallenge) { } /** - * Get oauth2LoginChallenge + * Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. * @return oauth2LoginChallenge **/ @javax.annotation.Nullable - @ApiModelProperty(value = "") + @ApiModelProperty(value = "Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.") public String getOauth2LoginChallenge() { return oauth2LoginChallenge; @@ -451,22 +450,11 @@ public boolean equals(Object o) { Objects.equals(this.additionalProperties, registrationFlow.additionalProperties); } - private static boolean equalsNullable(JsonNullable a, JsonNullable b) { - return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get())); - } - @Override public int hashCode() { return Objects.hash(active, expiresAt, id, issuedAt, oauth2LoginChallenge, oauth2LoginRequest, requestUrl, returnTo, sessionTokenExchangeCode, transientPayload, type, ui, additionalProperties); } - private static int hashCodeNullable(JsonNullable a) { - if (a == null) { - return 1; - } - return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31; - } - @Override public String toString() { StringBuilder sb = new StringBuilder(); 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 b13bfeab455..3b56f5a4113 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 60f13854939..d8bb6240975 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 b9cb7ec763d..9cc0aadb81d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 524439e077a..84ff4854eb3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f96768228e3..886d0a5eef1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 e64baae3e0c..8e8f7c68ba5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d080f36ffa2..3f9a7b5d79a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d97c85b5091..5787eb6b286 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 834328358f5..738bea17baa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c18af5451ff..250ce75eca0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bda46800ced..53735a0c42e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a9151036cd4..f000524464b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d4026c24fdb..2d29480463f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bf1efcbaa58..3fe193e7ef8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -49,7 +49,7 @@ /** * SetProject */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[Etc/UTC]") public class SetProject { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) 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 a03076514fa..e6e5c56c1b5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -47,10 +47,9 @@ import sh.ory.JSON; /** - * Set Project Branding Theme Request Parameters + * SetProjectBrandingThemeBody */ -@ApiModel(description = "Set Project Branding Theme Request Parameters") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 3e8cbb6e2ca..96023c1b284 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 69a73285a00..022e797500c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 83260b73a29..f1a96365a21 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bf19d0063c5..92af484df79 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a6d8bb0eed8..eb85c4412ad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 8792113fe4f..cd967e7bdbd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 fd4d4fbb85e..0316c366560 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c80eac50943..ffe6fdeeb8e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 84d91808210..c3d0b9e4cce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f2b34296199..0e06efb63f1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 9d0d468bf58..0104338e0ec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 25b8b62cc97..43728bb9fd9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 1d732e599ea..6b3c6548269 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 7a741c01f90..bdc6ec556d6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 0a59a09300f..5998c870c45 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f76c877886d..9fefc065e7e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 6678e9345b6..6ad052ab8fb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 20fd8ffe119..6f3927ca8f7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 2030f043687..b6b7a15f2d5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 9fbee30afb0..61955bb87b6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 d743b173282..fe1d477e03c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 db514342300..3b39ea49be2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 8a7935d0188..eef9c351004 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 871cf84b4cd..b32b2253c5d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 8efbe762604..2bb3d13b93c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 0b5d3acea8c..bd9bb006a86 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 800efe1e23a..f9f3957780b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 5022dededf4..9ceb25f226f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 1adea4132c9..9649f6df5ba 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 6c0969cad14..dc0d545793b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 812435f49ac..7be32eaecc8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ceaf78c91fd..721d729d525 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 981fc0dab06..e6e6f888114 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 5403c9de08d..780cdcc0246 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bd157bcf17f..1f912b512f4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 61eba120f26..eb34335df37 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 62950c3bb5e..0c90c10409a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 13d456f2a40..9579d5ba1f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 07fbb606e96..88400bd6f95 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 64e1c0d175e..90ac883724f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 29a74911d9d..0c2c1532c9d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 f5680fb5318..9c2046f0d24 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 a66c3f230ec..0582252ea2a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 54932500f50..191dd408c6e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c3d81aaaccb..0fa11c312b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 c4c9912c981..68df375d987 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 10b078b53c9..51c421f13ad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 ad1797babde..cff51fc4b32 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 521b1d23e8c..a63d5180cb8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 96ceacb1bf0..2de0255a346 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 30f7c3507f5..057ef97ff7c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 79a3abaa637..fe2b03410e4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 bb94f5c9453..c2ee880339d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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/VerifiableIdentityAddress.java b/clients/client/java/src/main/java/sh/ory/model/VerifiableIdentityAddress.java index 42339bee04e..be1f83fe4ac 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 19af39696d3..94feb31b8c9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 7fafde62c1f..c88adc13468 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 966b60c0b9d..5bdc9b267de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 5b77657c980..0f09c9d98f2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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-06-21T07:28:49.836329197Z[Etc/UTC]") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-06-28T11:04:15.642376473Z[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 26f4f4ba711..53d95c844a9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 46a47dfac14..6e0bf057016 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -77,7 +77,8 @@ public void createBrowserLoginFlowTest() throws ApiException { @Test public void createBrowserLogoutFlowTest() throws ApiException { String cookie = null; - LogoutFlow response = api.createBrowserLogoutFlow(cookie); + String returnTo = null; + LogoutFlow response = api.createBrowserLogoutFlow(cookie, returnTo); // TODO: test validations } 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 c77291b71cc..3f5db5967fc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -124,7 +124,7 @@ public void deleteIdentityTest() throws ApiException { public void deleteIdentityCredentialsTest() throws ApiException { String id = null; String type = null; - Identity response = api.deleteIdentityCredentials(id, type); + api.deleteIdentityCredentials(id, type); // TODO: test validations } 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 fdcfa0ea326..77dc87591ee 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 315881430b9..528b981a716 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5f7cef53ba8..0055742e90e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c4a5aa8cc95..88e54298fb2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eb58f0fa433..4695e66153c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b5419bf73de..5337e368847 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 04080c82286..c0d93d7f4d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 06ca3ee22c7..548959f81dc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f92d2cbd703..576c73d7cae 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9b77a45ef3b..9449dd9638f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f2907d01a37..27ce422fd28 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 89445653788..0b53c5ad6fd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4e05e0c036c..5a13fe25c58 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3e4117b15a7..32151ad02c2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1729ac3c2ad..fcfba84a34d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 63acacd9429..f88c547a78d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 09a06cc9861..ae2463eb275 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aaf9312bd6c..78c4fee6304 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0bed4374ad3..69479ff881f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 08e1950f0cb..7f61c2d2c43 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b4dd902cf74..33532aab98e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fce71482db9..38f4864e1d0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e6743532136..74f58995bc1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f5c8b108aa9..b33b1c0b889 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ee64383dcad..6c5dfc1abf2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8c34b0d7bff..2300865a02e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1f594dce2d1..17698229606 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bb93bea28ae..9bbbda94e42 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9eecdf9b6a7..d962ab0aa32 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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/CreateProjectInviteTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateProjectInviteTest.java index a7d49aeee75..9201d099474 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateProjectInviteTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateProjectInviteTest.java @@ -2,7 +2,7 @@ * Ory APIs * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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/CreateProjectInvitesResponseTest.java b/clients/client/java/src/test/java/sh/ory/model/CreateProjectInvitesResponseTest.java index ef9e1685139..610d4282175 100644 --- a/clients/client/java/src/test/java/sh/ory/model/CreateProjectInvitesResponseTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/CreateProjectInvitesResponseTest.java @@ -2,7 +2,7 @@ * Ory APIs * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6aeead13c1d..92493d75e47 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b2813dd2510..1fc534c92b3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cd201e9f71a..e725ab3a4fd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 258c112e4f7..33fc2e28840 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eec4b98a39e..f9f6b7ab0a6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a27218ba1c8..f1ca39fb055 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 90ebc94a073..d27bf2c7475 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 354888df1a9..3ec0381b757 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 62f4b4ec846..802e5e5d7f5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0e447cb2f1d..cd447353d8b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6617e752e3f..4eeed738cca 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 20dab3fb9f9..213a820ecf2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2094aacc05f..e96d79dd2cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 28f7034f9db..38fc17cb753 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c9717f48d18..986fb4779ff 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d542971e0ea..571d53b69c6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 807a4d73bb5..d931967e1c8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8ea151cab0c..d9260c27494 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 28f5009a53e..87e897172ad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c4ec2af08d9..e852bd2db09 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 705313faa6a..61decaacd53 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d9b6a830b3d..992767a1427 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3d0b3ee4918..b192c0a71bd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 10f7a9327ce..204054b0fae 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 21d3fd4d9b2..4cf4c8dc431 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 32feece62d4..59ec041182a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9ddf6930a92..32ea26e6ad8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3c232998b60..ed0551dac67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 640a8dc3b3c..a168750c031 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4759706209f..09adf2fea9a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 74122629f2c..9531591ed3e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3ef7a6ff552..c895371a7f1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aa32f728c9b..b5a7de15c69 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 41cc81af309..762d910a59c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 30ca70388ac..70dbc96195a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 52b0d48d4f1..7c0c35ae849 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c034ae1b872..e04f537b204 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f0d83ba1e56..e3d00baccb9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d3df59fbe6a..7ddb8d16018 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2762667a78f..019e9a1fb55 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 180f164908b..3b52a289ccc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9497f50b050..1f98e165686 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 37cef17437e..2037bcbc891 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bd848a9fcf6..09d8c91a7d9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 40f0521090e..83c1a95a4f7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a7fdb7fb994..2dd20cf6694 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d872548cdec..5cdee0e7f91 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 850a94cb6ec..7fec7f971fe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fad7b97ec70..5de125158f3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2d2149a5154..c5d2574af67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bd6eb87b7d9..be853c92605 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -22,7 +22,6 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; -import org.openapitools.jackson.nullable.JsonNullable; import sh.ory.model.AuthenticatorAssuranceLevel; import sh.ory.model.IdentityCredentialsType; import sh.ory.model.OAuth2LoginRequest; 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 dc97848df3a..8cb31985d64 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 18f2aaa0c7a..b891b2454f7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 930a0fd3707..4dda689e4ad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9412dd3134c..f7681c4d92e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6c387d85638..3013c29554f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b739f5b016f..d22eefc549e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 839f15f48ec..5d9c219de81 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a1b44c9ef38..deffe3905cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 79752d9876a..3fa9cebbeb7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 95f3e5cf88f..b8e72ebe138 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c9beaa01959..121983cffa4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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/NormalizedProjectRevisionThirdPartyProviderTest.java b/clients/client/java/src/test/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProviderTest.java index 7551ed08a84..2cc4576dc89 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 51d8e2ef4f8..22bb1b881fb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -100,6 +100,14 @@ public void subscriptionIdTest() { // TODO: test subscriptionId } + /** + * Test the property 'subscriptionPlan' + */ + @Test + public void subscriptionPlanTest() { + // TODO: test subscriptionPlan + } + /** * Test the property 'updatedAt' */ 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 09c63a7bc5e..b72c435fb0b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 43f360e59af..f777bed246c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ae917946355..8ebca7164e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0e4573d64d9..67be729509a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8a002d06fd8..365ab35861f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1d52fa26a9e..b8554e6828e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7ef6df4002e..67d3a53ab8e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 30a56d2c5eb..22ffd59c1b8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a2200d61ca2..95c011a127d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5dad3eafd47..f8340f586f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 18a2069cabd..da6b5ab03bd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d089370591e..fbedea8a5d2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e50f5d84a00..8faff195682 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dc6fc690278..f184deceab1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 670be674bc2..cf947654664 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 462c49a26b5..5d6c12c1bd5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 90b9dd355b7..3e12e8e74f0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 38e40e4d1da..9d2fcdc7c67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de7ebf688a7..46a1165b775 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0009ecfa05c..7b841d73875 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 347ded80436..67c1e902422 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ec8f060ce5d..5709006ac2d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 da3faafa07f..afa6165f00e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4671e98d2fe..7e585f3b4a8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 912de3bef0d..55402a224cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b04a2b81a5e..d8e37ef3bca 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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/ProjectInviteTest.java b/clients/client/java/src/test/java/sh/ory/model/ProjectInviteTest.java index 074333b95e6..dd7849dcef1 100644 --- a/clients/client/java/src/test/java/sh/ory/model/ProjectInviteTest.java +++ b/clients/client/java/src/test/java/sh/ory/model/ProjectInviteTest.java @@ -2,7 +2,7 @@ * Ory APIs * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 44f15c74f08..d9108787508 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -99,6 +99,14 @@ public void subscriptionIdTest() { // TODO: test subscriptionId } + /** + * Test the property 'subscriptionPlan' + */ + @Test + public void subscriptionPlanTest() { + // TODO: test subscriptionPlan + } + /** * Test the property 'updatedAt' */ 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 2f0f39aca36..456cbcaa110 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ee91f02e936..fab379f8837 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 46f28c10eff..f5505848a34 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6ae5dd89828..3dcef98f693 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2a49603f929..1202c873f02 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c2b6b54a17a..ccd9a7edd7e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0f305733c88..3f7a208baaa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f4959410998..ac5085c4499 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 41273691ec6..1b1f06aa938 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c0c9c4250e1..4903dbeec0f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f8ad6451728..bcd8625820d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 333a5c11670..49116141188 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -22,7 +22,6 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.time.OffsetDateTime; -import org.openapitools.jackson.nullable.JsonNullable; import sh.ory.model.IdentityCredentialsType; import sh.ory.model.OAuth2LoginRequest; import sh.ory.model.UiContainer; 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 4543a73e260..43acba6cad4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b0d250d7bb1..b9ca414923d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73d606cd6a2..64556a0e5b8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4086fa7f661..2f272536d67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 036c960428c..8e6ec825927 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3a51a763505..27224b053f2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 19e66ede432..2ef22646cc9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6448330dbc3..3de573bd6f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 57d53ac466e..a360955efd5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8cb2f71821f..8e083b25996 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 db5535673e1..22e932cc817 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 06abd2b38bb..a3cefaa116a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b8108340f9f..3ea11b6d7e2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 267f137e625..29c579c6d0d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 333a95ab913..ce633dd9c4a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ec6069267e1..8b86e1ee8ea 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 58114eea998..038cd7976df 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9c4542b0057..c9e07433663 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a4dff618130..e58253610a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1b961a98dd5..5cf30693a96 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b9344009bbd..7afebb7b3f6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4c968107f07..532cf19b33d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 26e75d0fcd8..ffeaa7c849f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4fccc09d460..dfacc9759f1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a01179a6597..e9ac02e0110 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4cef04cb388..7049d050a09 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 38655d63d14..661207e6a00 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 480cccd72b5..00970ae22cb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a6976084761..dab0e3046c4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b9ac7b8a28c..5778025a12f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4fb969d3cbd..e73abfe0097 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e6cf38271e9..0733f939b0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 61fbbf7bbd9..e7498954a91 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1c870e19bb1..d109d3b58da 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c3e959f5c04..f2e7d938011 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 05da97e4fc8..dbe8985e5ca 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 04de30539d7..8fbe0230890 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d7a695b05d1..bac45a63978 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1183cf80f8c..439a376970b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 954b411afe6..b347812b770 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 45f14f7be73..7e285b8482d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 598c869aa4a..9ddc9395940 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf9cfc04cad..5b0a1f9546a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2cab381130b..b3e201b519f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6bfaf000c32..3e5687f14c8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ce70c24bbc1..a916a1eaff3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6d080513531..1068aa9f919 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2c31aca6dba..121bfc61ef0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 14fddb46278..b6562adf1d9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c4fa1994035..fa0b6725d31 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 859f2ff42ba..0f74bcbb7a1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 48d31de5d18..a15e3568a68 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 79f8306f219..bf39055439a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0a33a5d945d..0f81f6d9d3a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8a78f0f1a84..d24efade620 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5d1b16cc4c0..a7964f79ab5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fbbcda5e036..021eee71858 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 17d48dfb680..7e0a52cdcd8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3457346acd9..edf6458e45a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9308f3c8f88..64c24528281 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5d7062465c0..84680ce146e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 23af9dea89b..8bf17220d54 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 05d946aa0d5..7b167fbce9b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9a328f39f2d..c9dd9e677b2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 50b9a17def8..42d28cf13e6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fa577fbdce9..0ad060b6552 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 43947d059e6..9cea4ab1d29 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3b632393ca3..8659852cfd7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bcb04988f09..7a80d4360e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 499d02f5e15..1a38e3803f3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 84db0d668a6..2ffb68e7c62 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 45a15d0e516..237793e4295 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e2a63c8498a..5713ed42b02 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a172af70aa4..9b76f12ce0f 100644 --- a/clients/client/php/README.md +++ b/clients/client/php/README.md @@ -447,5 +447,5 @@ support@ory.sh This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: `v1.1.39` +- API version: `v1.1.39-alpha.0` - Build package: `org.openapitools.codegen.languages.PhpClientCodegen` diff --git a/clients/client/php/composer.lock b/clients/client/php/composer.lock index ad89d734d52..2f13e222e96 100644 --- a/clients/client/php/composer.lock +++ b/clients/client/php/composer.lock @@ -1059,16 +1059,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.15.5", + "version": "v4.16.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e" + "reference": "19526a33fb561ef417e822e85f08a00db4059c17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/11e2663a5bc9db5d714eedb4277ee300403b4a9e", - "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17", + "reference": "19526a33fb561ef417e822e85f08a00db4059c17", "shasum": "" }, "require": { @@ -1107,7 +1107,7 @@ "parser", "php" ], - "time": "2023-05-19T20:20:00+00:00" + "time": "2023-06-25T14:52:30+00:00" }, { "name": "phar-io/manifest", @@ -2817,16 +2817,16 @@ }, { "name": "symfony/filesystem", - "version": "v5.4.23", + "version": "v5.4.25", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b2f79d86cd9e7de0fff6d03baa80eaed7a5f38b5" + "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b2f79d86cd9e7de0fff6d03baa80eaed7a5f38b5", - "reference": "b2f79d86cd9e7de0fff6d03baa80eaed7a5f38b5", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/0ce3a62c9579a53358d3a7eb6b3dfb79789a6364", + "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364", "shasum": "" }, "require": { @@ -2860,7 +2860,7 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2023-03-02T11:38:35+00:00" + "time": "2023-05-31T13:04:02+00:00" }, { "name": "symfony/finder", diff --git a/clients/client/php/docs/Api/FrontendApi.md b/clients/client/php/docs/Api/FrontendApi.md index 326eee0ab7d..830577a7c4b 100644 --- a/clients/client/php/docs/Api/FrontendApi.md +++ b/clients/client/php/docs/Api/FrontendApi.md @@ -103,7 +103,7 @@ No authorization required ## `createBrowserLogoutFlow()` ```php -createBrowserLogoutFlow($cookie): \Ory\Client\Model\LogoutFlow +createBrowserLogoutFlow($cookie, $returnTo): \Ory\Client\Model\LogoutFlow ``` Create a Logout URL for Browsers @@ -124,9 +124,10 @@ $apiInstance = new Ory\Client\Api\FrontendApi( new GuzzleHttp\Client() ); $cookie = 'cookie_example'; // string | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. +$returnTo = 'returnTo_example'; // string | Return to URL The URL to which the browser should be redirected to after the logout has been performed. try { - $result = $apiInstance->createBrowserLogoutFlow($cookie); + $result = $apiInstance->createBrowserLogoutFlow($cookie, $returnTo); print_r($result); } catch (Exception $e) { echo 'Exception when calling FrontendApi->createBrowserLogoutFlow: ', $e->getMessage(), PHP_EOL; @@ -138,6 +139,7 @@ try { Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **cookie** | **string**| HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | [optional] + **returnTo** | **string**| Return to URL The URL to which the browser should be redirected to after the logout has been performed. | [optional] ### Return type diff --git a/clients/client/php/docs/Api/IdentityApi.md b/clients/client/php/docs/Api/IdentityApi.md index fb89e2eb114..830cb7b2618 100644 --- a/clients/client/php/docs/Api/IdentityApi.md +++ b/clients/client/php/docs/Api/IdentityApi.md @@ -326,7 +326,7 @@ void (empty response body) ## `deleteIdentityCredentials()` ```php -deleteIdentityCredentials($id, $type): \Ory\Client\Model\Identity +deleteIdentityCredentials($id, $type) ``` Delete a credential for a specific identity @@ -354,8 +354,7 @@ $id = 'id_example'; // string | ID is the identity's ID. $type = 'type_example'; // string | Type is the credential's Type. One of totp, webauthn, lookup try { - $result = $apiInstance->deleteIdentityCredentials($id, $type); - print_r($result); + $apiInstance->deleteIdentityCredentials($id, $type); } catch (Exception $e) { echo 'Exception when calling IdentityApi->deleteIdentityCredentials: ', $e->getMessage(), PHP_EOL; } @@ -370,7 +369,7 @@ Name | Type | Description | Notes ### Return type -[**\Ory\Client\Model\Identity**](../Model/Identity.md) +void (empty response body) ### Authorization diff --git a/clients/client/php/docs/Model/LoginFlow.md b/clients/client/php/docs/Model/LoginFlow.md index 32ccb8b3418..80eaef21c67 100644 --- a/clients/client/php/docs/Model/LoginFlow.md +++ b/clients/client/php/docs/Model/LoginFlow.md @@ -9,7 +9,7 @@ Name | Type | Description | Notes **expiresAt** | **\DateTime** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **id** | **string** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id> | **issuedAt** | **\DateTime** | IssuedAt is the time (UTC) when the flow started. | -**oauth2LoginChallenge** | **string** | | [optional] +**oauth2LoginChallenge** | **string** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2LoginRequest** | [**\Ory\Client\Model\OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **refresh** | **bool** | Refresh stores whether this login flow should enforce re-authentication. | [optional] **requestUrl** | **string** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | diff --git a/clients/client/php/docs/Model/NormalizedProject.md b/clients/client/php/docs/Model/NormalizedProject.md index 4d91824c229..ce5f9c511ef 100644 --- a/clients/client/php/docs/Model/NormalizedProject.md +++ b/clients/client/php/docs/Model/NormalizedProject.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **slug** | **string** | The project's slug | [readonly] **state** | **string** | The state of the project. running Running halted Halted deleted Deleted | [readonly] **subscriptionId** | **string** | | [optional] +**subscriptionPlan** | **string** | | [optional] **updatedAt** | **\DateTime** | Last Time Project was Updated | [readonly] [[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/clients/client/php/docs/Model/ProjectBranding.md b/clients/client/php/docs/Model/ProjectBranding.md index 8d709da7f5a..bf969c64d40 100644 --- a/clients/client/php/docs/Model/ProjectBranding.md +++ b/clients/client/php/docs/Model/ProjectBranding.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **defaultTheme** | [**\Ory\Client\Model\ProjectBrandingTheme**](ProjectBrandingTheme.md) | | **id** | **string** | The customization ID. | [readonly] **projectId** | **string** | The Project's ID this customization is associated with | -**themes** | [**\Ory\Client\Model\ProjectBrandingTheme[]**](ProjectBrandingTheme.md) | The Project Branding Themes | +**themes** | [**\Ory\Client\Model\ProjectBrandingTheme[]**](ProjectBrandingTheme.md) | | **updatedAt** | **\DateTime** | Last Time Branding was Updated | [readonly] [[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/clients/client/php/docs/Model/ProjectMetadata.md b/clients/client/php/docs/Model/ProjectMetadata.md index f35ae67973f..34698f753df 100644 --- a/clients/client/php/docs/Model/ProjectMetadata.md +++ b/clients/client/php/docs/Model/ProjectMetadata.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **slug** | **string** | The project's slug | [optional] [readonly] **state** | **string** | The state of the project. running Running halted Halted deleted Deleted | **subscriptionId** | **string** | | [optional] +**subscriptionPlan** | **string** | | [optional] **updatedAt** | **\DateTime** | Last Time Project was Updated | [[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/clients/client/php/docs/Model/RegistrationFlow.md b/clients/client/php/docs/Model/RegistrationFlow.md index f5d6761acc4..99cb3512e5d 100644 --- a/clients/client/php/docs/Model/RegistrationFlow.md +++ b/clients/client/php/docs/Model/RegistrationFlow.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **expiresAt** | **\DateTime** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **id** | **string** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id> | **issuedAt** | **\DateTime** | IssuedAt is the time (UTC) when the flow occurred. | -**oauth2LoginChallenge** | **string** | | [optional] +**oauth2LoginChallenge** | **string** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2LoginRequest** | [**\Ory\Client\Model\OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **requestUrl** | **string** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | **returnTo** | **string** | ReturnTo contains the requested return_to URL. | [optional] diff --git a/clients/client/php/lib/Api/CourierApi.php b/clients/client/php/lib/Api/CourierApi.php index 272e88d1c54..143a21c40c0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7cb0dbb6b85..f38c405529c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -487,14 +487,15 @@ public function createBrowserLoginFlowRequest($refresh = null, $aal = null, $ret * Create a Logout URL for Browsers * * @param string $cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param string $returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * * @throws \Ory\Client\ApiException on non-2xx response * @throws \InvalidArgumentException - * @return \Ory\Client\Model\LogoutFlow|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric + * @return \Ory\Client\Model\LogoutFlow|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric */ - public function createBrowserLogoutFlow($cookie = null) + public function createBrowserLogoutFlow($cookie = null, $returnTo = null) { - list($response) = $this->createBrowserLogoutFlowWithHttpInfo($cookie); + list($response) = $this->createBrowserLogoutFlowWithHttpInfo($cookie, $returnTo); return $response; } @@ -504,14 +505,15 @@ public function createBrowserLogoutFlow($cookie = null) * Create a Logout URL for Browsers * * @param string $cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param string $returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * * @throws \Ory\Client\ApiException on non-2xx response * @throws \InvalidArgumentException - * @return array of \Ory\Client\Model\LogoutFlow|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric, HTTP status code, HTTP response headers (array of strings) + * @return array of \Ory\Client\Model\LogoutFlow|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric, HTTP status code, HTTP response headers (array of strings) */ - public function createBrowserLogoutFlowWithHttpInfo($cookie = null) + public function createBrowserLogoutFlowWithHttpInfo($cookie = null, $returnTo = null) { - $request = $this->createBrowserLogoutFlowRequest($cookie); + $request = $this->createBrowserLogoutFlowRequest($cookie, $returnTo); try { $options = $this->createHttpClientOption(); @@ -561,6 +563,18 @@ public function createBrowserLogoutFlowWithHttpInfo($cookie = null) $response->getStatusCode(), $response->getHeaders() ]; + case 400: + if ('\Ory\Client\Model\ErrorGeneric' === '\SplFileObject') { + $content = $response->getBody(); //stream goes to serializer + } else { + $content = (string) $response->getBody(); + } + + return [ + ObjectSerializer::deserialize($content, '\Ory\Client\Model\ErrorGeneric', []), + $response->getStatusCode(), + $response->getHeaders() + ]; case 401: if ('\Ory\Client\Model\ErrorGeneric' === '\SplFileObject') { $content = $response->getBody(); //stream goes to serializer @@ -610,6 +624,14 @@ public function createBrowserLogoutFlowWithHttpInfo($cookie = null) ); $e->setResponseObject($data); break; + case 400: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Ory\Client\Model\ErrorGeneric', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; case 401: $data = ObjectSerializer::deserialize( $e->getResponseBody(), @@ -637,13 +659,14 @@ public function createBrowserLogoutFlowWithHttpInfo($cookie = null) * Create a Logout URL for Browsers * * @param string $cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param string $returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function createBrowserLogoutFlowAsync($cookie = null) + public function createBrowserLogoutFlowAsync($cookie = null, $returnTo = null) { - return $this->createBrowserLogoutFlowAsyncWithHttpInfo($cookie) + return $this->createBrowserLogoutFlowAsyncWithHttpInfo($cookie, $returnTo) ->then( function ($response) { return $response[0]; @@ -657,14 +680,15 @@ function ($response) { * Create a Logout URL for Browsers * * @param string $cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param string $returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function createBrowserLogoutFlowAsyncWithHttpInfo($cookie = null) + public function createBrowserLogoutFlowAsyncWithHttpInfo($cookie = null, $returnTo = null) { $returnType = '\Ory\Client\Model\LogoutFlow'; - $request = $this->createBrowserLogoutFlowRequest($cookie); + $request = $this->createBrowserLogoutFlowRequest($cookie, $returnTo); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -703,11 +727,12 @@ function ($exception) { * Create request for operation 'createBrowserLogoutFlow' * * @param string $cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + * @param string $returnTo Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function createBrowserLogoutFlowRequest($cookie = null) + public function createBrowserLogoutFlowRequest($cookie = null, $returnTo = null) { $resourcePath = '/self-service/logout/browser'; @@ -717,6 +742,17 @@ public function createBrowserLogoutFlowRequest($cookie = null) $httpBody = ''; $multipart = false; + // query params + if ($returnTo !== null) { + if('form' === 'form' && is_array($returnTo)) { + foreach($returnTo as $key => $value) { + $queryParams[$key] = $value; + } + } + else { + $queryParams['return_to'] = $returnTo; + } + } // header params if ($cookie !== null) { diff --git a/clients/client/php/lib/Api/IdentityApi.php b/clients/client/php/lib/Api/IdentityApi.php index e75636fd511..5f7c4c0803d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -1680,12 +1680,11 @@ public function deleteIdentityRequest($id) * * @throws \Ory\Client\ApiException on non-2xx response * @throws \InvalidArgumentException - * @return \Ory\Client\Model\Identity|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric + * @return void */ public function deleteIdentityCredentials($id, $type) { - list($response) = $this->deleteIdentityCredentialsWithHttpInfo($id, $type); - return $response; + $this->deleteIdentityCredentialsWithHttpInfo($id, $type); } /** @@ -1698,7 +1697,7 @@ public function deleteIdentityCredentials($id, $type) * * @throws \Ory\Client\ApiException on non-2xx response * @throws \InvalidArgumentException - * @return array of \Ory\Client\Model\Identity|\Ory\Client\Model\ErrorGeneric|\Ory\Client\Model\ErrorGeneric, HTTP status code, HTTP response headers (array of strings) + * @return array of null, HTTP status code, HTTP response headers (array of strings) */ public function deleteIdentityCredentialsWithHttpInfo($id, $type) { @@ -1739,68 +1738,10 @@ public function deleteIdentityCredentialsWithHttpInfo($id, $type) ); } - switch($statusCode) { - case 200: - if ('\Ory\Client\Model\Identity' === '\SplFileObject') { - $content = $response->getBody(); //stream goes to serializer - } else { - $content = (string) $response->getBody(); - } - - return [ - ObjectSerializer::deserialize($content, '\Ory\Client\Model\Identity', []), - $response->getStatusCode(), - $response->getHeaders() - ]; - case 404: - if ('\Ory\Client\Model\ErrorGeneric' === '\SplFileObject') { - $content = $response->getBody(); //stream goes to serializer - } else { - $content = (string) $response->getBody(); - } - - return [ - ObjectSerializer::deserialize($content, '\Ory\Client\Model\ErrorGeneric', []), - $response->getStatusCode(), - $response->getHeaders() - ]; - default: - if ('\Ory\Client\Model\ErrorGeneric' === '\SplFileObject') { - $content = $response->getBody(); //stream goes to serializer - } else { - $content = (string) $response->getBody(); - } - - return [ - ObjectSerializer::deserialize($content, '\Ory\Client\Model\ErrorGeneric', []), - $response->getStatusCode(), - $response->getHeaders() - ]; - } - - $returnType = '\Ory\Client\Model\Identity'; - if ($returnType === '\SplFileObject') { - $content = $response->getBody(); //stream goes to serializer - } else { - $content = (string) $response->getBody(); - } - - return [ - ObjectSerializer::deserialize($content, $returnType, []), - $response->getStatusCode(), - $response->getHeaders() - ]; + return [null, $statusCode, $response->getHeaders()]; } catch (ApiException $e) { switch ($e->getCode()) { - case 200: - $data = ObjectSerializer::deserialize( - $e->getResponseBody(), - '\Ory\Client\Model\Identity', - $e->getResponseHeaders() - ); - $e->setResponseObject($data); - break; case 404: $data = ObjectSerializer::deserialize( $e->getResponseBody(), @@ -1856,24 +1797,14 @@ function ($response) { */ public function deleteIdentityCredentialsAsyncWithHttpInfo($id, $type) { - $returnType = '\Ory\Client\Model\Identity'; + $returnType = ''; $request = $this->deleteIdentityCredentialsRequest($id, $type); return $this->client ->sendAsync($request, $this->createHttpClientOption()) ->then( function ($response) use ($returnType) { - if ($returnType === '\SplFileObject') { - $content = $response->getBody(); //stream goes to serializer - } else { - $content = (string) $response->getBody(); - } - - return [ - ObjectSerializer::deserialize($content, $returnType, []), - $response->getStatusCode(), - $response->getHeaders() - ]; + return [null, $response->getStatusCode(), $response->getHeaders()]; }, function ($exception) { $response = $exception->getResponse(); diff --git a/clients/client/php/lib/Api/JwkApi.php b/clients/client/php/lib/Api/JwkApi.php index ed142c79363..fdd1ac0f8d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c7e3b875e4b..361930b48d3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6d1f514a4ba..7fc38869f74 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 af22a3f6c4c..2051db89741 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9901a902b7e..01a7afeea02 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e744ca36cdf..3348628c8d1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 225780c3f54..2b88cd1da2c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a2555a400c8..ed4deafeff3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 607b5829893..348e75181c5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 55bc5393665..343495da34e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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.39' . PHP_EOL; + $report .= ' The version of the OpenAPI document: v1.1.39-alpha.0' . 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 9a90a5efb9b..33f615e5111 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 947219f17f4..596a68d7b0d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a48649597e3..c9f50493183 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 446f7975c7b..2fc898a0dec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3b81166781d..6241b5388e1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cecb7e45fb4..424d05fd164 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4a2019f0281..be23d309a63 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b78e03e825e..e9953b3c4d5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 87abe7c7dbc..7cbf451da22 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3d932050d0c..6dcd0d48dbb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c32201a9688..e2a645c96ee 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 38c2ea944b3..8df4bf77260 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 31fb52b14f3..3a911ad056b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6d9ae7fda62..4ae07bf017c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f81912f7d52..bde1e903545 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ec9d9d4b572..dbb4933ddf3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0c5732138e1..0fa50ff1ae2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a6dc34eecd5..7ac6e328bd6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 58184c4fee6..128a65e50eb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2d385b95e4b..580a022838d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 31aabbd206b..8f1df4691b7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateProjectInvite.php b/clients/client/php/lib/Model/CreateProjectInvite.php index f6a954932b6..2ac2d902646 100644 --- a/clients/client/php/lib/Model/CreateProjectInvite.php +++ b/clients/client/php/lib/Model/CreateProjectInvite.php @@ -15,7 +15,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/CreateProjectInvitesResponse.php b/clients/client/php/lib/Model/CreateProjectInvitesResponse.php index 73f0ed849f7..19aacceb055 100644 --- a/clients/client/php/lib/Model/CreateProjectInvitesResponse.php +++ b/clients/client/php/lib/Model/CreateProjectInvitesResponse.php @@ -15,7 +15,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 efbf137d9d2..bdfdd86baf6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 58a951744b3..16916e5c165 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 314ab9a5d9c..63ad405f020 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b45b1f381b4..abdbc2d71a2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 83189c303a2..69804cac623 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bbee033ae32..91d11f1f790 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eba52061258..2a7ffb773ec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94827208f26..2765ed75d85 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f3c8945fcfc..6e56c94810d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2a3aa6b3442..c127be19815 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7f06e8daaa0..b46aa7e536e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d49c22964e8..f6c638444ca 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ce0b778e00f..563483e5d11 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2990c475afa..a2938dfea55 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1e6d1df4ec6..86c5ae98507 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 13b20714b58..0622b339482 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7715bb5e1b1..6c293709a7f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 af5fae7f986..94b34cd6dad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 25323bc1cf3..bde8161a14e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0d4732e40c1..dcac47181e3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 39300a8e99b..e46c56f4efc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ddcc38126a1..30c5b610b68 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5c2c75f45c4..1bcb41307e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c19641248cf..3c211af9856 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 db30894e866..2a9e6205394 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6eb1c49d447..e3153f1fa9b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 880180d496a..c17a0e04c73 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e5d995156b6..1e85893cdfc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e4d92184254..a82bd6e15e3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7cb53aff5d1..6af8cd9ad2c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bfca5f46351..c2c8233fcd9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8890e204095..2c404b97774 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ace6c932cf6..a1ee09e3e96 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 95a4fb8826f..f43b643135f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5ee71e1afbc..7f4d493426c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4db83fe6d36..1ee5c556adb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 50eb30a0319..c282c007532 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6ada16742a0..75484cb64a0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6d6dfc74ca4..b72c63082b6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c4708dec3e3..e651762ef46 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9e5d08ae688..cab54b57ad9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 962c06fbbb5..4db3c1abbcc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7f2acdcd246..3b22ab32fb6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3832d74b638..90203234720 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6aa4e40cdab..35887569475 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c2f124ab70b..afa585f762f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 26b02f50e42..f40ed69b2fa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 87f29c6aa60..0cae8325e0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 23f64099708..2989ffeccc0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 59fdc5227fc..47ef0470994 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a7f30ef626..7a41b64235b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cb9192cb64f..e3c44b6627a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -91,7 +91,7 @@ class LoginFlow implements ModelInterface, ArrayAccess, \JsonSerializable 'expiresAt' => 'date-time', 'id' => 'uuid', 'issuedAt' => 'date-time', - 'oauth2LoginChallenge' => 'uuid4', + 'oauth2LoginChallenge' => null, 'oauth2LoginRequest' => null, 'refresh' => null, 'requestUrl' => null, @@ -442,7 +442,7 @@ public function getOauth2LoginChallenge() /** * Sets oauth2LoginChallenge * - * @param string|null $oauth2LoginChallenge oauth2LoginChallenge + * @param string|null $oauth2LoginChallenge Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. * * @return self */ diff --git a/clients/client/php/lib/Model/LogoutFlow.php b/clients/client/php/lib/Model/LogoutFlow.php index ee9203580be..022a13b9ccc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 74659c3e3d9..68c080712e2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8d409277b03..f51f8ca5c08 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 168bbc4be3a..58090f47a66 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b50ac6cabad..37a4edb3987 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a63584a2b42..3e04310f52f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bd8a40d2a2a..c333c2c3926 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c4b51d294e0..67e77c5b992 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a30a5844d2..10899c31920 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 82018f3e37d..e6374a7d690 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -67,6 +67,7 @@ class NormalizedProject implements ModelInterface, ArrayAccess, \JsonSerializabl 'slug' => 'string', 'state' => 'string', 'subscriptionId' => 'string', + 'subscriptionPlan' => 'string', 'updatedAt' => '\DateTime' ]; @@ -85,6 +86,7 @@ class NormalizedProject implements ModelInterface, ArrayAccess, \JsonSerializabl 'slug' => null, 'state' => null, 'subscriptionId' => 'uuid4', + 'subscriptionPlan' => null, 'updatedAt' => 'date-time' ]; @@ -122,6 +124,7 @@ public static function openAPIFormats() 'slug' => 'slug', 'state' => 'state', 'subscriptionId' => 'subscription_id', + 'subscriptionPlan' => 'subscription_plan', 'updatedAt' => 'updated_at' ]; @@ -138,6 +141,7 @@ public static function openAPIFormats() 'slug' => 'setSlug', 'state' => 'setState', 'subscriptionId' => 'setSubscriptionId', + 'subscriptionPlan' => 'setSubscriptionPlan', 'updatedAt' => 'setUpdatedAt' ]; @@ -154,6 +158,7 @@ public static function openAPIFormats() 'slug' => 'getSlug', 'state' => 'getState', 'subscriptionId' => 'getSubscriptionId', + 'subscriptionPlan' => 'getSubscriptionPlan', 'updatedAt' => 'getUpdatedAt' ]; @@ -238,6 +243,7 @@ public function __construct(array $data = null) $this->container['slug'] = $data['slug'] ?? null; $this->container['state'] = $data['state'] ?? null; $this->container['subscriptionId'] = $data['subscriptionId'] ?? null; + $this->container['subscriptionPlan'] = $data['subscriptionPlan'] ?? null; $this->container['updatedAt'] = $data['updatedAt'] ?? null; } @@ -473,6 +479,30 @@ public function setSubscriptionId($subscriptionId) return $this; } + /** + * Gets subscriptionPlan + * + * @return string|null + */ + public function getSubscriptionPlan() + { + return $this->container['subscriptionPlan']; + } + + /** + * Sets subscriptionPlan + * + * @param string|null $subscriptionPlan subscriptionPlan + * + * @return self + */ + public function setSubscriptionPlan($subscriptionPlan) + { + $this->container['subscriptionPlan'] = $subscriptionPlan; + + return $this; + } + /** * Gets updatedAt * diff --git a/clients/client/php/lib/Model/NormalizedProjectRevision.php b/clients/client/php/lib/Model/NormalizedProjectRevision.php index 043f3160975..7096d8145be 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/NormalizedProjectRevisionHook.php b/clients/client/php/lib/Model/NormalizedProjectRevisionHook.php index 0beb684ef06..e70e2a5d58b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2cf55b043e9..7a56b45ad98 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 775556fe837..1c309f24b93 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e7fa337a386..4a79d37c2f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 68337faf9f6..bcdd36e7fbd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 37b61a162de..18baa4488f9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1c04c3cc695..87c84d63408 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7505e918a0d..68f35491e0c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e9d63e5461d..bce110a35ab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3e4fb4f7449..bd0cafa5c03 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f7c4672efe3..41d73fa16c7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8091fe0e9a5..774f8af67f5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8914cdd0574..2a21a9b7fad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d9cb02ed86a..bc747c32bc1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f27c150a158..c6104d8eb04 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0e47ced3af5..b5b05dca7a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0ffca19533e..2f2f13bf919 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 949f0213ef3..b797582a64d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a8c360a86e8..1f916b01c50 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0be2fd7c365..2e271be596c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 080a14796b3..1ad804b261f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fdc0b127cf7..51be42cb9a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4475dada5fc..39dc9c8a863 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e0a6cba4548..0e0f653dd8a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 159e31843f1..7d615eccc3a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 90532e67489..7f1a2a6867f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 44c7933c509..9dde363c758 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -36,7 +36,6 @@ * ProjectBranding Class Doc Comment * * @category Class - * @description The Project Branding * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech @@ -364,7 +363,7 @@ public function getThemes() /** * Sets themes * - * @param \Ory\Client\Model\ProjectBrandingTheme[] $themes The Project Branding Themes + * @param \Ory\Client\Model\ProjectBrandingTheme[] $themes themes * * @return self */ diff --git a/clients/client/php/lib/Model/ProjectBrandingColors.php b/clients/client/php/lib/Model/ProjectBrandingColors.php index c5fda3b9253..4730546b5b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -36,7 +36,6 @@ * ProjectBrandingColors Class Doc Comment * * @category Class - * @description The Project Branding Colors * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/lib/Model/ProjectBrandingTheme.php b/clients/client/php/lib/Model/ProjectBrandingTheme.php index ac36f7a44c5..c14e45f71c0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -36,7 +36,6 @@ * ProjectBrandingTheme Class Doc Comment * * @category Class - * @description The Project Branding Theme * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/lib/Model/ProjectHost.php b/clients/client/php/lib/Model/ProjectHost.php index 4df89d00da4..53cd6ee488a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/lib/Model/ProjectInvite.php b/clients/client/php/lib/Model/ProjectInvite.php index c7c845ac977..88d1d60ac84 100644 --- a/clients/client/php/lib/Model/ProjectInvite.php +++ b/clients/client/php/lib/Model/ProjectInvite.php @@ -15,7 +15,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b32b6e47557..e1af677286f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -67,6 +67,7 @@ class ProjectMetadata implements ModelInterface, ArrayAccess, \JsonSerializable 'slug' => 'string', 'state' => 'string', 'subscriptionId' => 'string', + 'subscriptionPlan' => 'string', 'updatedAt' => '\DateTime' ]; @@ -85,6 +86,7 @@ class ProjectMetadata implements ModelInterface, ArrayAccess, \JsonSerializable 'slug' => null, 'state' => null, 'subscriptionId' => 'uuid4', + 'subscriptionPlan' => null, 'updatedAt' => 'date-time' ]; @@ -122,6 +124,7 @@ public static function openAPIFormats() 'slug' => 'slug', 'state' => 'state', 'subscriptionId' => 'subscription_id', + 'subscriptionPlan' => 'subscription_plan', 'updatedAt' => 'updated_at' ]; @@ -138,6 +141,7 @@ public static function openAPIFormats() 'slug' => 'setSlug', 'state' => 'setState', 'subscriptionId' => 'setSubscriptionId', + 'subscriptionPlan' => 'setSubscriptionPlan', 'updatedAt' => 'setUpdatedAt' ]; @@ -154,6 +158,7 @@ public static function openAPIFormats() 'slug' => 'getSlug', 'state' => 'getState', 'subscriptionId' => 'getSubscriptionId', + 'subscriptionPlan' => 'getSubscriptionPlan', 'updatedAt' => 'getUpdatedAt' ]; @@ -238,6 +243,7 @@ public function __construct(array $data = null) $this->container['slug'] = $data['slug'] ?? null; $this->container['state'] = $data['state'] ?? null; $this->container['subscriptionId'] = $data['subscriptionId'] ?? null; + $this->container['subscriptionPlan'] = $data['subscriptionPlan'] ?? null; $this->container['updatedAt'] = $data['updatedAt'] ?? null; } @@ -470,6 +476,30 @@ public function setSubscriptionId($subscriptionId) return $this; } + /** + * Gets subscriptionPlan + * + * @return string|null + */ + public function getSubscriptionPlan() + { + return $this->container['subscriptionPlan']; + } + + /** + * Sets subscriptionPlan + * + * @param string|null $subscriptionPlan subscriptionPlan + * + * @return self + */ + public function setSubscriptionPlan($subscriptionPlan) + { + $this->container['subscriptionPlan'] = $subscriptionPlan; + + return $this; + } + /** * Gets updatedAt * diff --git a/clients/client/php/lib/Model/ProjectServiceIdentity.php b/clients/client/php/lib/Model/ProjectServiceIdentity.php index 3c79b81f442..5f8aaeb9803 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8882b1dcf9e..1a71d294ad2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ba6ec732cba..6cc467eab5b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fe7d9498b55..9bf5142a4f6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c8c6c8f45f8..4f3ac58f907 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ee57ce8cd2a..30d2b926a9b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6a1cdb6bc9f..c0f82d97f4f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b48e7e4a303..1515ee21da9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 570cb79d88d..0077014369c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8686af8a7c4..fd10b4bb052 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7205d23e26d..56dab3d9f59 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -86,7 +86,7 @@ class RegistrationFlow implements ModelInterface, ArrayAccess, \JsonSerializable 'expiresAt' => 'date-time', 'id' => 'uuid', 'issuedAt' => 'date-time', - 'oauth2LoginChallenge' => 'uuid4', + 'oauth2LoginChallenge' => null, 'oauth2LoginRequest' => null, 'requestUrl' => null, 'returnTo' => null, @@ -399,7 +399,7 @@ public function getOauth2LoginChallenge() /** * Sets oauth2LoginChallenge * - * @param string|null $oauth2LoginChallenge oauth2LoginChallenge + * @param string|null $oauth2LoginChallenge Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. * * @return self */ diff --git a/clients/client/php/lib/Model/RejectOAuth2Request.php b/clients/client/php/lib/Model/RejectOAuth2Request.php index 839c3c9b80b..712b61a0e49 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 603e3d67628..f6cc446fc0a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5fdb47dfa7f..2e8ec0df148 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4cef08cfe5c..edc7bf5841d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 779d615ec64..36013bb18cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9a6c5b024fa..df01e42e62e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 15f1091ece9..8e549cb8d63 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e70bfe575c0..f340b9738fa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d74bb551d3a..ea4420c3ce2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 21bfc846d88..7666b7d3e6b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1f00c3f4d05..b390d0084d9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 633b265d038..7b123a6b224 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf54c307376..5f0403c29b5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2c3006ce36b..598dda1a2f7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d384226fb3c..606b561a703 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -36,7 +36,6 @@ * SetProjectBrandingThemeBody Class Doc Comment * * @category Class - * @description Set Project Branding Theme Request Parameters * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/lib/Model/SettingsFlow.php b/clients/client/php/lib/Model/SettingsFlow.php index a94b8d583c8..e822f1fb576 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 53827cb12da..79f6f252269 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b1b352d1255..c7f41407af8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4204f0e8d98..f1f8e0ffbac 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b8dda939db9..293118c8e04 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cb68214b84b..642b0cc8b77 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 66f5e1a40da..3f67e55dad0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2aa705e7a91..c5041c1873e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f24ba4e0bcb..fab4e87a4a6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 34fee9b4407..03769de6308 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6dc3ff1d9b1..24d38b37009 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8d3dd7ab583..5e947537a7c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7d3fa8d8442..6dd38abb874 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a8bdab1597..0f5f3f34b72 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 55c692b736b..ad422bac8c2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a034f11f3a4..2bc3144d076 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 21ea7d81bd5..56a130248b0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7cdd21f6b12..0437ead68a0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1c0374f681f..3c36d92107b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9f9bf3447a6..9cb36ee7f12 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d62a7888ba1..91a306189b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 27ea278e3e7..1714917b8ef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 83a146a6e0b..db48f6c4ae7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8954ee78dd9..eaf3143f42f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 69fcc3d3858..b13f85ba904 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1c70cea930c..da185570542 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1b532b563ef..4829ec8a879 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9f0269d0d89..e1e9080e5f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 15fb0884f73..0ba0a595c1e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 12262063ab1..8a020c60448 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f2b5de9823e..22b9e68d261 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8ac36800c58..631d3bd3a88 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7206c66689a..de9faf0f694 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0969b3af25e..dd86901eedb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e9e4b4ff5b0..9e9b324b2ab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 202b4c8ece8..aaa810ae28d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5934d35b33f..98557e65ac8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 088be3a0efa..a559c7379e2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2450307141c..90d20d6c788 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7804146eb38..525619aa866 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 84633d4f02d..4f62ee03df7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6ec1480a23e..d9eadae0e30 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 83fad457fd9..3680d4dbcd0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73ef65be8f8..cb64ff9b920 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3617d8bda7d..620ded66401 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3f3c92cea70..09f023d254a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f03656b0bcb..7a54d5778d8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0e5738827c9..ed8931788a6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 22c782e519f..9d331c4e7aa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2781f60b4d7..567db3d500f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9c744bb566d..0b7caaeec9a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 334eacb821a..1aacde05569 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 32d7d098a55..1fc2b40bb44 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 896115c8860..a652e50de5f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7402b32de64..213e21ce554 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cc5038771c4..6b2028c0835 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 fbbc1f5206d..8380467fc68 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 25d3e22e45f..2b0d774c182 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b62fb006238..de18d119b8d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 af6ef282869..fb35e9f5170 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 553beb0a157..095000b9d4a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1cd35fb06f6..19081a6d6e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 93ab5b37a50..eaa084fa154 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aed2ef86322..e92c8f3b654 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 efbfd1b49f4..9d4413e08d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 24769f2a246..674adcc38b4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0dbfa140709..f607982275f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f0799feec8a..2b26955c891 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a86745d0edd..d4b2736dd1b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5b8bf360e05..c4456c027a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7949a2e0de9..edfead2171f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 26ae9ceec38..3aec19e81e1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b523c688acb..45a5e889092 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9006ad2b9f2..0d46c740dd8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4ccdc5e52ce..281507d125b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c685dc6ee84..4d47e0810a6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94996017186..8d336bf5336 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4e2f7688aad..d5b79887655 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c93e6f57394..c046b7ca644 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9facf5727e0..804a0797f06 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b67d8efaf8a..eca08a00000 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a94e409994b..779747196e0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a5739007624..8328475500e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dbcb6be1bd0..1e3e4aa304c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6c57833995c..81073d107db 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 68283b99829..d70c6ba394a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bc3ec7943af..abdad3b4766 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c5d54d145a3..c351f0a194d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9c315b0adef..38dafe01411 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2d393df07a6..d6a74fa984a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateProjectInviteTest.php b/clients/client/php/test/Model/CreateProjectInviteTest.php index 8a4c0f6125e..cdc8599a3d2 100644 --- a/clients/client/php/test/Model/CreateProjectInviteTest.php +++ b/clients/client/php/test/Model/CreateProjectInviteTest.php @@ -15,7 +15,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/CreateProjectInvitesResponseTest.php b/clients/client/php/test/Model/CreateProjectInvitesResponseTest.php index b8d1a2525aa..76905e66f1f 100644 --- a/clients/client/php/test/Model/CreateProjectInvitesResponseTest.php +++ b/clients/client/php/test/Model/CreateProjectInvitesResponseTest.php @@ -15,7 +15,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dff8373f076..e2a771ae1dc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f6b67fc6128..5124d4f5b20 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e1bf6e50697..90cfd720728 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cf8699061d7..a089c78362f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a9d55407556..2fa689c0e99 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c59b6ad08d7..1818b23e64b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 154d4339972..199a6283d0f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5e196f6fe2d..9bd31d52c8b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b1c7375d4ab..2e432fddacb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cb3f01a3658..b9eaea8f899 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a2be5c452a9..3d78a6bc436 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 be2288b683c..9d41340cf30 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 18aee08b270..d4386dea934 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4406b03dc71..3c62eb1bf4b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2a101ea5c55..da878a4baef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6bc94def937..ad45f5140f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94eb9eee8f3..d127c04319a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 33a2fb21951..02479f6a85a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aa86a31b5d5..df360ddb63d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94fc160a7f8..d7ec8607035 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6e266b1f99f..38f992d2555 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ca799502ccd..e7bca158391 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 04b562d490c..f27f02308af 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b8f25bccaba..5f7af5be6aa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 76f4744439d..2d65d968d03 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7814001bb97..e48ff02f93f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 771c3f67e6a..8236c5dd836 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bbc2690e180..0afe1b26c55 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 68bbd607f0e..7dc0de72909 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0c530754d01..bb68613e9d3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3b62dabd610..1b3b2b8774e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 017ff93516e..39989d1c66e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 930ba888d04..5f1ba9a7890 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 22786ef29e4..08b7be19090 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6b14998646b..a40dfde75a7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1e6117f6cb2..74b3a30b78e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 59eb0d12e0a..76f991a06ab 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aa8025a522d..d884b0fcfe1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 adbd9dd39ba..c6203ab6de4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 277b4a24a32..318f5b8503e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0954bd8ec6e..15264c8cdfc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 95bb37a5cce..0ae0af2b13a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 82e227b0d15..4e9aeb86c1e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 09cccedccf8..c598545fa8d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7c443798e54..f7563635108 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8dd28715a7e..54b28608824 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e16094690e6..d0448930d70 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6a690b28502..6d609831429 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 25a6a4ffab4..768a1a27c28 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 505d062d1d0..a5b27d95da2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 52b84c241c6..faf13a71ec5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aa21079d910..32d4d08f1ec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aca9517d00a..792009a2039 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4f48bfca4ec..3d367f27459 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8aa1bb43214..a193bc988ec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 64007972c41..5fc52a27cbb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c72850e8ff9..19ab62525f6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2db58a67a4e..8390ce4dc80 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aae3e4774f9..36697e56c08 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e84401a61f4..469560656d0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 995b9d9d60c..bd0b9d20d3c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 790e500bab8..80cc05b64c6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8f8cf886382..72d3ea26342 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/NormalizedProjectRevisionThirdPartyProviderTest.php b/clients/client/php/test/Model/NormalizedProjectRevisionThirdPartyProviderTest.php index 0050b90f9ff..5593093b3c1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 77b13320f8a..62f0bee59de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -143,6 +143,15 @@ public function testPropertySubscriptionId() $this->markTestIncomplete('Not implemented'); } + /** + * Test attribute "subscriptionPlan" + */ + public function testPropertySubscriptionPlan() + { + // TODO: implement + $this->markTestIncomplete('Not implemented'); + } + /** * Test attribute "updatedAt" */ diff --git a/clients/client/php/test/Model/OAuth2ClientTest.php b/clients/client/php/test/Model/OAuth2ClientTest.php index b037761e2a0..aaf786f66a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a0282c912e3..09f3ab73599 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1afafb77f17..6e1e3a5ab1c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d0108308d0d..39bb0e20272 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 51169cfbb23..6fb81b428e2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1eb2b387c7a..63af75813f2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5f6a2eff48a..25bdc28c9f8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 02edac73445..5f19f514a52 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 72cef303f0d..fa35de13676 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c8644980c19..80136a622d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9f097025c3f..4a4261e321f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7b224beaf66..93e1c9824b8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 19969875fa8..17131c2f1c6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c48c5fcc42b..bd12d6e3b62 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 299bcde6e6a..21982cb2576 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d5245e5ce2b..44f624d08a1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 31cbb454c4e..fdde51849da 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6bcc5ce5ed9..221208724d9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 20be5d99c8a..f669960d586 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 653efba5773..2966ab86090 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 27968c46e84..59a968b4a08 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3d844d769d9..ba73778ada1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 857c2005471..45a2bbde9dc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -35,7 +35,7 @@ * ProjectBrandingColorsTest Class Doc Comment * * @category Class - * @description The Project Branding Colors + * @description ProjectBrandingColors * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/test/Model/ProjectBrandingTest.php b/clients/client/php/test/Model/ProjectBrandingTest.php index b0e9d29363c..e29579df6aa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -35,7 +35,7 @@ * ProjectBrandingTest Class Doc Comment * * @category Class - * @description The Project Branding + * @description ProjectBranding * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/test/Model/ProjectBrandingThemeTest.php b/clients/client/php/test/Model/ProjectBrandingThemeTest.php index 10dc68b40e5..db04636fc40 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -35,7 +35,7 @@ * ProjectBrandingThemeTest Class Doc Comment * * @category Class - * @description The Project Branding Theme + * @description ProjectBrandingTheme * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/test/Model/ProjectHostTest.php b/clients/client/php/test/Model/ProjectHostTest.php index 05ed1b32742..ca3262747f2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/php/test/Model/ProjectInviteTest.php b/clients/client/php/test/Model/ProjectInviteTest.php index 4b3b6a05694..ecefefc86d1 100644 --- a/clients/client/php/test/Model/ProjectInviteTest.php +++ b/clients/client/php/test/Model/ProjectInviteTest.php @@ -15,7 +15,7 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 81c7019458e..0ce8a770594 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -143,6 +143,15 @@ public function testPropertySubscriptionId() $this->markTestIncomplete('Not implemented'); } + /** + * Test attribute "subscriptionPlan" + */ + public function testPropertySubscriptionPlan() + { + // TODO: implement + $this->markTestIncomplete('Not implemented'); + } + /** * Test attribute "updatedAt" */ diff --git a/clients/client/php/test/Model/ProjectServiceIdentityTest.php b/clients/client/php/test/Model/ProjectServiceIdentityTest.php index 2fecd210a9e..2fe5b22cbc1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 525f1f34a28..fda3902da67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2711be3b024..c76b8998503 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c85ee099e7d..74cae848d31 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bb3bae3c2aa..564a8148246 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e69ea815985..0261f6b10ad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f0294e3ae7c..486412fd25b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b19aeda2ff5..ecdddecbbe3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 faa914bc45e..9d8cd3fbecc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 247e6bf9b44..d5a58d13313 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 957fc7f0caa..b44906a928b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f61233755be..cf2a755e5f7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d805767dbe3..bed6523dcc1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1c617c65940..cdfdba07921 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 838bd650d6a..4ca2707c1ef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c894a4af3a1..9ba4f9eef8b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a98b6c69024..17b7e751b84 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c65746307a6..74ecae5abfa 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 da38fa415db..b4d3cfdcdac 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 45144c8b84c..66c429d30b5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5b7d52864be..888ccebebf9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 27e6b6c22f8..fbc3dd5ed0d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3026ce318a3..5fd059ab064 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 57fe0923ce8..74b23adb290 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9c980b5beaf..e324adebc60 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5c5bb969021..41d9de0eb6b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 @@ -35,7 +35,7 @@ * SetProjectBrandingThemeBodyTest Class Doc Comment * * @category Class - * @description Set Project Branding Theme Request Parameters + * @description SetProjectBrandingThemeBody * @package Ory\Client * @author OpenAPI Generator team * @link https://openapi-generator.tech diff --git a/clients/client/php/test/Model/SetProjectTest.php b/clients/client/php/test/Model/SetProjectTest.php index 5bc071cba52..6a6abe6e3b1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 19935b71dbe..c8c02502957 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 76d2c5929c4..cab6b77a610 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7b909aeaff6..057df3cb6bf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d0b41a1a6a1..7f7d92f81b5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e3bb32a0a1f..24714991ac9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4994d818cdf..d744b799d67 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4e97b06eac7..c77143238d8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e6dd9f85327..dec50894f6b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 337430ad192..cd2843dc124 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c2f80cd2e3c..82342196f9a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e6f487fe396..313e113137f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 65130a71422..9e94e4d7c9d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 729b8a8796c..0b61c05763e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 645ab058fae..632d86b14ce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8141904190a..61ff259817e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4a7915faf8a..6bcf0cbf240 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 69e93491c38..0e69a251358 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2b2a027a5fd..ec29db32b5f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c7af6703444..943dd7b54cb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ccf2db85969..daeaecca21c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4f678a58d70..1ea1a5d7003 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f698f0b2f09..98353f25442 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0f1655c4ced..d1d2c27511b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bfbd301d266..51fe80d79fc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 954e4e26b57..72250ecbc79 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b917334494c..2196cbb5cae 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 23632140cf2..098b8884b37 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f20b315803e..d864fea1b31 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b6b6b9540d9..134ea248e23 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1941e935968..52a201a068d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e7a41cefdec..f2f7d2a38cf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 835f99e8a94..cbe7cacf8f4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 478353f1668..27476997046 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8edd1c238ea..0590be05088 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5bc3136d90c..88a99a6069b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 68659659ac6..5367ab073c3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 03e7a6828c5..e51befa87ef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f9d356980d1..34e954b9ad8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 298858f4ffb..a8e89523759 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ebba5026e12..343f23f4bc4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94400e34ffd..062d135b687 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ff368db2ea0..a73f9e8f5eb 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 56daca12e89..1edfce4a6dc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5b06e70fa74..7aa594ef3fe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 939f0743849..b42f647c2cd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5e6001c88af..95c38fb991f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e013f41f1f4..111c5d54252 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de1eb6b4091..c1422a0323e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 60aaf8a6309..3a480ce1701 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4b9fbb6737a..8cb677a4fc3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5c95afa2eb4..e6b235f463d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 debf7a9a2cf..e3c9d98c7c0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bfd94f74567..124044015ac 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9a59542faf2..15e27ce129c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 404686e31d9..887e50b0c41 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3faa5540525..f491a38a765 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d54234e7f31..e24c4e291b1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b84b11a2182..7f0d1ff276c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech * OpenAPI Generator version: 5.4.0 diff --git a/clients/client/python/.openapi-generator/FILES b/clients/client/python/.openapi-generator/FILES index 912c2c3ce65..7a407eec803 100644 --- a/clients/client/python/.openapi-generator/FILES +++ b/clients/client/python/.openapi-generator/FILES @@ -25,7 +25,6 @@ docs/CreateJsonWebKeySet.md docs/CreateProjectApiKeyRequest.md docs/CreateProjectBody.md docs/CreateProjectBranding.md -docs/CreateProjectBrandingsBody.md docs/CreateProjectInvite.md docs/CreateProjectInvitesResponse.md docs/CreateRecoveryCodeForIdentityBody.md @@ -284,7 +283,6 @@ ory_client/model/create_json_web_key_set.py ory_client/model/create_project_api_key_request.py ory_client/model/create_project_body.py ory_client/model/create_project_branding.py -ory_client/model/create_project_brandings_body.py ory_client/model/create_project_invite.py ory_client/model/create_project_invites_response.py ory_client/model/create_recovery_code_for_identity_body.py @@ -523,7 +521,6 @@ test/test_create_json_web_key_set.py test/test_create_project_api_key_request.py test/test_create_project_body.py test/test_create_project_branding.py -test/test_create_project_brandings_body.py test/test_create_project_invite.py test/test_create_project_invites_response.py test/test_create_recovery_code_for_identity_body.py diff --git a/clients/client/python/README.md b/clients/client/python/README.md index 2c6ffb7582b..5d4233c23f2 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.39 -- Package version: v1.1.39 +- API version: v1.1.39-alpha.0 +- Package version: v1.1.39-alpha.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen ## Requirements. @@ -238,7 +238,6 @@ Class | Method | HTTP request | Description - [CreateProjectApiKeyRequest](docs/CreateProjectApiKeyRequest.md) - [CreateProjectBody](docs/CreateProjectBody.md) - [CreateProjectBranding](docs/CreateProjectBranding.md) - - [CreateProjectBrandingsBody](docs/CreateProjectBrandingsBody.md) - [CreateProjectInvite](docs/CreateProjectInvite.md) - [CreateProjectInvitesResponse](docs/CreateProjectInvitesResponse.md) - [CreateRecoveryCodeForIdentityBody](docs/CreateRecoveryCodeForIdentityBody.md) diff --git a/clients/client/python/docs/CreateProjectBrandingsBody.md b/clients/client/python/docs/CreateProjectBrandingsBody.md deleted file mode 100644 index a6537dbb334..00000000000 --- a/clients/client/python/docs/CreateProjectBrandingsBody.md +++ /dev/null @@ -1,12 +0,0 @@ -# CreateProjectBrandingsBody - -Create multiple Project Brandings Request Body - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**value** | [**[CreateProjectBranding]**](CreateProjectBranding.md) | Create multiple Project Brandings Request Body | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/clients/client/python/docs/FrontendApi.md b/clients/client/python/docs/FrontendApi.md index e72012ecac2..9b7fb3b9348 100644 --- a/clients/client/python/docs/FrontendApi.md +++ b/clients/client/python/docs/FrontendApi.md @@ -145,12 +145,13 @@ with ory_client.ApiClient() as api_client: # Create an instance of the API class api_instance = frontend_api.FrontendApi(api_client) cookie = "cookie_example" # str | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. (optional) + return_to = "return_to_example" # str | Return to URL The URL to which the browser should be redirected to after the logout has been performed. (optional) # example passing only required values which don't have defaults set # and optional values try: # Create a Logout URL for Browsers - api_response = api_instance.create_browser_logout_flow(cookie=cookie) + api_response = api_instance.create_browser_logout_flow(cookie=cookie, return_to=return_to) pprint(api_response) except ory_client.ApiException as e: print("Exception when calling FrontendApi->create_browser_logout_flow: %s\n" % e) @@ -162,6 +163,7 @@ with ory_client.ApiClient() as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **cookie** | **str**| HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | [optional] + **return_to** | **str**| Return to URL The URL to which the browser should be redirected to after the logout has been performed. | [optional] ### Return type @@ -182,6 +184,7 @@ No authorization required | Status code | Description | Response headers | |-------------|-------------|------------------| **200** | logoutFlow | - | +**400** | errorGeneric | - | **401** | errorGeneric | - | **500** | errorGeneric | - | diff --git a/clients/client/python/docs/IdentityApi.md b/clients/client/python/docs/IdentityApi.md index c478d8785b5..42a217dd368 100644 --- a/clients/client/python/docs/IdentityApi.md +++ b/clients/client/python/docs/IdentityApi.md @@ -546,7 +546,7 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **delete_identity_credentials** -> Identity delete_identity_credentials(id, type) +> delete_identity_credentials(id, type) Delete a credential for a specific identity @@ -561,7 +561,6 @@ import time import ory_client from ory_client.api import identity_api from ory_client.model.error_generic import ErrorGeneric -from ory_client.model.identity import Identity from pprint import pprint # Defining the host is optional and defaults to https://playground.projects.oryapis.com # See configuration.py for a list of all supported configuration parameters. @@ -589,8 +588,7 @@ with ory_client.ApiClient(configuration) as api_client: # example passing only required values which don't have defaults set try: # Delete a credential for a specific identity - api_response = api_instance.delete_identity_credentials(id, type) - pprint(api_response) + api_instance.delete_identity_credentials(id, type) except ory_client.ApiException as e: print("Exception when calling IdentityApi->delete_identity_credentials: %s\n" % e) ``` @@ -605,7 +603,7 @@ Name | Type | Description | Notes ### Return type -[**Identity**](Identity.md) +void (empty response body) ### Authorization @@ -621,7 +619,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | identity | - | +**204** | Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201. | - | **404** | errorGeneric | - | **0** | errorGeneric | - | diff --git a/clients/client/python/docs/LoginFlow.md b/clients/client/python/docs/LoginFlow.md index 4013f761d49..0dca5169460 100644 --- a/clients/client/python/docs/LoginFlow.md +++ b/clients/client/python/docs/LoginFlow.md @@ -13,7 +13,7 @@ Name | Type | Description | Notes **ui** | [**UiContainer**](UiContainer.md) | | **active** | [**IdentityCredentialsType**](IdentityCredentialsType.md) | | [optional] **created_at** | **datetime** | CreatedAt is a helper struct field for gobuffalo.pop. | [optional] -**oauth2_login_challenge** | **str, none_type** | | [optional] +**oauth2_login_challenge** | **str** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2_login_request** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **refresh** | **bool** | Refresh stores whether this login flow should enforce re-authentication. | [optional] **requested_aal** | [**AuthenticatorAssuranceLevel**](AuthenticatorAssuranceLevel.md) | | [optional] diff --git a/clients/client/python/docs/NormalizedProject.md b/clients/client/python/docs/NormalizedProject.md index f0fd5f05179..dff8f523d4d 100644 --- a/clients/client/python/docs/NormalizedProject.md +++ b/clients/client/python/docs/NormalizedProject.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes **state** | **str** | The state of the project. running Running halted Halted deleted Deleted | [readonly] **updated_at** | **datetime** | Last Time Project was Updated | [readonly] **subscription_id** | **str, none_type** | | [optional] +**subscription_plan** | **str, none_type** | | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/python/docs/ProjectBranding.md b/clients/client/python/docs/ProjectBranding.md index edc7c96c4ea..44d958c7eab 100644 --- a/clients/client/python/docs/ProjectBranding.md +++ b/clients/client/python/docs/ProjectBranding.md @@ -1,6 +1,5 @@ # ProjectBranding -The Project Branding ## Properties Name | Type | Description | Notes diff --git a/clients/client/python/docs/ProjectBrandingColors.md b/clients/client/python/docs/ProjectBrandingColors.md index d72659e5aed..b913a6b43e4 100644 --- a/clients/client/python/docs/ProjectBrandingColors.md +++ b/clients/client/python/docs/ProjectBrandingColors.md @@ -1,6 +1,5 @@ # ProjectBrandingColors -The Project Branding Colors ## Properties Name | Type | Description | Notes diff --git a/clients/client/python/docs/ProjectBrandingTheme.md b/clients/client/python/docs/ProjectBrandingTheme.md index c5e9dbc8798..053a3d650cf 100644 --- a/clients/client/python/docs/ProjectBrandingTheme.md +++ b/clients/client/python/docs/ProjectBrandingTheme.md @@ -1,6 +1,5 @@ # ProjectBrandingTheme -The Project Branding Theme ## Properties Name | Type | Description | Notes diff --git a/clients/client/python/docs/ProjectBrandingThemes.md b/clients/client/python/docs/ProjectBrandingThemes.md index 600ed4f0a7d..d3ed14d4577 100644 --- a/clients/client/python/docs/ProjectBrandingThemes.md +++ b/clients/client/python/docs/ProjectBrandingThemes.md @@ -1,11 +1,10 @@ # ProjectBrandingThemes -The Project Branding Themes ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**value** | [**[ProjectBrandingTheme]**](ProjectBrandingTheme.md) | The Project Branding Themes | +**value** | [**[ProjectBrandingTheme]**](ProjectBrandingTheme.md) | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/python/docs/ProjectMetadata.md b/clients/client/python/docs/ProjectMetadata.md index 10d7b9c9e05..f3481a78d6a 100644 --- a/clients/client/python/docs/ProjectMetadata.md +++ b/clients/client/python/docs/ProjectMetadata.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes **updated_at** | **datetime** | Last Time Project was Updated | **slug** | **str** | The project's slug | [optional] [readonly] **subscription_id** | **str, none_type** | | [optional] +**subscription_plan** | **str, none_type** | | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/python/docs/RegistrationFlow.md b/clients/client/python/docs/RegistrationFlow.md index 15728e2e218..c0cb567fd09 100644 --- a/clients/client/python/docs/RegistrationFlow.md +++ b/clients/client/python/docs/RegistrationFlow.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **type** | **str** | The flow type can either be `api` or `browser`. | **ui** | [**UiContainer**](UiContainer.md) | | **active** | [**IdentityCredentialsType**](IdentityCredentialsType.md) | | [optional] -**oauth2_login_challenge** | **str, none_type** | | [optional] +**oauth2_login_challenge** | **str** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2_login_request** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] **return_to** | **str** | ReturnTo contains the requested return_to URL. | [optional] **session_token_exchange_code** | **str** | SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed. This is only set if the client has requested a session token exchange code, and if the flow is of type \"api\", and only on creating the flow. | [optional] diff --git a/clients/client/python/docs/SetProjectBrandingThemeBody.md b/clients/client/python/docs/SetProjectBrandingThemeBody.md index fb58104e847..35d3ab13ebb 100644 --- a/clients/client/python/docs/SetProjectBrandingThemeBody.md +++ b/clients/client/python/docs/SetProjectBrandingThemeBody.md @@ -1,6 +1,5 @@ # SetProjectBrandingThemeBody -Set Project Branding Theme Request Parameters ## Properties Name | Type | Description | Notes diff --git a/clients/client/python/ory_client/__init__.py b/clients/client/python/ory_client/__init__.py index 75e08c8eae2..1697b89f3a7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ -__version__ = "v1.1.39" +__version__ = "v1.1.39-alpha.0" # 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 21608a695b4..32544a67e1e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4703d0b178a..6e4001f0890 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -133,6 +133,7 @@ def __init__(self, api_client=None): params_map={ 'all': [ 'cookie', + 'return_to', ], 'required': [], 'nullable': [ @@ -150,12 +151,16 @@ def __init__(self, api_client=None): 'openapi_types': { 'cookie': (str,), + 'return_to': + (str,), }, 'attribute_map': { 'cookie': 'cookie', + 'return_to': 'return_to', }, 'location_map': { 'cookie': 'header', + 'return_to': 'query', }, 'collection_format_map': { } @@ -1815,6 +1820,7 @@ def create_browser_logout_flow( Keyword Args: cookie (str): HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request.. [optional] + return_to (str): Return to URL The URL to which the browser should be redirected to after the logout has been performed.. [optional] _return_http_data_only (bool): response data without head status code and headers. Default is True. _preload_content (bool): if False, the urllib3.HTTPResponse object diff --git a/clients/client/python/ory_client/api/identity_api.py b/clients/client/python/ory_client/api/identity_api.py index e488c7e1e55..88c55bae524 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -301,7 +301,7 @@ def __init__(self, api_client=None): ) self.delete_identity_credentials_endpoint = _Endpoint( settings={ - 'response_type': (Identity,), + 'response_type': None, 'auth': [ 'oryAccessToken' ], @@ -1543,7 +1543,7 @@ def delete_identity_credentials( async_req (bool): execute request asynchronously Returns: - Identity + None If the method is called asynchronously, returns the request thread. """ diff --git a/clients/client/python/ory_client/api/jwk_api.py b/clients/client/python/ory_client/api/jwk_api.py index a81ffb658f3..126f54c3ab3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d263a90320a..1d720252a33 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7676015040d..573e69c4f10 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 16e3ae5e295..4de2da5d2e0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 33a3ac57ed2..6f6d4855600 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 05ddb1f6324..c6d2b9fc51e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e14cf78aedb..0ca7b8408e4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 67c6f961d43..9ac4cfa1d2f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b76e6206e97..b33c3f2ae62 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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.39/python' + self.user_agent = 'OpenAPI-Generator/v1.1.39-alpha.0/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 bda6e5330db..087720839bd 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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.39\n"\ - "SDK Package Version: v1.1.39".\ + "Version of the API: v1.1.39-alpha.0\n"\ + "SDK Package Version: v1.1.39-alpha.0".\ 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 20e78ee6562..26ea6b0f352 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c6b14d91c5a..fd3d04b663e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 661bed059ca..4483a530f1c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 90f5d273633..df816059288 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bedb822a39b..de86a6b19a9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 92b855a5b96..ef4bf94ae2b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b25c5481962..eebb8794cc2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6a5f6eddf53..71c0245e006 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 634d14ac848..552b83a62a0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f22598b5ee1..72fcd8271b3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f765d89c941..6465832741d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 28377badfde..d2950e646fa 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3141e849716..a830e59cab3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 457acab1044..987eb635bb1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2e513b5dd1c..a8ca78506f1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6504ab03980..54e74a25d80 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 52dcfa473f7..015316d0d70 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 45a5d178340..93024caea90 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a66bc588f87..743962c3d03 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 66373b8bd4e..a84e9ace2d8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b98796c5aa1..7975eec1b35 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5450dffb8d4..fe064dd6ab9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_brandings_body.py b/clients/client/python/ory_client/model/create_project_brandings_body.py deleted file mode 100644 index 6592674f614..00000000000 --- a/clients/client/python/ory_client/model/create_project_brandings_body.py +++ /dev/null @@ -1,292 +0,0 @@ -""" - Ory APIs - - Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501 - - The version of the OpenAPI document: v1.1.39 - Contact: support@ory.sh - Generated by: https://openapi-generator.tech -""" - - -import re # noqa: F401 -import sys # noqa: F401 - -from ory_client.model_utils import ( # noqa: F401 - ApiTypeError, - ModelComposed, - ModelNormal, - ModelSimple, - cached_property, - change_keys_js_to_python, - convert_js_args_to_python_args, - date, - datetime, - file_type, - none_type, - validate_get_composed_info, - OpenApiModel -) -from ory_client.exceptions import ApiAttributeError - - -def lazy_import(): - from ory_client.model.create_project_branding import CreateProjectBranding - globals()['CreateProjectBranding'] = CreateProjectBranding - - -class CreateProjectBrandingsBody(ModelSimple): - """NOTE: This class is auto generated by OpenAPI Generator. - Ref: https://openapi-generator.tech - - Do not edit the class manually. - - Attributes: - allowed_values (dict): The key is the tuple path to the attribute - and the for var_name this is (var_name,). The value is a dict - with a capitalized key describing the allowed value and an allowed - value. These dicts store the allowed enum values. - validations (dict): The key is the tuple path to the attribute - and the for var_name this is (var_name,). The value is a dict - that stores validations for max_length, min_length, max_items, - min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, - inclusive_minimum, and regex. - additional_properties_type (tuple): A tuple of classes accepted - as additional properties values. - """ - - allowed_values = { - } - - validations = { - } - - additional_properties_type = None - - _nullable = False - - @cached_property - def openapi_types(): - """ - This must be a method because a model may have properties that are - of type self, this must run after the class is loaded - - Returns - openapi_types (dict): The key is attribute name - and the value is attribute type. - """ - lazy_import() - return { - 'value': ([CreateProjectBranding],), - } - - @cached_property - def discriminator(): - return None - - - attribute_map = {} - - read_only_vars = set() - - _composed_schemas = None - - required_properties = set([ - '_data_store', - '_check_type', - '_spec_property_naming', - '_path_to_item', - '_configuration', - '_visited_composed_classes', - ]) - - @convert_js_args_to_python_args - def __init__(self, *args, **kwargs): - """CreateProjectBrandingsBody - a model defined in OpenAPI - - Note that value can be passed either in args or in kwargs, but not in both. - - Args: - args[0] ([CreateProjectBranding]): Create multiple Project Brandings Request Body. # noqa: E501 - - Keyword Args: - value ([CreateProjectBranding]): Create multiple Project Brandings Request Body. # noqa: E501 - _check_type (bool): if True, values for parameters in openapi_types - will be type checked and a TypeError will be - raised if the wrong type is input. - Defaults to True - _path_to_item (tuple/list): This is a list of keys or values to - drill down to the model in received_data - when deserializing a response - _spec_property_naming (bool): True if the variable names in the input data - are serialized names, as specified in the OpenAPI document. - False if the variable names in the input data - are pythonic names, e.g. snake case (default) - _configuration (Configuration): the instance to use when - deserializing a file_type parameter. - If passed, type conversion is attempted - If omitted no type conversion is done. - _visited_composed_classes (tuple): This stores a tuple of - classes that we have traveled through so that - if we see that class again we will not use its - discriminator again. - When traveling through a discriminator, the - composed schema that is - is traveled through is added to this set. - For example if Animal has a discriminator - petType and we pass in "Dog", and the class Dog - allOf includes Animal, we move through Animal - once using the discriminator, and pick Dog. - Then in Dog, we will make an instance of the - Animal class but this time we won't travel - through its discriminator because we passed in - _visited_composed_classes = (Animal,) - """ - # required up here when default value is not given - _path_to_item = kwargs.pop('_path_to_item', ()) - - if 'value' in kwargs: - value = kwargs.pop('value') - elif args: - args = list(args) - value = args.pop(0) - else: - raise ApiTypeError( - "value is required, but not passed in args or kwargs and doesn't have default", - path_to_item=_path_to_item, - valid_classes=(self.__class__,), - ) - - _check_type = kwargs.pop('_check_type', True) - _spec_property_naming = kwargs.pop('_spec_property_naming', False) - _configuration = kwargs.pop('_configuration', None) - _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) - - if args: - for arg in args: - if isinstance(arg, dict): - kwargs.update(arg) - else: - raise ApiTypeError( - "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( - args, - self.__class__.__name__, - ), - path_to_item=_path_to_item, - valid_classes=(self.__class__,), - ) - - self._data_store = {} - self._check_type = _check_type - self._spec_property_naming = _spec_property_naming - self._path_to_item = _path_to_item - self._configuration = _configuration - self._visited_composed_classes = _visited_composed_classes + (self.__class__,) - self.value = value - if kwargs: - raise ApiTypeError( - "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( - kwargs, - self.__class__.__name__, - ), - path_to_item=_path_to_item, - valid_classes=(self.__class__,), - ) - - @classmethod - @convert_js_args_to_python_args - def _from_openapi_data(cls, *args, **kwargs): - """CreateProjectBrandingsBody - a model defined in OpenAPI - - Note that value can be passed either in args or in kwargs, but not in both. - - Args: - args[0] ([CreateProjectBranding]): Create multiple Project Brandings Request Body. # noqa: E501 - - Keyword Args: - value ([CreateProjectBranding]): Create multiple Project Brandings Request Body. # noqa: E501 - _check_type (bool): if True, values for parameters in openapi_types - will be type checked and a TypeError will be - raised if the wrong type is input. - Defaults to True - _path_to_item (tuple/list): This is a list of keys or values to - drill down to the model in received_data - when deserializing a response - _spec_property_naming (bool): True if the variable names in the input data - are serialized names, as specified in the OpenAPI document. - False if the variable names in the input data - are pythonic names, e.g. snake case (default) - _configuration (Configuration): the instance to use when - deserializing a file_type parameter. - If passed, type conversion is attempted - If omitted no type conversion is done. - _visited_composed_classes (tuple): This stores a tuple of - classes that we have traveled through so that - if we see that class again we will not use its - discriminator again. - When traveling through a discriminator, the - composed schema that is - is traveled through is added to this set. - For example if Animal has a discriminator - petType and we pass in "Dog", and the class Dog - allOf includes Animal, we move through Animal - once using the discriminator, and pick Dog. - Then in Dog, we will make an instance of the - Animal class but this time we won't travel - through its discriminator because we passed in - _visited_composed_classes = (Animal,) - """ - # required up here when default value is not given - _path_to_item = kwargs.pop('_path_to_item', ()) - - self = super(OpenApiModel, cls).__new__(cls) - - if 'value' in kwargs: - value = kwargs.pop('value') - elif args: - args = list(args) - value = args.pop(0) - else: - raise ApiTypeError( - "value is required, but not passed in args or kwargs and doesn't have default", - path_to_item=_path_to_item, - valid_classes=(self.__class__,), - ) - - _check_type = kwargs.pop('_check_type', True) - _spec_property_naming = kwargs.pop('_spec_property_naming', False) - _configuration = kwargs.pop('_configuration', None) - _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) - - if args: - for arg in args: - if isinstance(arg, dict): - kwargs.update(arg) - else: - raise ApiTypeError( - "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( - args, - self.__class__.__name__, - ), - path_to_item=_path_to_item, - valid_classes=(self.__class__,), - ) - - self._data_store = {} - self._check_type = _check_type - self._spec_property_naming = _spec_property_naming - self._path_to_item = _path_to_item - self._configuration = _configuration - self._visited_composed_classes = _visited_composed_classes + (self.__class__,) - self.value = value - if kwargs: - raise ApiTypeError( - "Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % ( - kwargs, - self.__class__.__name__, - ), - path_to_item=_path_to_item, - valid_classes=(self.__class__,), - ) - - return self diff --git a/clients/client/python/ory_client/model/create_project_invite.py b/clients/client/python/ory_client/model/create_project_invite.py index 6761dec14de..4cf3a84bbeb 100644 --- a/clients/client/python/ory_client/model/create_project_invite.py +++ b/clients/client/python/ory_client/model/create_project_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/create_project_invites_response.py b/clients/client/python/ory_client/model/create_project_invites_response.py index 408d4957abe..a8758479308 100644 --- a/clients/client/python/ory_client/model/create_project_invites_response.py +++ b/clients/client/python/ory_client/model/create_project_invites_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 16560a1ee54..7da75237cf8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4516911722e..cdf0c8b29bc 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a3c5b718bcc..215186fca51 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 65020c575db..a4dc286f1f5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 926804bcd1f..cb41923159b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 83586ee9493..da9c18419fc 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9c48364b864..71ec544af77 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 836e973bbd6..0fc1b8123ab 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6231cbff3d5..825734b70b1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9549a65b241..4fe18608567 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e74826bec06..605fd68401f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0e701cde2db..2a96ff60b31 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2ed762b2267..e80e834582e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d64b3eed931..edd6a51905c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 567aad1ed46..01be7d482a5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 986b48198dd..435f1c1b90b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 595eff40db8..efd571dc896 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5fb59d85adb..c7c7aff0793 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0450494b7eb..0f23e309418 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 feac9460bd9..e5f9bd5412e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e46e9f088d7..6e28de6bbae 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 639e248a4e0..44e3aaf4499 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9fad6b4db4a..5b8dcf0e8a8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9470dca3f49..51813f62b9b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 165e9257ec7..8d25e847824 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0ff028fff46..f00ca967b9c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6f679db715d..faf006b0ac2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f47e15acf96..447ee983b56 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a8b3dff936b..73f2aa8d51e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d0e46822d39..8a1a4288091 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 79744cdf260..ad9d9d833c2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 90093e9c474..5f68665db94 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 12df1ef7d13..669c8ebf2fd 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 486eeb4c3a1..174d5bae71d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 74a4c2439b0..e3da73a4757 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 750d0dbc726..0a415470911 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6cb8414f4d2..821bd49fc58 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7390db09893..db3d5030a0a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 31575be918d..103df7bd119 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 594c7757f38..596c90e260b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ef3c3f1350b..02ed11c3cec 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6c260dc33b1..73fd291cde3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9ad6a6e91d8..1b801c4867c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2fb4dd0e582..1b55a6e18b2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 23144b21f41..8a93b7d5142 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 12151e071b3..5423e21ee60 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 442235c13e8..c0cf5f1f149 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bbb0aae7eff..df59d65c768 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1ffc16f883e..5d94a9fc8fa 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8398d42570e..69156eed08b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4c951a2c3bc..126ca43675e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c65d0b519d2..508e2030c18 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a870944a065..e5b7bc334a2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 69abd8fa115..54a45622a11 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e41f76694c9..582a4c597d2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 57d41bc89c5..1d54032c73c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -102,7 +102,7 @@ def openapi_types(): 'ui': (UiContainer,), # noqa: E501 'active': (IdentityCredentialsType,), # noqa: E501 'created_at': (datetime,), # noqa: E501 - 'oauth2_login_challenge': (str, none_type,), # noqa: E501 + 'oauth2_login_challenge': (str,), # noqa: E501 'oauth2_login_request': (OAuth2LoginRequest,), # noqa: E501 'refresh': (bool,), # noqa: E501 'requested_aal': (AuthenticatorAssuranceLevel,), # noqa: E501 @@ -185,7 +185,7 @@ def _from_openapi_data(cls, expires_at, id, issued_at, request_url, type, ui, *a _visited_composed_classes = (Animal,) active (IdentityCredentialsType): [optional] # noqa: E501 created_at (datetime): CreatedAt is a helper struct field for gobuffalo.pop.. [optional] # noqa: E501 - oauth2_login_challenge (str, none_type): [optional] # noqa: E501 + oauth2_login_challenge (str): Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.. [optional] # noqa: E501 oauth2_login_request (OAuth2LoginRequest): [optional] # noqa: E501 refresh (bool): Refresh stores whether this login flow should enforce re-authentication.. [optional] # noqa: E501 requested_aal (AuthenticatorAssuranceLevel): [optional] # noqa: E501 @@ -293,7 +293,7 @@ def __init__(self, expires_at, id, issued_at, request_url, type, ui, *args, **kw _visited_composed_classes = (Animal,) active (IdentityCredentialsType): [optional] # noqa: E501 created_at (datetime): CreatedAt is a helper struct field for gobuffalo.pop.. [optional] # noqa: E501 - oauth2_login_challenge (str, none_type): [optional] # noqa: E501 + oauth2_login_challenge (str): Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.. [optional] # noqa: E501 oauth2_login_request (OAuth2LoginRequest): [optional] # noqa: E501 refresh (bool): Refresh stores whether this login flow should enforce re-authentication.. [optional] # noqa: E501 requested_aal (AuthenticatorAssuranceLevel): [optional] # noqa: E501 diff --git a/clients/client/python/ory_client/model/logout_flow.py b/clients/client/python/ory_client/model/logout_flow.py index 7eddb482802..96bccf67f23 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 19c0da0b2d1..90d4f0ad154 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 818cb3c236b..65dccaa0cce 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ad3aba2e7dd..fdbd570457a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ae11166cb72..cf8ddf9c6ca 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d71062f1950..aedc6bc7b6f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3262ecd4369..506f6c389e8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 79aa7f8ad11..2f9550fabd3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f7b7a56bc03..a35286420db 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 64967f59de6..af7dd202b00 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -103,6 +103,7 @@ def openapi_types(): 'state': (str,), # noqa: E501 'updated_at': (datetime,), # noqa: E501 'subscription_id': (str, none_type,), # noqa: E501 + 'subscription_plan': (str, none_type,), # noqa: E501 } @cached_property @@ -119,6 +120,7 @@ def discriminator(): 'state': 'state', # noqa: E501 'updated_at': 'updated_at', # noqa: E501 'subscription_id': 'subscription_id', # noqa: E501 + 'subscription_plan': 'subscription_plan', # noqa: E501 } read_only_vars = { @@ -177,6 +179,7 @@ def _from_openapi_data(cls, created_at, current_revision, hosts, id, slug, state through its discriminator because we passed in _visited_composed_classes = (Animal,) subscription_id (str, none_type): [optional] # noqa: E501 + subscription_plan (str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -272,6 +275,7 @@ def __init__(self, current_revision, hosts, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) subscription_id (str, none_type): [optional] # noqa: E501 + subscription_plan (str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) 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 3fdf527cd4b..12ed65d66f9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ 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 3c5e36eaebe..71ad8114fd1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 023120ebac9..295496956ed 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8b60621ff66..4f2089654cf 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 859dacf30f7..0d9e3882dd4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2b0030a6dfd..13b08ccda74 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e6101fdb90e..16b832fbb47 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 82b9cf183d3..13a399e4b20 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 29d0910120f..4c665de5bd4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6e2c1953425..546bd274742 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 094017dd016..e8595e52396 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8400f24bd32..613b5b0bf31 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2bf342da6d6..7114db1e5e5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d71f90dc5cc..31c2c94996b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 08d91aec1eb..e896b9f6642 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e7e2ebfe916..cd1f85a2cbd 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 58452ff6fb7..dc08ab152f5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b085c9a7b0a..77e086901a0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d613fe79d94..f16425e89d7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 38d82a7fd08..6808608ddab 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ce76eff951a..ecd18058edf 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c360017b4d0..09f22afec90 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7510566f23f..774e5d7d57f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b13964574db..c92f75a1171 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8bb80951aa0..667b942984f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 81c682324f6..2c2116a2cc5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 101675735ee..b4aedfbf0cf 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0bad42f5519..d1a5e659241 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9f5e2467c15..327af586ca4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 95f42be811a..1f0ad9bdd0c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9003fdfbbea..cef81e9c727 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d3791cae4b7..018216a85c5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0ca0cd64de2..97e9dd31ad1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 07255223b73..0868353cd44 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e4357e85284..7516f541c21 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 76fa5870c33..18f6a7bac03 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 db505dfac87..fe26e6abf48 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 95bfa90a9a6..d41570fde56 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0f254bfb297..71beb356c16 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -107,10 +107,10 @@ def __init__(self, *args, **kwargs): Note that value can be passed either in args or in kwargs, but not in both. Args: - args[0] ([ProjectBrandingTheme]): The Project Branding Themes. # noqa: E501 + args[0] ([ProjectBrandingTheme]): # noqa: E501 Keyword Args: - value ([ProjectBrandingTheme]): The Project Branding Themes. # noqa: E501 + value ([ProjectBrandingTheme]): # noqa: E501 _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be raised if the wrong type is input. @@ -201,10 +201,10 @@ def _from_openapi_data(cls, *args, **kwargs): Note that value can be passed either in args or in kwargs, but not in both. Args: - args[0] ([ProjectBrandingTheme]): The Project Branding Themes. # noqa: E501 + args[0] ([ProjectBrandingTheme]): # noqa: E501 Keyword Args: - value ([ProjectBrandingTheme]): The Project Branding Themes. # noqa: E501 + value ([ProjectBrandingTheme]): # noqa: E501 _check_type (bool): if True, values for parameters in openapi_types will be type checked and a TypeError will be raised if the wrong type is input. diff --git a/clients/client/python/ory_client/model/project_host.py b/clients/client/python/ory_client/model/project_host.py index d9a50d8a278..21cb86ec4b6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_invite.py b/clients/client/python/ory_client/model/project_invite.py index d1dafec7fce..cdd1b51594f 100644 --- a/clients/client/python/ory_client/model/project_invite.py +++ b/clients/client/python/ory_client/model/project_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/model/project_invites.py b/clients/client/python/ory_client/model/project_invites.py index 343227ed2b4..e190718b642 100644 --- a/clients/client/python/ory_client/model/project_invites.py +++ b/clients/client/python/ory_client/model/project_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7fe65993ce8..f9887d75c5f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 432c9a8f25c..6bd61360a65 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 153dd4ecc53..d94f44843d4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -101,6 +101,7 @@ def openapi_types(): 'updated_at': (datetime,), # noqa: E501 'slug': (str,), # noqa: E501 'subscription_id': (str, none_type,), # noqa: E501 + 'subscription_plan': (str, none_type,), # noqa: E501 } @cached_property @@ -117,6 +118,7 @@ def discriminator(): 'updated_at': 'updated_at', # noqa: E501 'slug': 'slug', # noqa: E501 'subscription_id': 'subscription_id', # noqa: E501 + 'subscription_plan': 'subscription_plan', # noqa: E501 } read_only_vars = { @@ -172,6 +174,7 @@ def _from_openapi_data(cls, created_at, hosts, id, name, state, updated_at, *arg _visited_composed_classes = (Animal,) slug (str): The project's slug. [optional] # noqa: E501 subscription_id (str, none_type): [optional] # noqa: E501 + subscription_plan (str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -272,6 +275,7 @@ def __init__(self, created_at, hosts, name, state, updated_at, *args, **kwargs): _visited_composed_classes = (Animal,) slug (str): The project's slug. [optional] # noqa: E501 subscription_id (str, none_type): [optional] # noqa: E501 + subscription_plan (str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) 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 44a39aa7525..8875015d326 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 559b98271d1..eaed6e90eb8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 92f6d8be9cb..7d5009a8689 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c3c20ea7ee9..3c660d2870d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7f421337b84..4612fc69185 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6880d139443..7df0c3de06e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 041f5bf58da..0ab29b235d3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 676f439ae6f..749440a44f5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bca296e606e..d9d8bc4354d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5c3ce4cb4ec..831c1e43fcc 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3cc2668fe99..1302bc4dc6b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ba6ebec4fa0..01013e919d0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 128f5ed14ef..54eb9f4cf05 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 34b152f5596..26c5cc66f8a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 863981673a2..090985259a4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fd45c666003..2f50d190ecb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 49e6750dffa..e9d79dfa9ca 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ @@ -99,7 +99,7 @@ def openapi_types(): 'type': (str,), # noqa: E501 'ui': (UiContainer,), # noqa: E501 'active': (IdentityCredentialsType,), # noqa: E501 - 'oauth2_login_challenge': (str, none_type,), # noqa: E501 + 'oauth2_login_challenge': (str,), # noqa: E501 'oauth2_login_request': (OAuth2LoginRequest,), # noqa: E501 'return_to': (str,), # noqa: E501 'session_token_exchange_code': (str,), # noqa: E501 @@ -176,7 +176,7 @@ def _from_openapi_data(cls, expires_at, id, issued_at, request_url, type, ui, *a through its discriminator because we passed in _visited_composed_classes = (Animal,) active (IdentityCredentialsType): [optional] # noqa: E501 - oauth2_login_challenge (str, none_type): [optional] # noqa: E501 + oauth2_login_challenge (str): Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.. [optional] # noqa: E501 oauth2_login_request (OAuth2LoginRequest): [optional] # noqa: E501 return_to (str): ReturnTo contains the requested return_to URL.. [optional] # noqa: E501 session_token_exchange_code (str): SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed. This is only set if the client has requested a session token exchange code, and if the flow is of type \"api\", and only on creating the flow.. [optional] # noqa: E501 @@ -281,7 +281,7 @@ def __init__(self, expires_at, id, issued_at, request_url, type, ui, *args, **kw through its discriminator because we passed in _visited_composed_classes = (Animal,) active (IdentityCredentialsType): [optional] # noqa: E501 - oauth2_login_challenge (str, none_type): [optional] # noqa: E501 + oauth2_login_challenge (str): Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.. [optional] # noqa: E501 oauth2_login_request (OAuth2LoginRequest): [optional] # noqa: E501 return_to (str): ReturnTo contains the requested return_to URL.. [optional] # noqa: E501 session_token_exchange_code (str): SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed. This is only set if the client has requested a session token exchange code, and if the flow is of type \"api\", and only on creating the flow.. [optional] # noqa: E501 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 f37116e2dd1..7fe9a57bdf1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 10d76bd3bea..328140e9bc5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 396ae60820e..a0fcaa11579 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c0858c06418..94abfbc9b66 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 956b0dbcccd..20fbae9e213 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 690308121ae..7d7161b9dc4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 52ac77de679..e0c42983cb2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1b8017ff828..bb3d72e50a0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 39d4bf55493..3b1094c2234 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f1df9fd3bd3..d1036054bf9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e9bda1c0299..759aeb62979 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0eabcea903d..ee3c56d571c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e08c138ef22..560e8d4e26f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 03949d20148..3e7a67f67b6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 debdf7bbf19..124fd45b515 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4844a0aafd8..b70e4836fe2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5213df30148..44ca09c048d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a406c00d27a..9713be92691 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e2df21ea9a4..be34b03b72a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 477e9a23698..820956ed81f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9ecef5c597f..bde02ef1593 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 71a117e251b..25cb31b7950 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 70bbfe90364..825188abfee 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 36e010a2640..f1658b3a905 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c3845d09f30..12a1ac1e788 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fcd10575c42..2ccfe3dff6e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5c1f42c0715..34d01de6a2f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6d06b0d6464..3d4f6818324 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5ba6835feb3..0fd59bb41c7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 cf8f84d112b..feeeefdaf92 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 78ee16994ea..f43a71c2b7c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ff85b7106a7..e2984bc5ea4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 540d64c0353..740a26cd2a5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8b6bcac9e08..6613952b69c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 41157ea9283..d2e6f2ad141 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1bca9b3b28f..d6b938b9ddb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7b9000c2571..6a8b605f0b3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9e3bf730673..d06bf799609 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 acd775e8e1c..f3c160fc4d1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 15d567c040b..aedfd035e0a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 85d8efed7f9..3eee9a3d9d5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 70d0721dafa..8b1c197dc59 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 686b67206fa..20583122f97 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 312f4f4d4c8..fda1c56883e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 02e2f2a5ddb..f3282e9082c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8a0d12b0b64..61143b4f1b0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8c75f703e5a..45c32daaebd 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4b2b0f149ac..6399ef5a5e3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4ece02dc625..f878c479ebc 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 95cbebdb552..36040c327e1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5d57f20ed33..d9fbf024f70 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c3933c7ef87..b7ad8e15741 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 565be095ba1..b9513d8746a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5922db79efb..dee6f9c206c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2a8c5845d81..6c58230a5e5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 772b61d2770..86d93735fc6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 dd75454a99d..08411d5547e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bccdc50d284..f558d7a2430 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8049b5529a5..8176963112d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9254d937fdb..c66acdb53a4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0e79dd12afd..2a147374500 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6e5f0e0511c..af07f972815 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 91484b2e937..cb10c758e5a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8d2adae8a1b..9561aa3c4cf 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3eff414ded5..ae1792836de 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f83c5925acc..42eb67b9c9d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9826a1cbb2a..abf775c878e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 909207e6e3c..6ca613a6d0b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f7f6a58dd80..08ef94ee261 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 94129218a69..61f5c77e1f4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d4d26bf11dd..c009b1dace7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9d0209db634..368355458b4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5e5096713bf..d82a4a5e68e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 aa05217ac90..61395d52274 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 46ddda86aca..c9dbd33b804 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 61d02304b55..71758d9c5f4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a57aa5d7f3b..d5210acc3ff 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1ba59d4a580..977ff9135b5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1ca02712dde..3f65206198b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/ory_client/models/__init__.py b/clients/client/python/ory_client/models/__init__.py index 120cfe8c538..b0d76d44c87 100644 --- a/clients/client/python/ory_client/models/__init__.py +++ b/clients/client/python/ory_client/models/__init__.py @@ -30,7 +30,6 @@ from ory_client.model.create_project_api_key_request import CreateProjectApiKeyRequest from ory_client.model.create_project_body import CreateProjectBody from ory_client.model.create_project_branding import CreateProjectBranding -from ory_client.model.create_project_brandings_body import CreateProjectBrandingsBody from ory_client.model.create_project_invite import CreateProjectInvite from ory_client.model.create_project_invites_response import CreateProjectInvitesResponse from ory_client.model.create_recovery_code_for_identity_body import CreateRecoveryCodeForIdentityBody diff --git a/clients/client/python/ory_client/rest.py b/clients/client/python/ory_client/rest.py index 4d14875ebd6..789df4b3011 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c2520abed90..ca89bd7118b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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.39" +VERSION = "v1.1.39-alpha.0" # 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 c09d0320dd1..031dde14fc7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 75e2cff91be..8b84fd51068 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 991d641c7e6..9e194663b04 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5899407e941..e77142bab9a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b600762f176..056a7ee0a55 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7f3bcf46e66..d0cf276be2c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1e84479ed61..e6c83f94fe9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 20c8f33c15d..3419632091d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 80854825797..24523c1386e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ba9adef1ca7..5b3cf1bb21d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7d0a3b7e63b..97bc8cca977 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f75fcd4bd8a..775e37e7ea6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 932583a983b..3f6bcf3c545 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4cae2eabe5f..d1c0ab08a25 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2ddd02071d7..b554a79da23 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 908f63cb83b..b59d37d1cd2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9c23508f3a7..266cef74d14 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 993389d5b63..46f36d0b0fb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bc46a9a444c..185582e836a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6858d2e23a0..445ec7e2124 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a5df4d3fba0..719fcef09b7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9cc77c18c78..a61e38ca8b8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_brandings_body.py b/clients/client/python/test/test_create_project_brandings_body.py deleted file mode 100644 index 4c690967b06..00000000000 --- a/clients/client/python/test/test_create_project_brandings_body.py +++ /dev/null @@ -1,38 +0,0 @@ -""" - Ory APIs - - Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. # noqa: E501 - - The version of the OpenAPI document: v1.1.39 - Contact: support@ory.sh - Generated by: https://openapi-generator.tech -""" - - -import sys -import unittest - -import ory_client -from ory_client.model.create_project_branding import CreateProjectBranding -globals()['CreateProjectBranding'] = CreateProjectBranding -from ory_client.model.create_project_brandings_body import CreateProjectBrandingsBody - - -class TestCreateProjectBrandingsBody(unittest.TestCase): - """CreateProjectBrandingsBody unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testCreateProjectBrandingsBody(self): - """Test CreateProjectBrandingsBody""" - # FIXME: construct object with mandatory attributes with example values - # model = CreateProjectBrandingsBody() # noqa: E501 - pass - - -if __name__ == '__main__': - unittest.main() diff --git a/clients/client/python/test/test_create_project_invite.py b/clients/client/python/test/test_create_project_invite.py index 5a4fd2a9b70..bc46bf65e05 100644 --- a/clients/client/python/test/test_create_project_invite.py +++ b/clients/client/python/test/test_create_project_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_create_project_invites_response.py b/clients/client/python/test/test_create_project_invites_response.py index 0dcaa06c4b2..8132c582621 100644 --- a/clients/client/python/test/test_create_project_invites_response.py +++ b/clients/client/python/test/test_create_project_invites_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 25717ff84b6..7c8948701fc 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 568d70c5edc..2d4964f0d31 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5a1c9ead668..82a97ea2c91 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6f1702a28fc..18ba3a19912 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f87b127821e..38830976e2c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 146b197bb5f..a6d180c1c50 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a227172adcb..edfe1a5327a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bfa17efc43c..d622813d100 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2110ef306f6..2681791ecf0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e6bc680aa7f..9db6e94575c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d87a1e1f181..d3967305a00 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2411283c819..dc23a8b34d8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 64b6af12306..8ca2152387c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 055dc551c7d..56aba3e43f9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9b900520a9b..2dc2dda68c8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4cc08a96003..5101e0038c4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fa1b6e00648..adde5fe5a96 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a7cdef90c0d..66478d7d37c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 444e9d00de7..ce8c9c68513 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b661e372f58..ecdc6bc485b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 608ec8ed12d..bc977b83c8f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e60f479f26d..1d3f444c077 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 874d4d708b7..53244ebda29 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 23bf43f8471..7b17ac46c6c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fbe149b17c6..381480e0d61 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d4da91af6d5..e19624d6c53 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e7c9df79a0e..2eee4accc15 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d0141811b6d..faf5ed08bcf 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6ce954a43fa..d5686df0cd7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9ceb80aeb76..b288c99828a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 aba305f892a..0e8d48f806f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 84aa8e9eed9..580252f8137 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2aad8a68c03..705a15fd475 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a9940094d60..fda5ee4e1ec 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7a06b716c81..3ab51d41d7d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 cae1da8fc78..e5fbe8c0dc4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1dce184de26..8e84ad981de 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 50bd78553b7..99c1d05a4b9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c7214c64702..26d90bb822a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6ae4ac89cb8..0087acb223b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 da85e612dc8..2b86f8c92cb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7f02f6b8225..5fdb3dd6052 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 869500d4b7b..f06c7d2f83a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 64fde6a1043..c24468840a7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 89a4d4c8499..7f792a1fead 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 896e4f8f306..cb5181dcf99 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 38549c1826f..e1ac796620a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d178357c8b8..ff05411e3f8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a3f6cc1e85b..f24ca35ee71 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 eee0d7125af..a4b91dc8373 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 85bbf8a32f9..f3c1a5cf0fa 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a3d7cc5ecc3..cab00bdf2c5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e9bd0db022b..3d01b319db1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4f3ba0c0f1c..f058db04529 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 396f46a1a5b..70399477aec 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2fd7a14260b..ec25f9dff1b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 8f25c821ba0..faa31ae8908 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a33f56fe331..2accda3f490 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 456ee14c9a5..2880698eb31 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 67944cd3ead..45d5f2a1046 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d2875ea1f03..841234676ec 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4c087da2f82..3a2fb8d7b61 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3f93847658e..a646fef9ef7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fc2651a8055..04809fd6912 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1112aec9053..8ac1c6817b3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e56dde4ae07..889e8739c22 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a7eb609dc4f..06527988904 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ff05dd5fb95..0aa9a235757 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6079657c73f..30017bca23c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 318056ac3dd..49022c4b58d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1dcc9092a34..61192d7a285 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 53f9cc4a8a7..b88a47cafad 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3b79808936d..63262780ae3 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e24acf7676a..265cfb82233 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6dfed164c10..1f6a89250f2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b6b5737cca1..b9ef0b5cecc 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 71a49266d0b..3c13963fd7c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d766801c005..16f3f0e33c9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 59087dab05a..422b5234a7c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c0ff92da3b1..67f8ba7a8d4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 046039f3891..089080dfd55 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 20fd76f3895..5fd3b986c3c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 54b2df36d07..a2f0550dd8f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ee6c56fda14..848fe3249f5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9cd903efc3e..1548502cfb9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1d20029795a..64cdcd3d06c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e22c246510d..926efe98d8c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5ba632c6b21..e516e226fb8 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c844a057880..d87cece3582 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ad01762f74a..e75f9bc329b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 62c1ac66050..815daef5334 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 eef7472506e..c0fa2a13204 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3c74383c81e..e8c8eec2e9a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e51c606ae54..6667a42b0b5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3205244e0e0..78ed160a339 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 018737fff10..24149c0344b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 42761bd5887..4a057183497 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 87fb6e56e41..ebd470624ba 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1d600211a1b..77833be473b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 421088f1154..de408a3bfcd 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 df99a288d71..1ec050f7537 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 01f60b00164..ba523065b7c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7d3a898e160..71c841b706a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9826f51bfc3..e823db3d4e4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 465cf0ee828..45992411338 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2b4204c0c11..930996e1064 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fdc41380f0e..f52e0dc3c6a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 aa68f320173..505841cec0e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 afc3d5b9a01..ceef03f6a29 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 210dc938eb1..5008493e396 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 604856ec424..bcc5d2cfe0f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c97cf11d974..2194b56d21a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5affee178c0..733fb2a568b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0cd5c6ee1e5..ede0a6ca7b4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_invite.py b/clients/client/python/test/test_project_invite.py index 9b0c6a44090..56fd5bfca16 100644 --- a/clients/client/python/test/test_project_invite.py +++ b/clients/client/python/test/test_project_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech """ diff --git a/clients/client/python/test/test_project_invites.py b/clients/client/python/test/test_project_invites.py index bd0e531b87a..5434115c06c 100644 --- a/clients/client/python/test/test_project_invites.py +++ b/clients/client/python/test/test_project_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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 93b79288f41..910f214b67a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d4e9a522a04..d826368358f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 2c402968bec..6d67c6a17b7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 aa8ae8eed34..3715d3ff5eb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1d42895e391..41f7e7ec195 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 cafc1439d91..bcdb3cacc3c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 180c1676f74..5f04f598826 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6894979adb8..d3a8567dfed 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6af2869eb67..a4b9f397dfe 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 eaa9b1cdb95..600815b18a5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9960df48656..63a029da708 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f6aae52c6af..8362f9e3f27 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e45ab2db3a7..8a86fc4132e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 92a3622fa74..5d3f3a70cdf 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7d7c1aa2926..7049eb8ea15 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 27b289ee069..d11b5515a20 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4ccf1cf7bf1..682bd22ab1b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 547b3381b8f..178229cba1a 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 109b0f7f407..d5e27674aeb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7f5a88050a3..689dcb80196 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bcf37470a00..6857dba184c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d2783407906..ff4c6b965fb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0b60b12dafa..45022dcc119 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9b367fa40b7..1c59da736d6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 993e561819d..4d67b290a11 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ee4760d730d..54a373238ba 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ac446ad2410..f7966cd72ee 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 069bd979a3b..409b63eae90 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 35e3ae1356a..dc3518b0584 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3fb330cf371..819862f1563 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 33ce4461ea6..4e1e6a2a6eb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e157993d1ad..e23c4e49549 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9f381452d5f..ab23732988c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b8ad2b926eb..9c71df3b32e 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 56749f81081..5f5afb961b5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 6dcfaf7d366..0a06311d920 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 cb39f8e09da..54ea338e6e7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e261c57a5b5..2190977c3ea 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a59df0df0a2..4c78754a568 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 622ed51595e..ef5f7b44640 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 cacb45924a9..99fa301cb40 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 862888bfa8d..9c96698cbf4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c1db1551b78..8f29033a214 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 ef873d0c141..b9570b768b5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 cbf5225b50b..f861e446bd4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1c5561012e9..4bade1d57ba 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3cc90f1d8d8..8edef700efb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 06908260b2e..f3636cfc4d9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 dc4a2cc1001..2e7033601d5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7c2c5c9bd00..3ac44cc524d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 711abf9a7ff..adf8c453681 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 13e0cf2253b..f9544eb7197 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 eaff2675de5..2bf40024227 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 536a5a371a9..6ba8ff8dc11 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e036b1d41d7..3a63eeedd13 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4344528d29a..ee95fb78bf0 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7904e2c5698..047d3312891 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 4ab12df93cc..dbde4c21b30 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e5a8a5b3935..41a6bebf254 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5415941a14b..c71336f4d71 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3c0eb2ed3cb..e1ea0976bb5 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fc582d96eb6..f72165495f1 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 08d521d1cd4..7cbab620e9b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 089769067d2..c70be5dcdac 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 bc71c02d8cf..58b07b7c26c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1579df748bf..1c3b8f775a7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 50e6d3231eb..501cf8f111c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a33a13fc516..410f38e6013 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 59b8a680f6b..7df53808749 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5101ae07a40..d608243bb61 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fbbfc360d51..6e0b98513a6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 99d858e0485..5509d10aef4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 43b0ddf35a6..24116feb86c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 145752993a9..e4fe6e7776c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 53810ec921c..951e9bed69f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 0dddcaebce0..a22faa6cc90 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 7a52daf867d..1d01a4d5093 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 63ab12efd6f..aa425374b4f 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 a2d04e97fe5..b6210802009 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 df6ff8a5d41..d6850bc89e2 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 d1f97d1c4ae..4b4f86ac2b9 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e1469be202b..8fb40df34d7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 eeddb6eba52..75d3272aab6 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 53e74a62b88..6777d30fa28 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1f6cd93ad8b..a8fca6fefd7 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 76c6a969a5e..769b216a7d4 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 40e121228ab..2aa5238d6be 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 e5ab5f3cd78..5ea7f2449aa 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 1bf38906c28..006f3af55fb 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 353f3048c59..2afd6bab353 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 335518192bd..84cdab6542b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b8e8ae865a1..28a95969bef 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 3987cae9cff..bcf0a74ed90 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 f84626ae5ea..d8d8e688a0d 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 fc338fe370d..b27bacabd72 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 9bf400cb851..bd07cb73574 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 40728f2084f..6da3e2e1724 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 5797d1d6e10..7f23285062b 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 c4ad3b88a76..7812e92d21c 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 16a40104eb7..277fea8dbec 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.39 + The version of the OpenAPI document: v1.1.39-alpha.0 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 b3f114e4fdb..1f9c70f9400 100644 --- a/clients/client/ruby/Gemfile.lock +++ b/clients/client/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ory-client (1.1.39) + ory-client (1.1.39.alpha0) typhoeus (~> 1.0, >= 1.0.1) GEM @@ -43,7 +43,7 @@ GEM rspec-mocks (3.12.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (3.12.1) rubocop (0.66.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) diff --git a/clients/client/ruby/README.md b/clients/client/ruby/README.md index 063797b7fa4..450b9864cca 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.39 -- Package version: v1.1.39 +- API version: v1.1.39-alpha.0 +- Package version: v1.1.39-alpha.0 - 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.39.gem +gem install ./ory-client-v1.1.39-alpha.0.gem ``` -(for development, run `gem install --dev ./ory-client-v1.1.39.gem` to install the development dependencies) +(for development, run `gem install --dev ./ory-client-v1.1.39-alpha.0.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.39' + gem 'ory-client', '~> v1.1.39-alpha.0' ### Install from Git diff --git a/clients/client/ruby/docs/FrontendApi.md b/clients/client/ruby/docs/FrontendApi.md index 8953a9755b8..099970108a3 100644 --- a/clients/client/ruby/docs/FrontendApi.md +++ b/clients/client/ruby/docs/FrontendApi.md @@ -126,7 +126,8 @@ require 'ory-client' api_instance = OryClient::FrontendApi.new opts = { - cookie: 'cookie_example' # String | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + cookie: 'cookie_example', # String | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + return_to: 'return_to_example' # String | Return to URL The URL to which the browser should be redirected to after the logout has been performed. } begin @@ -161,6 +162,7 @@ end | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **cookie** | **String** | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | [optional] | +| **return_to** | **String** | Return to URL The URL to which the browser should be redirected to after the logout has been performed. | [optional] | ### Return type diff --git a/clients/client/ruby/docs/IdentityApi.md b/clients/client/ruby/docs/IdentityApi.md index 41461f89ee5..b3dbeb14da9 100644 --- a/clients/client/ruby/docs/IdentityApi.md +++ b/clients/client/ruby/docs/IdentityApi.md @@ -378,7 +378,7 @@ nil (empty response body) ## delete_identity_credentials -> delete_identity_credentials(id, type) +> delete_identity_credentials(id, type) Delete a credential for a specific identity @@ -401,8 +401,7 @@ type = 'totp' # String | Type is the credential's Type. One of totp, webauthn, l begin # Delete a credential for a specific identity - result = api_instance.delete_identity_credentials(id, type) - p result + api_instance.delete_identity_credentials(id, type) rescue OryClient::ApiError => e puts "Error when calling IdentityApi->delete_identity_credentials: #{e}" end @@ -410,9 +409,9 @@ end #### Using the delete_identity_credentials_with_http_info variant -This returns an Array which contains the response data, status code and headers. +This returns an Array which contains the response data (`nil` in this case), status code and headers. -> , Integer, Hash)> delete_identity_credentials_with_http_info(id, type) +> delete_identity_credentials_with_http_info(id, type) ```ruby begin @@ -420,7 +419,7 @@ begin data, status_code, headers = api_instance.delete_identity_credentials_with_http_info(id, type) p status_code # => 2xx p headers # => { ... } - p data # => + p data # => nil rescue OryClient::ApiError => e puts "Error when calling IdentityApi->delete_identity_credentials_with_http_info: #{e}" end @@ -435,7 +434,7 @@ end ### Return type -[**Identity**](Identity.md) +nil (empty response body) ### Authorization diff --git a/clients/client/ruby/docs/LoginFlow.md b/clients/client/ruby/docs/LoginFlow.md index 695265f01f2..b3b00ea6a30 100644 --- a/clients/client/ruby/docs/LoginFlow.md +++ b/clients/client/ruby/docs/LoginFlow.md @@ -9,7 +9,7 @@ | **expires_at** | **Time** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | | | **id** | **String** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id> | | | **issued_at** | **Time** | IssuedAt is the time (UTC) when the flow started. | | -| **oauth2_login_challenge** | **String** | | [optional] | +| **oauth2_login_challenge** | **String** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] | | **oauth2_login_request** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] | | **refresh** | **Boolean** | Refresh stores whether this login flow should enforce re-authentication. | [optional] | | **request_url** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | | diff --git a/clients/client/ruby/docs/NormalizedProject.md b/clients/client/ruby/docs/NormalizedProject.md index cc99d1e2538..18cabc72d73 100644 --- a/clients/client/ruby/docs/NormalizedProject.md +++ b/clients/client/ruby/docs/NormalizedProject.md @@ -11,6 +11,7 @@ | **slug** | **String** | The project's slug | [readonly] | | **state** | **String** | The state of the project. running Running halted Halted deleted Deleted | [readonly] | | **subscription_id** | **String** | | [optional] | +| **subscription_plan** | **String** | | [optional] | | **updated_at** | **Time** | Last Time Project was Updated | [readonly] | ## Example @@ -26,6 +27,7 @@ instance = OryClient::NormalizedProject.new( slug: null, state: null, subscription_id: null, + subscription_plan: null, updated_at: null ) ``` diff --git a/clients/client/ruby/docs/ProjectBranding.md b/clients/client/ruby/docs/ProjectBranding.md index e4bccffbf4b..47c2ac1f797 100644 --- a/clients/client/ruby/docs/ProjectBranding.md +++ b/clients/client/ruby/docs/ProjectBranding.md @@ -8,7 +8,7 @@ | **default_theme** | [**ProjectBrandingTheme**](ProjectBrandingTheme.md) | | | | **id** | **String** | The customization ID. | [readonly] | | **project_id** | **String** | The Project's ID this customization is associated with | | -| **themes** | [**Array<ProjectBrandingTheme>**](ProjectBrandingTheme.md) | The Project Branding Themes | | +| **themes** | [**Array<ProjectBrandingTheme>**](ProjectBrandingTheme.md) | | | | **updated_at** | **Time** | Last Time Branding was Updated | [readonly] | ## Example diff --git a/clients/client/ruby/docs/ProjectMetadata.md b/clients/client/ruby/docs/ProjectMetadata.md index 0f4cf9982a9..f11a7e31d89 100644 --- a/clients/client/ruby/docs/ProjectMetadata.md +++ b/clients/client/ruby/docs/ProjectMetadata.md @@ -11,6 +11,7 @@ | **slug** | **String** | The project's slug | [optional][readonly] | | **state** | **String** | The state of the project. running Running halted Halted deleted Deleted | | | **subscription_id** | **String** | | [optional] | +| **subscription_plan** | **String** | | [optional] | | **updated_at** | **Time** | Last Time Project was Updated | | ## Example @@ -26,6 +27,7 @@ instance = OryClient::ProjectMetadata.new( slug: null, state: null, subscription_id: null, + subscription_plan: null, updated_at: null ) ``` diff --git a/clients/client/ruby/docs/RegistrationFlow.md b/clients/client/ruby/docs/RegistrationFlow.md index 2c54bc5c62b..5b8cf102b2e 100644 --- a/clients/client/ruby/docs/RegistrationFlow.md +++ b/clients/client/ruby/docs/RegistrationFlow.md @@ -8,7 +8,7 @@ | **expires_at** | **Time** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | | | **id** | **String** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id> | | | **issued_at** | **Time** | IssuedAt is the time (UTC) when the flow occurred. | | -| **oauth2_login_challenge** | **String** | | [optional] | +| **oauth2_login_challenge** | **String** | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] | | **oauth2_login_request** | [**OAuth2LoginRequest**](OAuth2LoginRequest.md) | | [optional] | | **request_url** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | | | **return_to** | **String** | ReturnTo contains the requested return_to URL. | [optional] | diff --git a/clients/client/ruby/lib/ory-client.rb b/clients/client/ruby/lib/ory-client.rb index caf6e82d946..dbadce67722 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 bde5f4d8cc8..b96101667e7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 20908844096..98307ecd072 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -95,6 +95,7 @@ def create_browser_login_flow_with_http_info(opts = {}) # This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. # @param [Hash] opts the optional parameters # @option opts [String] :cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + # @option opts [String] :return_to Return to URL The URL to which the browser should be redirected to after the logout has been performed. # @return [LogoutFlow] def create_browser_logout_flow(opts = {}) data, _status_code, _headers = create_browser_logout_flow_with_http_info(opts) @@ -105,6 +106,7 @@ def create_browser_logout_flow(opts = {}) # This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. # @param [Hash] opts the optional parameters # @option opts [String] :cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + # @option opts [String] :return_to Return to URL The URL to which the browser should be redirected to after the logout has been performed. # @return [Array<(LogoutFlow, Integer, Hash)>] LogoutFlow data, response status code and response headers def create_browser_logout_flow_with_http_info(opts = {}) if @api_client.config.debugging @@ -115,6 +117,7 @@ def create_browser_logout_flow_with_http_info(opts = {}) # query parameters query_params = opts[:query_params] || {} + query_params[:'return_to'] = opts[:'return_to'] if !opts[:'return_to'].nil? # header parameters header_params = opts[:header_params] || {} 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 5ec76da789f..a9a75a5ad50 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -343,10 +343,10 @@ def delete_identity_with_http_info(id, opts = {}) # @param id [String] ID is the identity's ID. # @param type [String] Type is the credential's Type. One of totp, webauthn, lookup # @param [Hash] opts the optional parameters - # @return [Identity] + # @return [nil] def delete_identity_credentials(id, type, opts = {}) - data, _status_code, _headers = delete_identity_credentials_with_http_info(id, type, opts) - data + delete_identity_credentials_with_http_info(id, type, opts) + nil end # Delete a credential for a specific identity @@ -354,7 +354,7 @@ def delete_identity_credentials(id, type, opts = {}) # @param id [String] ID is the identity's ID. # @param type [String] Type is the credential's Type. One of totp, webauthn, lookup # @param [Hash] opts the optional parameters - # @return [Array<(Identity, Integer, Hash)>] Identity data, response status code and response headers + # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers def delete_identity_credentials_with_http_info(id, type, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: IdentityApi.delete_identity_credentials ...' @@ -390,7 +390,7 @@ def delete_identity_credentials_with_http_info(id, type, opts = {}) post_body = opts[:debug_body] # return_type - return_type = opts[:debug_return_type] || 'Identity' + return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || ['oryAccessToken'] 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 786810fa962..baa9776bc70 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1b4dc29a6d6..e27f2962377 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 688ef4e8594..23f6c3d1459 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 dc9e05e714d..e83ca526abc 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b4794535a87..20976abd38f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 eca96ef834f..6ce368dc7ac 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 52f4fd6c833..24ef035d246 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0bb6fdde6cd..a3458ed809e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c91911e0dbb..d7e66592424 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 deea93a5a72..043854e260d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 47e0ae96dae..940b387b44a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 75c2f9a54df..362e7258c84 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3fc50c951d2..d594bc80867 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 09ac273ffac..dba59e73e0b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ffb56dde6dc..89f14dcc2be 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 83dd3b24b26..e51d20845b2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8bf60d70a1c..524e3b6db99 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 bcc8989aeed..fc5ca71d878 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 dba7b9884d1..b915d826d6c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5228a17db5b..99eca66f8c7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ee1afa4c39e..503b2d5065b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 db4bd23293f..45dc7750154 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1c50368467c..64971b3464f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b7364c170af..2c1fe958501 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1eba6215e50..1547512206c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f3bfcf69b4a..0d3ccf0ca53 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 80e9874eaaf..b20dbf4a505 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 288b1ae8907..e9abbec787e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f16724a6106..cc2116c4f21 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 13240dd1519..be66840a85f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ae0dc13e83e..265c3eada9e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c034b3a0bea..737ecb3aa3d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_invite.rb b/clients/client/ruby/lib/ory-client/models/create_project_invite.rb index 436728c0c7d..94c2d08ea7e 100644 --- a/clients/client/ruby/lib/ory-client/models/create_project_invite.rb +++ b/clients/client/ruby/lib/ory-client/models/create_project_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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_invites_response.rb b/clients/client/ruby/lib/ory-client/models/create_project_invites_response.rb index bda603893f9..9cfa795cfa1 100644 --- a/clients/client/ruby/lib/ory-client/models/create_project_invites_response.rb +++ b/clients/client/ruby/lib/ory-client/models/create_project_invites_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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 26beabdb3c8..8dcf41267e3 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3170ca3a959..49c3d9a6d4e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f9b1381dc2d..1420f4044ed 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 eba347a2211..e24faa3bff0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b78d55d47ea..04e82855235 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2e431b8d88d..272ff28b274 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e67688227df..44b887e899d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 723fd8786ac..1e4ed8c359f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2bb5698ae00..9d99117663e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a4a64afdd98..a86c106d58d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4429449c6d4..c967f8d2fb7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 55ee5e4d4b7..73c31f421c6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d2bb1225ae9..1f28303da96 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7284856408e..9238c854f92 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 664a3b61a73..63cd4ab9768 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 32c0d1eb2e3..5a44b52b366 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5b01e56bd92..9fe777fd095 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d9beabbfe01..d0edc70b642 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3441eb3267b..2e7ea134caf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3127a831d37..8ae3761b8c2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7367e37a61e..40ba08f4a3a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a3d6d43a4f0..c580aa7012a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c7a7dde17e4..edeaab61a9d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 67096121939..bad874646c8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 202af559a4e..45483c7b9c8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9ea3573a458..517ae40d04e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e3ed82ab2da..e8ac76081f2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f3c22af23ad..d4906ff8da2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 facbe3c3b4a..a518b5d6b1d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 86cbcd4c213..cebde34aa73 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c53d61f27c3..1a04eacaf56 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b207628edde..8761d936ba6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c9fa4776d49..a97d39a1f8c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e2d745988fa..4d791a9a199 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f0a94cb03aa..3b0d73d9666 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4a7716227b7..288bd366ec7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 36b5e918cbb..d9a7c6ed859 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e93ebf8e410..c25893fa1c6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 99b18229590..961379b4435 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a7de50098fc..8ee2605e518 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 56032a4afb0..99ad994d69c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 dabc7d858fd..53a22c5ae03 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 97e85e320e7..a7a87d4213b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cb5cb2f1ad4..ca326260478 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6d8037a2bda..dd945da1819 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 49b84463323..d37c35087d2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0ef1b1704a3..8ca81ea3b08 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4aa0213d5d6..1c95d9a1e39 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a6a9ec69ce6..d0b9e81f678 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 55ffdc27762..2a09e15138a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f29de6238c7..4736fd6a4d4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -30,6 +30,7 @@ class LoginFlow # IssuedAt is the time (UTC) when the flow started. attr_accessor :issued_at + # Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. attr_accessor :oauth2_login_challenge attr_accessor :oauth2_login_request @@ -106,7 +107,6 @@ def self.openapi_types # List of attributes with nullable: true def self.openapi_nullable Set.new([ - :'oauth2_login_challenge', ]) end 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 a004421ec99..2c0d0e30e54 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e6ba88c4048..4aa4c5a1ef9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f080b6b920a..14762b052b8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 77939744090..b69ed91cb44 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5e6f7565524..52073138170 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f62ab332963..756fc18da37 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 415dd7ad7e2..e83d284cc1b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2484424aae6..3fe36f60c68 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 47028974529..26807195857 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -33,6 +33,8 @@ class NormalizedProject attr_accessor :subscription_id + attr_accessor :subscription_plan + # Last Time Project was Updated attr_accessor :updated_at @@ -68,6 +70,7 @@ def self.attribute_map :'slug' => :'slug', :'state' => :'state', :'subscription_id' => :'subscription_id', + :'subscription_plan' => :'subscription_plan', :'updated_at' => :'updated_at' } end @@ -87,6 +90,7 @@ def self.openapi_types :'slug' => :'String', :'state' => :'String', :'subscription_id' => :'String', + :'subscription_plan' => :'String', :'updated_at' => :'Time' } end @@ -95,6 +99,7 @@ def self.openapi_types def self.openapi_nullable Set.new([ :'subscription_id', + :'subscription_plan', ]) end @@ -143,6 +148,10 @@ def initialize(attributes = {}) self.subscription_id = attributes[:'subscription_id'] end + if attributes.key?(:'subscription_plan') + self.subscription_plan = attributes[:'subscription_plan'] + end + if attributes.key?(:'updated_at') self.updated_at = attributes[:'updated_at'] end @@ -220,6 +229,7 @@ def ==(o) slug == o.slug && state == o.state && subscription_id == o.subscription_id && + subscription_plan == o.subscription_plan && updated_at == o.updated_at end @@ -232,7 +242,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [created_at, current_revision, hosts, id, slug, state, subscription_id, updated_at].hash + [created_at, current_revision, hosts, id, slug, state, subscription_id, subscription_plan, updated_at].hash end # Builds the object from hash 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 3955b33089b..fe19e371999 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_hook.rb b/clients/client/ruby/lib/ory-client/models/normalized_project_revision_hook.rb index 5c68fe3a190..117d2c15bae 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8ea3e8b792d..92a98204d89 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cc4b25c3bd9..e78e7733a4b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e3e4aa9d3a5..41afafbeb6b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2f969baacbe..bb96467b209 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 32e98cb7649..403cd66ab4b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 168b9e7b736..01ace5170a7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 82ee6211db5..c18d87c68a7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a05fd9f942a..eba66ebaea0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 87f4d93b403..22935a760ee 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ddbf20878e5..01cd7b7ccf9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 92ad0f73d94..f87212c1a9a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9a741b0cf49..f63d599f204 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3acece402ad..12123d856cf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 bae9c70ba50..223e8a5bbef 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 046511ebb68..b1879df2517 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0f141e68f24..096514861cd 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6660ce56843..991b557c800 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2f8103b9215..fc33f58e3c8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 04b6dcc468c..9b3e555f1ec 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 01f9ddc1986..9f2b0a3c2c4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cf1f552ad81..bd6c483a250 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cbf82dd1c6c..73b2e8880e4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9352fb19b0b..cf1e00fdb99 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 bcef57fb94f..0f331085877 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 beea682b264..627317c6d81 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b9da4fc9b56..c8b55f8f89c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -14,7 +14,6 @@ require 'time' module OryClient - # The Project Branding class ProjectBranding # The Customization Creation Date attr_accessor :created_at @@ -27,7 +26,6 @@ class ProjectBranding # The Project's ID this customization is associated with attr_accessor :project_id - # The Project Branding Themes attr_accessor :themes # Last Time Branding was Updated 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 b3748009af4..ab6a380acb8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -14,7 +14,6 @@ require 'time' module OryClient - # The Project Branding Colors class ProjectBrandingColors # AccentDefaultColor is a hex color code used by the Ory Account Experience theme. attr_accessor :accent_default_color 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 c8252c68f58..c62e06690a8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -14,7 +14,6 @@ require 'time' module OryClient - # The Project Branding Theme class ProjectBrandingTheme # AccentDefaultColor is a hex color code used by the Ory Account Experience theme. attr_accessor :accent_default_color 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 9ebbfdf9970..ae9cdf47e23 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_invite.rb b/clients/client/ruby/lib/ory-client/models/project_invite.rb index faa9eee2b8f..78800023d3a 100644 --- a/clients/client/ruby/lib/ory-client/models/project_invite.rb +++ b/clients/client/ruby/lib/ory-client/models/project_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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0c9d1bf9e59..dbc939884bd 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -34,6 +34,8 @@ class ProjectMetadata attr_accessor :subscription_id + attr_accessor :subscription_plan + # Last Time Project was Updated attr_accessor :updated_at @@ -69,6 +71,7 @@ def self.attribute_map :'slug' => :'slug', :'state' => :'state', :'subscription_id' => :'subscription_id', + :'subscription_plan' => :'subscription_plan', :'updated_at' => :'updated_at' } end @@ -88,6 +91,7 @@ def self.openapi_types :'slug' => :'String', :'state' => :'String', :'subscription_id' => :'String', + :'subscription_plan' => :'String', :'updated_at' => :'Time' } end @@ -96,6 +100,7 @@ def self.openapi_types def self.openapi_nullable Set.new([ :'subscription_id', + :'subscription_plan', ]) end @@ -144,6 +149,10 @@ def initialize(attributes = {}) self.subscription_id = attributes[:'subscription_id'] end + if attributes.key?(:'subscription_plan') + self.subscription_plan = attributes[:'subscription_plan'] + end + if attributes.key?(:'updated_at') self.updated_at = attributes[:'updated_at'] end @@ -216,6 +225,7 @@ def ==(o) slug == o.slug && state == o.state && subscription_id == o.subscription_id && + subscription_plan == o.subscription_plan && updated_at == o.updated_at end @@ -228,7 +238,7 @@ def eql?(o) # Calculates hash code according to all attributes. # @return [Integer] Hash code def hash - [created_at, hosts, id, name, slug, state, subscription_id, updated_at].hash + [created_at, hosts, id, name, slug, state, subscription_id, subscription_plan, updated_at].hash end # Builds the object from hash 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 e316e010f09..64254e5431a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9233d88fd26..9f6c8dffbb2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3c59f97f7b3..b471d840a23 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6796d8da4f5..4a321666127 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a413d9ddb78..b30d10feed6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6096991d755..31950540067 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ffe228261da..dad4e094b7d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 15f9a07b232..5cc123f1624 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ac65d4e2901..6db91124cb4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7d07b30e4e8..b404256ca05 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 29299678682..6c8bfe3d19c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -26,6 +26,7 @@ class RegistrationFlow # IssuedAt is the time (UTC) when the flow occurred. attr_accessor :issued_at + # Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. attr_accessor :oauth2_login_challenge attr_accessor :oauth2_login_request @@ -91,7 +92,6 @@ def self.openapi_types # List of attributes with nullable: true def self.openapi_nullable Set.new([ - :'oauth2_login_challenge', ]) end 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 286af4b0504..7300dffec95 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8e42acfea65..5fd7927b152 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fe31cf9c6ab..8a06e5eafdb 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a227ffe0951..5913de48586 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 16f76610ddb..71a6ad27995 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7505d3efc34..2f015044a85 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c6f26095e50..7b8750688a7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8d462911c4f..0c904cd3df2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 37f72bb69c0..38d06d7bd67 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 959f9df3e09..a3462dec5bc 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 99983ef7409..74ecf733e98 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 500d516bbb8..73184e5bb74 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0e6847edb5f..050c397e3f3 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e12429e9a52..d2c82a2fd59 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3a453906222..9deeedd2b33 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -14,7 +14,6 @@ require 'time' module OryClient - # Set Project Branding Theme Request Parameters class SetProjectBrandingThemeBody # Logo type attr_accessor :logo_type 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 39fae0933ed..d31e8db81b9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d442e6158df..0399f5ff453 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fda3b31d1d7..fb1e54a6b8c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 eb872dd851e..a97f715a9c7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b2ee2970113..27fdd4a1c01 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4799bff92be..52f6ca40632 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 857052703ae..e8e4e5f2bd4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4fde8528daf..74a4220088a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d82f7fd0cd9..4371eb6e95b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 830386bd938..7978380f378 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d5e4d11adb1..a5c659a9c6b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3ef8ae6d395..dcdc8d51f03 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6e8891562ba..cabc30b40cf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 eda81fe154e..bda4a4d3486 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 88835f21239..80e8c7f9668 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8f132e62780..7f7d126578a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 622c7114e34..b3014ecd795 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 732be1b1a3f..d97ea3735ea 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 642506299e8..e0fd78511da 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2daa6cdf677..31a12d7bbe4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f5676e8c36e..43715e9b6aa 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f1f4e02a99b..d5c7b474cbe 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4962d80faab..5c92602e4db 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d0b173b6343..5826e27d10f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fe245f62ed2..0429f0f35c5 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cb46258fe2a..bc7fe4356b9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 324e2e343aa..e6124f62021 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6cf05265892..783e8518bcd 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7bdacc361a2..0b8f19ef295 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 852386e03dd..03ca18204e0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f21884ab8c5..bfb9860f78b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8ceeee0c1ca..c48d2fd0a05 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1e5fab10f1c..662b74a3b8e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7e26400491f..1e6051fce16 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 58a742a8762..cee2bd99f00 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4b331dc5132..bf0b6a5b9cb 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4d4a5e3a0c7..1823e893a42 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 def5f96c043..916afc32251 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3ec3048062a..f874d393911 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d4faa1627ef..2be9ba98699 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3f9d8b7a845..fc9284c4e40 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7d5a5e35e07..df9b477a053 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a1b11fbebc4..77b0bcc1125 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0f9c98453a8..643e656df4d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f9151871a24..740620dc318 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c5d30da955b..7e802c267a4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2a34be93219..5c765bae7b2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fc77f5f7e9d..5b610d5d800 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e13cd3e52e9..218f57e47fe 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 91274f86bac..217d43d9ecc 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 356f48c1062..57eb5edd099 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cd003444940..88762d19ada 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 dfd7f15e273..ad50a6b3f32 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2e154faacf5..c13d52b6e9c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 784aed2f6c6..44893e5d27a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6e22c22fcce..44dbebfeb13 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d915159c068..5c06ad7070b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2598918b826..deeba232fd1 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 329fe609d1e..59751c3b214 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.39 +The version of the OpenAPI document: 1.1.39.alpha0 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.39' + VERSION = '1.1.39.alpha0' end diff --git a/clients/client/ruby/ory-client.gemspec b/clients/client/ruby/ory-client.gemspec index ddcf6be8abd..a3cfd3ff154 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 92dd6654ee1..6ae03a9b303 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4be25d7483f..b38aa7837a6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -53,6 +53,7 @@ # This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. # @param [Hash] opts the optional parameters # @option opts [String] :cookie HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + # @option opts [String] :return_to Return to URL The URL to which the browser should be redirected to after the logout has been performed. # @return [LogoutFlow] describe 'create_browser_logout_flow test' do it 'should work' do diff --git a/clients/client/ruby/spec/api/identity_api_spec.rb b/clients/client/ruby/spec/api/identity_api_spec.rb index 99ee26c9111..ce5b2bb9d43 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -98,7 +98,7 @@ # @param id ID is the identity's ID. # @param type Type is the credential's Type. One of totp, webauthn, lookup # @param [Hash] opts the optional parameters - # @return [Identity] + # @return [nil] describe 'delete_identity_credentials test' 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/api/jwk_api_spec.rb b/clients/client/ruby/spec/api/jwk_api_spec.rb index a4d0b5372c4..d77a4866548 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5e5099c564a..3ebcf580eb3 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 538ef327df8..56184ab1c73 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b0931f7233a..234eecfded1 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b0093044c0f..6e79c511248 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0044d938fb7..4da55e31d59 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9bdfe993de0..28285297140 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 28cd9cd52fc..0469148054a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b8efc272bd8..159d90e0b71 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 aa721eb1e47..5c1ee7acca3 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6e6f6dd6904..0aaa52da581 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9ce45e341a1..6b3d7facca4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9b55fecfc0c..aa09a143477 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f6418f34799..d05a9ce2306 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9b1dc117627..16bfc4a927b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 38f1d8dc0b7..96bd1c434db 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e88a2c44a23..62b260999e2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7a69f2be233..8ffc521ed11 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 443d43c2f12..fffd528e378 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1e886ef2320..6771dd0dab8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7df5b26b6a3..cf8003213e6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c1705475756..a24dc8b1162 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9a9e34fba09..33f4e72e0e6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cc4ebf4ca85..4aac8623d7d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 649e0b6cfb9..f5db21e3e13 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f72ce23cf45..265e5c480b7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0a971351180..4910f38e17f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0ab6eb830ae..6930db5b5d4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6dd39247786..6d7ad6b60dd 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 48b1f889da1..1637a5da97d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b1b6667bc61..b32940a91d9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_invite_spec.rb b/clients/client/ruby/spec/models/create_project_invite_spec.rb index 927091ed796..971d06d3e9c 100644 --- a/clients/client/ruby/spec/models/create_project_invite_spec.rb +++ b/clients/client/ruby/spec/models/create_project_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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_invites_response_spec.rb b/clients/client/ruby/spec/models/create_project_invites_response_spec.rb index 35505fc8686..1579811d247 100644 --- a/clients/client/ruby/spec/models/create_project_invites_response_spec.rb +++ b/clients/client/ruby/spec/models/create_project_invites_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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 74d004c9a61..4c63c0be364 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c62649ecdbd..7c9a85452b0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4afe9e42521..db5f51068cf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fd93ea76e5c..0ee8777f189 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6a112efa109..214be090c50 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 255cd88df96..ca2587ffe22 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e2a728e4029..6b3ed05d8d6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ab9e7613707..dd4f9141ed9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1f07f4ded66..36a2742fc42 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 669dcec25ba..646d78093a7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4ae8a1f1f39..b9d74853b60 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 af2a063aa56..440d5b839f6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 46969c15b83..3c17dd60a59 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 88116f960db..0e804ae5de7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9e8fce61178..23c7d08156c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b081a2fc726..5bc8bea6b74 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b4aff466b22..ac6c05984e7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8272da4af85..25872e942d3 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 405f05e7fe1..7fc19886187 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2259fe705e0..349d6fcf9fa 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a174ba13d35..30533a97fc0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ae3162c3630..8b15b2d4a9f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 da8abd7c9fc..68ef273a6bc 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 28ec4d53976..c21d5e52d80 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 42938064a08..e16d89cfa9e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4a72bb65df9..6552b79c7ab 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 cac3a9419e2..4e3d1293e46 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1a604d66cfc..3422eb43d58 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 281d770e947..26b422e7806 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c628e6463e5..e9993dba89a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5d263e35dba..dcf20f8ced9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 82bba5955f1..cf0c4a030d9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0490c115a7c..e605b37bb08 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ded94017926..6918d279652 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 766ee80a759..93b5447fc89 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d8626d6ec3a..f90f59f6480 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9f2704de299..2a141697f76 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 46ffef1ee29..d8ce65ca5c0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0098b5f3b33..39b13638d92 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1f48d110e86..3b7e9bfba4d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c9322e8e623..9241f303220 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4550c7d18bf..5a03a07564b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 c63f0b21b93..75d04d9a501 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 88d52ae574a..458677bca20 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2793a3f122f..ae8d1e18842 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b05e9f06215..bad6c52c202 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 23162b58538..6288948f5e4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a812d78c67b..978c299b441 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f6d4b70b79a..5363b2afd7b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b758ef9b233..d072b2eff12 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0cf7254dab7..152b04dd537 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fb9a805626e..0d109805a96 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e2cd1a485bc..6c04f937edf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 81dc65f13d8..0c32cab3e41 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8cca171e941..0a3db6af26f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7f838c3d406..dd62cfbb813 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 03f80861c20..c08c3a3d5c5 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 788d5fbfa5e..2b511df8074 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5276982f564..8e5beb63ff9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f3450d8aa45..fb272521b4d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1fa3243ec7e..263615dc47c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4bb8df1b79a..cc7a3ef7288 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_third_party_provider_spec.rb b/clients/client/ruby/spec/models/normalized_project_revision_third_party_provider_spec.rb index cc4f20b788c..775b0ab7829 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 15f8feb701c..3dcb63caa5e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -71,6 +71,12 @@ end end + describe 'test attribute "subscription_plan"' do + it 'should work' do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + describe 'test attribute "updated_at"' 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/o_auth2_client_spec.rb b/clients/client/ruby/spec/models/o_auth2_client_spec.rb index fdc048f173d..a491bbd15fa 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 fd101367279..96f2de9fa3f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 61520eb17bd..7a600419c8a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 6c6f5298dbc..4f6c72fb0c4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8dad1944fe4..671064bd258 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 de0bbe8ef2c..2821fef0d59 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 94a52d639ba..a4322603fcf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4450fb2fb6d..3d76363cdc7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b4c66f5678c..e4a37918336 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 33810b21086..7226dbac2c5 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4720e6987f1..57193e262fd 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 30c2534229c..344e4bba48a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b177e84fbdd..8f72b1cd9b6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3c34d902a12..9e20da995db 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8786d78be12..17f0c627269 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9079ab64fe9..d8d79d22810 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2c7798e46c9..f072e6d80d9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d5acc055424..21f1cad62c2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1d38385985c..57fe36e73af 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d88d684c60d..ed7b7d9cc13 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ca483678e1b..b7189dbe40c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f68b93b1085..acf1d1a0fbf 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4c4664258bb..315bf9f0324 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 36e4f799765..ab4c53e1c46 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0020474a148..55d7f40ca9c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3c7c3cced66..02ca6de4935 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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_invite_spec.rb b/clients/client/ruby/spec/models/project_invite_spec.rb index 26b61b79a6b..fc35322c90d 100644 --- a/clients/client/ruby/spec/models/project_invite_spec.rb +++ b/clients/client/ruby/spec/models/project_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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 da5a8c97dd1..dc875b9c7a6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 Contact: support@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.1 @@ -71,6 +71,12 @@ end end + describe 'test attribute "subscription_plan"' do + it 'should work' do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + describe 'test attribute "updated_at"' 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/project_service_identity_spec.rb b/clients/client/ruby/spec/models/project_service_identity_spec.rb index 141c4923719..2437fbad8d9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 07641c0b548..2f96f1ca63d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3d698e0a3ba..a2bc5b9a8eb 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ce582a69d32..6b1e7e6f4ed 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b5f8ee176a2..8c670add8be 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 55aa7acf652..e9bc9e077c0 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1a4e7819a08..e159ab181b4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2bd95fec9a9..dab7e8311b8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e665b2e93df..df6d749ef12 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d780accb181..086dd37efc5 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 050edcf0d0e..5749b33413f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a81a6d0df44..3a9a0c74d68 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a0ff9f5621f..4a77e6ae758 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1a7fa645132..703ce532c4b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 dd6d8309d94..20dd2f0a817 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 53274e119e9..6a533f126e6 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d5559156411..bbc17535e91 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 db08a58051a..80b13f42a68 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8ed38c0f3a1..4dadebe627f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 55b92a24c3e..8b6435cf497 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 f3c6b028cf8..ee652da1d3b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3d37716214e..72d14bfc953 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ef58832116a..df165f1db20 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 edf149f41ef..67c6b72db2c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0072f6eb78f..540bb298064 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 06401971c8b..637ad17c9d2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 04416536539..79fa9c5d11b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 22706874a97..8c65bd02b5c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 34ead5c8c4c..7e1ac24aed5 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4ea2382f5e0..1aadaf3f824 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 16cf34f1309..1ad441b2ad7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b594b35f802..e1be82f9478 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 197313513ed..19d735582ef 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b4e3198525f..6b3c30122e1 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 54ac280496d..830916f213f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3eeed759534..a2bfcd34193 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 3e285342cef..3d9df8f4fa8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b7eeb139d1f..a9bdbb76a42 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0def1065fcc..f6217be54a2 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d36c09731be..4e7b70b2fa8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 5eed635f9c4..e7d6fe2b839 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b09ecf4c951..8b28b5c67d9 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e2458cf1a7b..dc4f9d7af67 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b21b8ca5747..5f77a558d1b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 41013cd16fd..f2f557c58e8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 defc5563080..27079169c99 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b15c9defc37..133d78c6bfc 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 69a96c88eae..32c676fcdac 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 e319611eb40..6b60419b57e 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 893c2bd938f..dc19477f16f 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0c6b4ac14b2..6323dd75cc7 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1c9a70834b3..d790aabc633 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b8cfdc17d1d..a2e73ea3164 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9f2808b4fb4..fa1a346ca34 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 49de7899f66..4e5b7f4a1bb 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 51eba7e66bf..bbef7823f81 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4d2c3f5fcaf..1a2d86cca58 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 a8550426243..f3a66cecbc8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 80b3c5fd0b4..029680e103b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d83d8f7dba5..ad71f03e5d5 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 65c98eec8d8..2ab6ce6bd3b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 55134def781..2139e2dc52b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 8ccb5f47e02..421ae27b1f1 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d7289dd6126..ebbc225e3ac 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 dc940038bf6..c0746cbef9d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 bb976b450f8..3c5ddad8b8b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0ef2fc8220b..9c412cc23fd 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 68cb765f0b4..f9931c28688 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 1473f94c859..035eed42de8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ee899c42a49..9c179f53597 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 2b531daa25d..1aedd6df931 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 ff8f605aa76..3aff6177864 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 53b7bd7e47b..6ca853ee1ec 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 0dc9202692f..9459132065a 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9a52883dfad..3b62821928d 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b3132b9fae6..51d385ceeb8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 9f544409647..68be3a422df 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 d766b5a7836..69c721c3bd4 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 95eeeb4a859..b4197c3078b 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 60bbcc66b36..3ea4d3fffe8 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 117e99356a1..a6dbe69429c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 aef87219b46..65ac9fcee13 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 b3178c64a82..abdb5701709 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 7414b4aeda5..421d16c7e50 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 142bbcd1fa8..053882febfe 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 4ca3ed092ef..b852d49926c 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.39 +The version of the OpenAPI document: v1.1.39-alpha.0 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 90e05d55b57..591ef7d0f81 100644 --- a/clients/client/rust/Cargo.lock +++ b/clients/client/rust/Cargo.lock @@ -2,12 +2,42 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "addr2line" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + [[package]] name = "autocfg" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +[[package]] +name = "backtrace" +version = "0.3.67" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + [[package]] name = "base64" version = "0.21.2" @@ -26,6 +56,12 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" +[[package]] +name = "cc" +version = "1.0.79" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" + [[package]] name = "cfg-if" version = "1.0.0" @@ -95,11 +131,17 @@ dependencies = [ "pin-utils", ] +[[package]] +name = "gimli" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" + [[package]] name = "h2" -version = "0.3.19" +version = "0.3.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" +checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" dependencies = [ "bytes", "fnv", @@ -156,9 +198,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" [[package]] name = "hyper" -version = "0.14.26" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -200,9 +242,9 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.7.2" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" [[package]] name = "itoa" @@ -221,9 +263,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.146" +version = "0.2.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "log" @@ -231,6 +273,12 @@ version = "0.4.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + [[package]] name = "mime" version = "0.3.17" @@ -247,6 +295,15 @@ dependencies = [ "unicase", ] +[[package]] +name = "miniz_oxide" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" +dependencies = [ + "adler", +] + [[package]] name = "mio" version = "0.8.8" @@ -267,6 +324,15 @@ dependencies = [ "autocfg", ] +[[package]] +name = "object" +version = "0.30.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385" +dependencies = [ + "memchr", +] + [[package]] name = "once_cell" version = "1.18.0" @@ -275,7 +341,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "ory-client" -version = "1.1.39" +version = "1.1.39-alpha.0" dependencies = [ "num-traits", "reqwest", @@ -305,9 +371,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "proc-macro2" -version = "1.0.60" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" +checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" dependencies = [ "unicode-ident", ] @@ -356,6 +422,12 @@ dependencies = [ "winreg", ] +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + [[package]] name = "ryu" version = "1.0.13" @@ -381,9 +453,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.97" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdf3bf93142acad5821c99197022e170842cdbc1c30482b98750c688c640842a" +checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" dependencies = [ "itoa", "ryu", @@ -423,9 +495,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.18" +version = "2.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" +checksum = "2efbeae7acf4eabd6bcdcbd11c92f45231ddda7539edc7806bd1a04a03b24616" dependencies = [ "proc-macro2", "quote", @@ -449,11 +521,12 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.28.2" +version = "1.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" +checksum = "374442f06ee49c3a28a8fc9f01a2596fed7559c6b99b31279c3261778e77d84f" dependencies = [ "autocfg", + "backtrace", "bytes", "libc", "mio", diff --git a/clients/client/rust/Cargo.toml b/clients/client/rust/Cargo.toml index c87e9e73c0d..f3ff30bfb98 100644 --- a/clients/client/rust/Cargo.toml +++ b/clients/client/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ory-client" -version = "1.1.39" +version = "1.1.39-alpha.0" 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 b2c210cca1b..52912285c8d 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.39 -- Package version: v1.1.39 +- API version: v1.1.39-alpha.0 +- Package version: v1.1.39-alpha.0 - Build package: `org.openapitools.codegen.languages.RustClientCodegen` ## Installation diff --git a/clients/client/rust/docs/FrontendApi.md b/clients/client/rust/docs/FrontendApi.md index 2c1a8dff2d4..a9ea44fb80c 100644 --- a/clients/client/rust/docs/FrontendApi.md +++ b/clients/client/rust/docs/FrontendApi.md @@ -73,7 +73,7 @@ No authorization required ## create_browser_logout_flow -> crate::models::LogoutFlow create_browser_logout_flow(cookie) +> crate::models::LogoutFlow create_browser_logout_flow(cookie, return_to) Create a Logout URL for Browsers This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. @@ -84,6 +84,7 @@ This endpoint initializes a browser-based user logout flow and a URL which can b Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **cookie** | Option<**String**> | HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. | | +**return_to** | Option<**String**> | Return to URL The URL to which the browser should be redirected to after the logout has been performed. | | ### Return type diff --git a/clients/client/rust/docs/IdentityApi.md b/clients/client/rust/docs/IdentityApi.md index 260d5a1871e..2429a338bb0 100644 --- a/clients/client/rust/docs/IdentityApi.md +++ b/clients/client/rust/docs/IdentityApi.md @@ -177,7 +177,7 @@ Name | Type | Description | Required | Notes ## delete_identity_credentials -> crate::models::Identity delete_identity_credentials(id, _type) +> delete_identity_credentials(id, _type) Delete a credential for a specific identity Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type You can only delete second factor (aal2) credentials. @@ -192,7 +192,7 @@ Name | Type | Description | Required | Notes ### Return type -[**crate::models::Identity**](identity.md) + (empty response body) ### Authorization diff --git a/clients/client/rust/docs/LoginFlow.md b/clients/client/rust/docs/LoginFlow.md index 865a1ef6b1f..bcc01456d06 100644 --- a/clients/client/rust/docs/LoginFlow.md +++ b/clients/client/rust/docs/LoginFlow.md @@ -9,7 +9,7 @@ Name | Type | Description | Notes **expires_at** | **String** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **id** | **String** | ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http:///?flow= | **issued_at** | **String** | IssuedAt is the time (UTC) when the flow started. | -**oauth2_login_challenge** | Option<**String**> | | [optional] +**oauth2_login_challenge** | Option<**String**> | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2_login_request** | Option<[**crate::models::OAuth2LoginRequest**](oAuth2LoginRequest.md)> | | [optional] **refresh** | Option<**bool**> | Refresh stores whether this login flow should enforce re-authentication. | [optional] **request_url** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | diff --git a/clients/client/rust/docs/NormalizedProject.md b/clients/client/rust/docs/NormalizedProject.md index 1b0558d11cf..4731d135fef 100644 --- a/clients/client/rust/docs/NormalizedProject.md +++ b/clients/client/rust/docs/NormalizedProject.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **slug** | **String** | The project's slug | [readonly] **state** | **String** | The state of the project. running Running halted Halted deleted Deleted | [readonly] **subscription_id** | Option<**String**> | | [optional] +**subscription_plan** | Option<**String**> | | [optional] **updated_at** | **String** | Last Time Project was Updated | [readonly] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/rust/docs/ProjectBranding.md b/clients/client/rust/docs/ProjectBranding.md index 7b84b2ff2b4..5afef89fc9b 100644 --- a/clients/client/rust/docs/ProjectBranding.md +++ b/clients/client/rust/docs/ProjectBranding.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **default_theme** | [**crate::models::ProjectBrandingTheme**](projectBrandingTheme.md) | | **id** | **String** | The customization ID. | [readonly] **project_id** | **String** | The Project's ID this customization is associated with | -**themes** | [**Vec**](projectBrandingTheme.md) | The Project Branding Themes | +**themes** | [**Vec**](projectBrandingTheme.md) | | **updated_at** | **String** | Last Time Branding was Updated | [readonly] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/rust/docs/ProjectMetadata.md b/clients/client/rust/docs/ProjectMetadata.md index 18681d76b2b..0481c9bf9d6 100644 --- a/clients/client/rust/docs/ProjectMetadata.md +++ b/clients/client/rust/docs/ProjectMetadata.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **slug** | Option<**String**> | The project's slug | [optional][readonly] **state** | **String** | The state of the project. running Running halted Halted deleted Deleted | **subscription_id** | Option<**String**> | | [optional] +**subscription_plan** | Option<**String**> | | [optional] **updated_at** | **String** | Last Time Project was Updated | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/clients/client/rust/docs/RegistrationFlow.md b/clients/client/rust/docs/RegistrationFlow.md index 15cad5f35d6..085d6c23ad6 100644 --- a/clients/client/rust/docs/RegistrationFlow.md +++ b/clients/client/rust/docs/RegistrationFlow.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **expires_at** | **String** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | **id** | **String** | ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http:///?flow= | **issued_at** | **String** | IssuedAt is the time (UTC) when the flow occurred. | -**oauth2_login_challenge** | Option<**String**> | | [optional] +**oauth2_login_challenge** | Option<**String**> | Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. | [optional] **oauth2_login_request** | Option<[**crate::models::OAuth2LoginRequest**](oAuth2LoginRequest.md)> | | [optional] **request_url** | **String** | RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example. | **return_to** | Option<**String**> | ReturnTo contains the requested return_to URL. | [optional] diff --git a/clients/client/rust/src/apis/configuration.rs b/clients/client/rust/src/apis/configuration.rs index 8d2803d25c8..269a26092ec 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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.39/rust".to_owned()), + user_agent: Some("OpenAPI-Generator/v1.1.39-alpha.0/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 bcc67761878..12846f5763d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 be372ef4b8b..6aded32bf9a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -44,6 +44,7 @@ pub enum CreateBrowserLoginFlowError { #[derive(Debug, Clone, Serialize, Deserialize)] #[serde(untagged)] pub enum CreateBrowserLogoutFlowError { + Status400(crate::models::ErrorGeneric), Status401(crate::models::ErrorGeneric), Status500(crate::models::ErrorGeneric), UnknownValue(serde_json::Value), @@ -369,13 +370,16 @@ pub async fn create_browser_login_flow(configuration: &configuration::Configurat } /// This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. -pub async fn create_browser_logout_flow(configuration: &configuration::Configuration, cookie: Option<&str>) -> Result> { +pub async fn create_browser_logout_flow(configuration: &configuration::Configuration, cookie: Option<&str>, return_to: Option<&str>) -> Result> { let local_var_client = &configuration.client; let local_var_uri_str = format!("{}/self-service/logout/browser", configuration.base_path); let mut local_var_req_builder = local_var_client.request(reqwest::Method::GET, local_var_uri_str.as_str()); + if let Some(ref local_var_str) = return_to { + local_var_req_builder = local_var_req_builder.query(&[("return_to", local_var_str.to_string())]); + } if let Some(ref local_var_user_agent) = configuration.user_agent { local_var_req_builder = local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone()); } diff --git a/clients/client/rust/src/apis/identity_api.rs b/clients/client/rust/src/apis/identity_api.rs index c5a936f0fcd..309d4baf847 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -360,7 +360,7 @@ pub async fn delete_identity(configuration: &configuration::Configuration, id: & } /// Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type You can only delete second factor (aal2) credentials. -pub async fn delete_identity_credentials(configuration: &configuration::Configuration, id: &str, _type: &str) -> Result> { +pub async fn delete_identity_credentials(configuration: &configuration::Configuration, id: &str, _type: &str) -> Result<(), Error> { let local_var_client = &configuration.client; @@ -381,7 +381,7 @@ pub async fn delete_identity_credentials(configuration: &configuration::Configur let local_var_content = local_var_resp.text().await?; if !local_var_status.is_client_error() && !local_var_status.is_server_error() { - serde_json::from_str(&local_var_content).map_err(Error::from) + Ok(()) } else { let local_var_entity: Option = serde_json::from_str(&local_var_content).ok(); let local_var_error = ResponseContent { status: local_var_status, content: local_var_content, entity: local_var_entity }; diff --git a/clients/client/rust/src/apis/jwk_api.rs b/clients/client/rust/src/apis/jwk_api.rs index 3355d6d7ff9..30317104487 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 783f17fd7f0..4e360a3a741 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 852bd040947..be0aac67041 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2a71ac4099c..59256ce43bf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 121557b74bd..7ce4d6ee13e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 42f257cf9b1..26e9f4f9a15 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8de0441d451..5975dd04fd0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7d20702d93f..8dc8f902bd8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d6531c17b9e..d34aa73d03d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6c44d839ae5..0232a94e00f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 897386d89ff..6366d1c3d77 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 86f471e0aa2..8998e4b3d96 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a1558769b0..8ec9d4df52c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 db6327a3411..ac9666d6bca 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a113d8425c6..250dcb8ffd7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7edd5d4fb57..e2db940b8b3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7c3b44f9cd4..98f5ded6422 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d90e6612efe..f3521938042 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d6307f9613a..1370f3b4f2e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 87f8b855b16..97d76d961e7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6bd3f1b4046..8581b3d15e3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e5c85ab3d24..8095d892146 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d1bbdf6352e..f1f0e2762f9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 146bdeac367..3fb5ce96971 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3f14cd1f49a..ee1388b8dce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 50d39494d12..28c1dd85fff 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 37974f77099..c00c2b7f9d7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8ed9d0669f2..1f3a8bc9ef7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 296fa85cfd4..3d4849cd458 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_project_invite.rs b/clients/client/rust/src/models/create_project_invite.rs index 22a82f6508f..b5645d0bce4 100644 --- a/clients/client/rust/src/models/create_project_invite.rs +++ b/clients/client/rust/src/models/create_project_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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/create_project_invites_response.rs b/clients/client/rust/src/models/create_project_invites_response.rs index ad72f4ca4b3..aa6028ad1d7 100644 --- a/clients/client/rust/src/models/create_project_invites_response.rs +++ b/clients/client/rust/src/models/create_project_invites_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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7c2adbfe232..ab1a8e850af 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d29ca1d351d..1b4d87bc1de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0d351f66cf6..119107530ad 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 8ec1776e04b..d341e5b5f16 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7f68e150693..8ef2bd3e064 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 67ad3c6cd4b..cc79f709939 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bdb1e014839..fcc569c319c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6a54db3257c..eb0014bb670 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a598861fc85..8c57e8db852 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eca91c2833b..8c4eec89638 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 eb199d6804d..73039224b15 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2d602984b25..b8c0c81d257 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e2b3075e8f3..44fcb33c94a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0f98e26a715..5bbe8b73e57 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 286c382f205..89ddad954d4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5a1a3c6e4e6..9c21bb556a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0b2cc8c9531..12465e4968b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5e281e06a81..5552eab4d78 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 53c5f8b6892..44e4b810a7d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3df677c2ef7..7dbd720908b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dae9cc84a2c..3358e10ca62 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 93850eb7b73..631d03c9a4e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e8ad409903b..1039d789dc7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a78dba682d5..2bc57d586de 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6f3591590a2..8589bb43e46 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d7947bfb36b..63fc80572bc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cc92b1cb748..1877f544eef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 908ef66748d..d4a6e5716ce 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 50bdf0f4fb2..c8b910ea0f3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 829b23dd6a2..fb5db55399f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bcd99d2ffed..d2718204a76 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2220871c902..aa53a8a3804 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4c08ae586ee..9f886d4396f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e27f8b92ff1..07bebd1a13d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 72386fef15b..32ba9cfef65 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1733abba682..b5ad8a9d6b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 381f55fa518..55fa6907d42 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4fd9afdca08..4d3f93f6fca 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a404e23b932..a949a9ad29f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e0e5b53d9da..128100dd3cc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1d6f63597fd..f6731a20c22 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6ff061c8aef..438f45327df 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b4f2d583c13..f334b2be4fc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f77553f628a..964191e249e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ffce220819c..375cdfa56c7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 3ffba6ea246..e1147124000 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b23b08f7209..b596285511f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b805864ca9e..045cfb82e3a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4479283d22b..4969e2765e5 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 628a8d5ba80..28ecf0f7960 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 87d3133eacf..3fe480ed2e4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -28,6 +28,7 @@ pub struct LoginFlow { /// IssuedAt is the time (UTC) when the flow started. #[serde(rename = "issued_at")] pub issued_at: String, + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. #[serde(rename = "oauth2_login_challenge", skip_serializing_if = "Option::is_none")] pub oauth2_login_challenge: Option, #[serde(rename = "oauth2_login_request", skip_serializing_if = "Option::is_none")] diff --git a/clients/client/rust/src/models/logout_flow.rs b/clients/client/rust/src/models/logout_flow.rs index f90c2a7831d..7cb343cf051 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2d37042c171..cca2eae27c8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c0a1ab93884..ea0e2f6327c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a4d9da6a43c..7af23dc9bd0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0a4bbcb655f..67d18bc138f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6793d51fdc0..d51bd900e3a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6467fd3dd29..a17cf8e896a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e3596742d7c..1a0b7312e87 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 25c2d55dcc5..43fd873e90c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -31,6 +31,8 @@ pub struct NormalizedProject { pub state: StateEnum, #[serde(rename = "subscription_id", skip_serializing_if = "Option::is_none")] pub subscription_id: Option, + #[serde(rename = "subscription_plan", skip_serializing_if = "Option::is_none")] + pub subscription_plan: Option, /// Last Time Project was Updated #[serde(rename = "updated_at")] pub updated_at: String, @@ -47,6 +49,7 @@ impl NormalizedProject { slug, state, subscription_id: None, + subscription_plan: None, updated_at, } } diff --git a/clients/client/rust/src/models/normalized_project_revision.rs b/clients/client/rust/src/models/normalized_project_revision.rs index a78ceaf4dbc..faf293e90e8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ 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 4d86e35144e..54436c91f6a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d18b1904fd3..e817bf8c177 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a32db5f8db2..0503688d65b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 336dca8a7a6..f0916259437 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0155874bc59..c230bf28609 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 527cc4a2143..ee6334fc899 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d1f45d6c21f..3dc5eaf170b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f8923abcdc1..cfc83fe4afc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b2e58a4c8b8..13b1a8f35d9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de7ccbc5e4a..bd465f8e112 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9f3fd6ba03d..8722d644778 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 292d7caaf2b..f0e2cd530ae 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 18ba574d92b..57f02450364 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 209da75d5c8..c71b7bec09b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 60ae07777e5..0b33c8c4f79 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a494331ba71..ba5c502365f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 66ead87b086..3794360cce8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f57b075c168..438c8084646 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ddd9a16987a..1e0df2bf823 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 de27b1fc7e8..1e7cd5c351d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b1ae6f7f209..6df2685d199 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6dcc990bcc9..be0f0aaccc7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 5156cc162b3..4e7b55c84ef 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 2dbe3647e53..30790be2aa6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e15c7cce297..a78bf21554a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94c349f57e9..0370c846ff0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 6fdfaeb10cc..0464a6a9de2 100644 --- a/clients/client/rust/src/models/project_branding.rs +++ b/clients/client/rust/src/models/project_branding.rs @@ -3,12 +3,11 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ -/// ProjectBranding : The Project Branding @@ -25,7 +24,6 @@ pub struct ProjectBranding { /// The Project's ID this customization is associated with #[serde(rename = "project_id")] pub project_id: String, - /// The Project Branding Themes #[serde(rename = "themes")] pub themes: Vec, /// Last Time Branding was Updated @@ -35,7 +33,6 @@ pub struct ProjectBranding { impl ProjectBranding { - /// The Project Branding pub fn new(created_at: String, default_theme: crate::models::ProjectBrandingTheme, id: String, project_id: String, themes: Vec, updated_at: String) -> ProjectBranding { ProjectBranding { created_at, diff --git a/clients/client/rust/src/models/project_branding_colors.rs b/clients/client/rust/src/models/project_branding_colors.rs index 010171869ed..24446f5146e 100644 --- a/clients/client/rust/src/models/project_branding_colors.rs +++ b/clients/client/rust/src/models/project_branding_colors.rs @@ -3,12 +3,11 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ -/// ProjectBrandingColors : The Project Branding Colors @@ -110,7 +109,6 @@ impl Default for ProjectBrandingColors { } impl ProjectBrandingColors { - /// The Project Branding Colors pub fn new() -> ProjectBrandingColors { ProjectBrandingColors { accent_default_color: None, diff --git a/clients/client/rust/src/models/project_branding_theme.rs b/clients/client/rust/src/models/project_branding_theme.rs index bf18732a461..b42be880e74 100644 --- a/clients/client/rust/src/models/project_branding_theme.rs +++ b/clients/client/rust/src/models/project_branding_theme.rs @@ -3,12 +3,11 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ -/// ProjectBrandingTheme : The Project Branding Theme @@ -126,7 +125,6 @@ pub struct ProjectBrandingTheme { impl ProjectBrandingTheme { - /// The Project Branding Theme pub fn new(created_at: String, id: String, name: String, project_branding_id: String, updated_at: String) -> ProjectBrandingTheme { ProjectBrandingTheme { accent_default_color: None, diff --git a/clients/client/rust/src/models/project_host.rs b/clients/client/rust/src/models/project_host.rs index b2df934c33c..e4720804ead 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ diff --git a/clients/client/rust/src/models/project_invite.rs b/clients/client/rust/src/models/project_invite.rs index 6cdcf7c1c34..c5e26561276 100644 --- a/clients/client/rust/src/models/project_invite.rs +++ b/clients/client/rust/src/models/project_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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4e6cd5f85e3..1da52b412e6 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -32,6 +32,8 @@ pub struct ProjectMetadata { pub state: StateEnum, #[serde(rename = "subscription_id", skip_serializing_if = "Option::is_none")] pub subscription_id: Option, + #[serde(rename = "subscription_plan", skip_serializing_if = "Option::is_none")] + pub subscription_plan: Option, /// Last Time Project was Updated #[serde(rename = "updated_at")] pub updated_at: String, @@ -48,6 +50,7 @@ impl ProjectMetadata { slug: None, state, subscription_id: None, + subscription_plan: None, updated_at, } } diff --git a/clients/client/rust/src/models/project_service_identity.rs b/clients/client/rust/src/models/project_service_identity.rs index 477267c577b..9c89b722059 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 830f69e6e1f..29abe304126 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dfdd2ae7556..65edf2343ac 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 af3d5b993a8..64e11cb3e9b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 796bc52cd4e..3b53d279c8e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ed66142e7a0..f38bab1c398 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0139c55429a..50496a6feaf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 63e44c66fb6..7c30fbc89e3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 747307a7443..c4c66dd0708 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 684a4619e72..3ab7451c8c0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 013aebdd8cb..4caa9a9f37a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ @@ -24,6 +24,7 @@ pub struct RegistrationFlow { /// IssuedAt is the time (UTC) when the flow occurred. #[serde(rename = "issued_at")] pub issued_at: String, + /// Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. #[serde(rename = "oauth2_login_challenge", skip_serializing_if = "Option::is_none")] pub oauth2_login_challenge: Option, #[serde(rename = "oauth2_login_request", skip_serializing_if = "Option::is_none")] 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 f70a5131aae..37c8ae8c971 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7cece06e923..6eb52e79dfd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 aed3d7edca6..7fa49c15de0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 18c9fc7d2bf..44274b5a6c4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ce63504d015..420eef79f26 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c617fb356cd..5eab3fbcfb0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4c862182b6e..1217dfca497 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 1d635bd01f9..0582555a9cf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f614cab3642..98ac6a4c9b0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 82b284dc812..7ab1070a216 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c1abf4cc612..1616bd4f72d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bdc7ed22b7e..8a91d0927f0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 37b1f3be6a6..557b5e9ac0b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 88055073f11..7ae5a1c829c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ee266727d3f..8803d1db2fd 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,12 +3,11 @@ * * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. * - * The version of the OpenAPI document: v1.1.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * Generated by: https://openapi-generator.tech */ -/// SetProjectBrandingThemeBody : Set Project Branding Theme Request Parameters @@ -34,7 +33,6 @@ impl Default for SetProjectBrandingThemeBody { } impl SetProjectBrandingThemeBody { - /// Set Project Branding Theme Request Parameters pub fn new() -> SetProjectBrandingThemeBody { SetProjectBrandingThemeBody { logo_type: None, diff --git a/clients/client/rust/src/models/settings_flow.rs b/clients/client/rust/src/models/settings_flow.rs index b2ea0f2d10e..7531288b0f1 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 4d8037415de..237a686c64c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b110729e945..e254fe2537c 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 32dae9e0659..9f9a4cbd0fe 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b09a1ba6856..5adf57da120 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b8b730bdc37..fb7f8eeea12 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 529209fa3ce..e2bb2b301a4 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ededaa35fc0..662e1931290 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a71f835a15d..e42118595b9 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a550402a8a7..87a5caf8d71 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 89de6bf71ed..09ba3d8cd1e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 91f922c758e..71c10959320 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7fc71f19378..ace719581d8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0db3ee67c65..7e9920b1dfd 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 617c3f9175d..b2fe23b0233 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 12d3ecce2fa..4f3de411b81 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b32a4b9ce66..9b5cffa67ee 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 dd675402965..10982dfd9be 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b945a00b997..fd6e282b61b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cb4a901d0db..ac33f841f46 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 28342d3a852..592b5faa6b3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d2795ea547d..0042976d96d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 55ea2ff7eff..8532902b7a3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 73b4a9efd6e..566ed885dd8 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7c85eab1d80..0b07869e6cf 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0a0f2599593..e0363e4c100 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 46a475fed21..eb140a2d7af 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 0f0e4bbe96c..e82c7b3a145 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9624d862b5b..ea4f7f5c175 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 989c4f35e5a..d424b7323bc 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a81d6b881b6..1d94fab338b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 94b573e2579..21dc6ba6047 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bb956d683dd..af200857970 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 795e998bc40..5078428d422 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 79b147b4125..835be95ba08 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bb1d4c2b96e..9a5d488251e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b4cb622adc0..89549511e43 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 e79e3266177..4b3f157c1b3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 57c30aff4f0..443fdcf6c43 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 794b50ce25f..04d19f71716 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 611e196f476..d91ccd3faea 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a573d82fd92..a46da23408e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cfa95b19565..40d3836049b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d852b678574..827dc21a65f 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 25bfc8c079d..f9ffa16759a 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 f62b2c97587..29ea676ed01 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 a8edfdcd943..f068924bb4b 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 97e695b939d..f5c62473c6e 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 239114d9b13..b3176af6843 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 55af2406683..f9d59a53692 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9626d3974a5..1a40ab1a855 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ac48f9b0c65..dd5e80b27d0 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 58f92c3f241..fb01c458065 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 b02777301db..70eb65d0471 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 bf4256045c7..f6640099ed2 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 c9f1bf5c9a5..9062121ff72 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 7d0bf580841..f9a0ac22317 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 cd119afb6b8..68de22c75c7 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 9de96adaf91..9537343c36d 100644 --- a/clients/client/typescript/README.md +++ b/clients/client/typescript/README.md @@ -1,4 +1,4 @@ -## @ory/client@v1.1.39 +## @ory/client@v1.1.39-alpha.0 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.39 --save +npm install @ory/client@v1.1.39-alpha.0 --save ``` _unPublished (not recommended):_ diff --git a/clients/client/typescript/api.ts b/clients/client/typescript/api.ts index 4c2f4e34f1f..0a07658d785 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * Contact: support@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -2031,11 +2031,11 @@ export interface LoginFlow { */ 'issued_at': string; /** - * + * Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. * @type {string} * @memberof LoginFlow */ - 'oauth2_login_challenge'?: string | null; + 'oauth2_login_challenge'?: string; /** * * @type {OAuth2LoginRequest} @@ -2417,6 +2417,12 @@ export interface NormalizedProject { * @memberof NormalizedProject */ 'subscription_id'?: string | null; + /** + * + * @type {string} + * @memberof NormalizedProject + */ + 'subscription_plan'?: string | null; /** * Last Time Project was Updated * @type {string} @@ -5084,7 +5090,7 @@ export interface ProjectApiKey { 'value'?: string; } /** - * The Project Branding + * * @export * @interface ProjectBranding */ @@ -5114,7 +5120,7 @@ export interface ProjectBranding { */ 'project_id': string; /** - * The Project Branding Themes + * * @type {Array} * @memberof ProjectBranding */ @@ -5127,7 +5133,7 @@ export interface ProjectBranding { 'updated_at': string; } /** - * The Project Branding Colors + * * @export * @interface ProjectBrandingColors */ @@ -5308,7 +5314,7 @@ export interface ProjectBrandingColors { 'text_disabled_color'?: string; } /** - * The Project Branding Theme + * * @export * @interface ProjectBrandingTheme */ @@ -5676,6 +5682,12 @@ export interface ProjectMetadata { * @memberof ProjectMetadata */ 'subscription_id'?: string | null; + /** + * + * @type {string} + * @memberof ProjectMetadata + */ + 'subscription_plan'?: string | null; /** * Last Time Project was Updated * @type {string} @@ -6008,11 +6020,11 @@ export interface RegistrationFlow { */ 'issued_at': string; /** - * + * Ory OAuth 2.0 Login Challenge. This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. * @type {string} * @memberof RegistrationFlow */ - 'oauth2_login_challenge'?: string | null; + 'oauth2_login_challenge'?: string; /** * * @type {OAuth2LoginRequest} @@ -6483,7 +6495,7 @@ export interface SetProject { 'services': ProjectServices; } /** - * Set Project Branding Theme Request Parameters + * * @export * @interface SetProjectBrandingThemeBody */ @@ -8666,10 +8678,11 @@ export const FrontendApiAxiosParamCreator = function (configuration?: Configurat * This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. * @summary Create a Logout URL for Browsers * @param {string} [cookie] HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + * @param {string} [returnTo] Return to URL The URL to which the browser should be redirected to after the logout has been performed. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createBrowserLogoutFlow: async (cookie?: string, options: AxiosRequestConfig = {}): Promise => { + createBrowserLogoutFlow: async (cookie?: string, returnTo?: string, options: AxiosRequestConfig = {}): Promise => { const localVarPath = `/self-service/logout/browser`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); @@ -8682,6 +8695,10 @@ export const FrontendApiAxiosParamCreator = function (configuration?: Configurat const localVarHeaderParameter = {} as any; const localVarQueryParameter = {} as any; + if (returnTo !== undefined) { + localVarQueryParameter['return_to'] = returnTo; + } + if (cookie !== undefined && cookie !== null) { localVarHeaderParameter['cookie'] = String(cookie); } @@ -9912,11 +9929,12 @@ export const FrontendApiFp = function(configuration?: Configuration) { * This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. * @summary Create a Logout URL for Browsers * @param {string} [cookie] HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + * @param {string} [returnTo] Return to URL The URL to which the browser should be redirected to after the logout has been performed. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createBrowserLogoutFlow(cookie?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createBrowserLogoutFlow(cookie, options); + async createBrowserLogoutFlow(cookie?: string, returnTo?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createBrowserLogoutFlow(cookie, returnTo, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** @@ -10290,11 +10308,12 @@ export const FrontendApiFactory = function (configuration?: Configuration, baseP * This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user. This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token. The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error. When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies. * @summary Create a Logout URL for Browsers * @param {string} [cookie] HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request. + * @param {string} [returnTo] Return to URL The URL to which the browser should be redirected to after the logout has been performed. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createBrowserLogoutFlow(cookie?: string, options?: any): AxiosPromise { - return localVarFp.createBrowserLogoutFlow(cookie, options).then((request) => request(axios, basePath)); + createBrowserLogoutFlow(cookie?: string, returnTo?: string, options?: any): AxiosPromise { + return localVarFp.createBrowserLogoutFlow(cookie, returnTo, options).then((request) => request(axios, basePath)); }, /** * This endpoint initializes a browser-based account recovery flow. Once initialized, the browser will be redirected to `selfservice.flows.recovery.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session exists, the browser is returned to the configured return URL. If this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects or a 400 bad request error if the user is already authenticated. This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed. More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery). @@ -10668,6 +10687,13 @@ export interface FrontendApiCreateBrowserLogoutFlowRequest { * @memberof FrontendApiCreateBrowserLogoutFlow */ readonly cookie?: string + + /** + * Return to URL The URL to which the browser should be redirected to after the logout has been performed. + * @type {string} + * @memberof FrontendApiCreateBrowserLogoutFlow + */ + readonly returnTo?: string } /** @@ -11314,7 +11340,7 @@ export class FrontendApi extends BaseAPI { * @memberof FrontendApi */ public createBrowserLogoutFlow(requestParameters: FrontendApiCreateBrowserLogoutFlowRequest = {}, options?: AxiosRequestConfig) { - return FrontendApiFp(this.configuration).createBrowserLogoutFlow(requestParameters.cookie, options).then((request) => request(this.axios, this.basePath)); + return FrontendApiFp(this.configuration).createBrowserLogoutFlow(requestParameters.cookie, requestParameters.returnTo, options).then((request) => request(this.axios, this.basePath)); } /** @@ -12477,7 +12503,7 @@ export const IdentityApiFp = function(configuration?: Configuration) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteIdentityCredentials(id: string, type: 'totp' | 'webauthn' | 'lookup', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteIdentityCredentials(id: string, type: 'totp' | 'webauthn' | 'lookup', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentityCredentials(id, type, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, @@ -12694,7 +12720,7 @@ export const IdentityApiFactory = function (configuration?: Configuration, baseP * @param {*} [options] Override http request option. * @throws {RequiredError} */ - deleteIdentityCredentials(id: string, type: 'totp' | 'webauthn' | 'lookup', options?: any): AxiosPromise { + deleteIdentityCredentials(id: string, type: 'totp' | 'webauthn' | 'lookup', options?: any): AxiosPromise { return localVarFp.deleteIdentityCredentials(id, type, options).then((request) => request(axios, basePath)); }, /** diff --git a/clients/client/typescript/base.ts b/clients/client/typescript/base.ts index 6705a518c0c..101de8fa034 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 ecc562f7111..c5088e6bfe3 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 76a869b7a49..b880fca0436 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 d925de3355f..7259369ac1d 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.39 + * The version of the OpenAPI document: v1.1.39-alpha.0 * 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 11e30163219..10a95b695c5 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.39", + "version": "v1.1.39-alpha.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ory/client", - "version": "v1.1.39", + "version": "v1.1.39-alpha.0", "license": "Apache-2.0", "dependencies": { "axios": "^0.21.4" diff --git a/clients/client/typescript/package.json b/clients/client/typescript/package.json index 9b837dc2f38..154c15bf514 100644 --- a/clients/client/typescript/package.json +++ b/clients/client/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@ory/client", - "version": "v1.1.39", + "version": "v1.1.39-alpha.0", "description": "OpenAPI client for @ory/client", "author": "ORY GmbH", "keywords": [ diff --git a/spec/client/v1.1.39-alpha.0.json b/spec/client/v1.1.39-alpha.0.json index a9a571456d9..f1ba5ba1ae0 100644 --- a/spec/client/v1.1.39-alpha.0.json +++ b/spec/client/v1.1.39-alpha.0.json @@ -1,14881 +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": { - "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" - }, - "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" - }, - "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" - }, - "createProjectInvite": { - "description": "Create Project Invite Request Body", - "properties": { - "invitee_emails": { - "description": "A list of emails to invite", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "type": "object" - }, - "createProjectInvitesResponse": { - "description": "Response to the create project invite request", - "properties": { - "all_invites": { - "$ref": "#/components/schemas/projectInvites" - }, - "created_invites": { - "$ref": "#/components/schemas/projectInvites" - } - }, - "required": [ - "created_invites", - "all_invites" - ], - "type": "object" - }, - "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" - }, - "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" - }, - "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" - }, - "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" - }, - "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" - }, - "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_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_admin_cors_allowed_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_serve_admin_cors_enabled": { - "description": "Configures the Ory Hydra CORS Settings\n\nThis governs the \"serve.admin.cors.enabled\" setting.", - "type": "boolean" - }, - "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_serve_public_cors_allowed_origins": { - "$ref": "#/components/schemas/StringSliceJSONFormat" - }, - "hydra_serve_public_cors_enabled": { - "description": "Configures the Ory Hydra CORS Settings\n\nThis governs the \"serve.public.cors.enabled\" setting.", - "type": "boolean" - }, - "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_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.", - "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_origin": { - "description": "Configures the Ory Kratos Webauthn RP Origin\n\nThis governs the \"selfservice.methods.webauthn.config.rp.origin\" setting.", - "type": "string" - }, - "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" - }, - "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" - }, - "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": { - "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" - ], - "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 Customiation 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" - }, - "projectInvite": { - "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" - }, - "projectInvites": { - "items": { - "$ref": "#/components/schemas/projectInvite" - }, - "type": "array" - }, - "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": { - "name": { - "description": "The name of the project.", - "type": "string" - }, - "services": { - "$ref": "#/components/schemas/projectServices" - } - }, - "required": [ - "services", - "name" - ], - "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" - }, - "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" - ] - } - }, - "/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}/members": { - "get": { - "description": "This endpoint requires the user to be a member of the project with the role `OWNER` or `DEVELOPER`.", - "operationId": "getProjectMembers", - "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/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_id}/members/{member_id}": { - "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": [ - { - "description": "Project ID\n\nThe project's ID.", - "in": "path", - "name": "project_id", - "required": true, - "schema": { - "type": "string" - } - }, - { - "description": "Member ID", - "in": "path", - "name": "member_id", - "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_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}/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": ":::info\n\nThis endpoint is EXPERIMENTAL and subject to potential breaking changes in the future.\n\n:::\n\nUse 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\n:::info\n\nThis endpoint is EXPERIMENTAL and subject to potential breaking changes in the future.\n\n:::\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 cooke 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":{"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"},"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"},"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"},"createProjectInvite":{"description":"Create Project Invite Request Body","properties":{"invitee_emails":{"description":"A list of emails to invite","items":{"type":"string"},"type":"array"}},"type":"object"},"createProjectInvitesResponse":{"description":"Response to the create project invite request","properties":{"all_invites":{"$ref":"#/components/schemas/projectInvites"},"created_invites":{"$ref":"#/components/schemas/projectInvites"}},"required":["created_invites","all_invites"],"type":"object"},"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"},"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"},"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"},"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"},"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"},"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_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_admin_cors_allowed_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_serve_admin_cors_enabled":{"description":"Configures the Ory Hydra CORS Settings\n\nThis governs the \"serve.admin.cors.enabled\" setting.","type":"boolean"},"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_serve_public_cors_allowed_origins":{"$ref":"#/components/schemas/StringSliceJSONFormat"},"hydra_serve_public_cors_enabled":{"description":"Configures the Ory Hydra CORS Settings\n\nThis governs the \"serve.public.cors.enabled\" setting.","type":"boolean"},"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_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.","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_origin":{"description":"Configures the Ory Kratos Webauthn RP Origin\n\nThis governs the \"selfservice.methods.webauthn.config.rp.origin\" setting.","type":"string"},"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"},"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"},"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":{"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"],"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 Customiation 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"},"projectInvite":{"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"},"projectInvites":{"items":{"$ref":"#/components/schemas/projectInvite"},"type":"array"},"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":{"name":{"description":"The name of the project.","type":"string"},"services":{"$ref":"#/components/schemas/projectServices"}},"required":["services","name"],"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"},"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.39-alpha.0"},"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