diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 3e9bea9fe..6d57bfa75 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -90,6 +90,7 @@ docs/Identity.md docs/IdentityApi.md docs/IdentityCredentials.md docs/IdentityCredentialsCode.md +docs/IdentityCredentialsCodeAddress.md docs/IdentityCredentialsOidc.md docs/IdentityCredentialsOidcProvider.md docs/IdentityCredentialsPassword.md @@ -388,6 +389,7 @@ ory_client/models/health_status.py ory_client/models/identity.py ory_client/models/identity_credentials.py ory_client/models/identity_credentials_code.py +ory_client/models/identity_credentials_code_address.py ory_client/models/identity_credentials_oidc.py ory_client/models/identity_credentials_oidc_provider.py ory_client/models/identity_credentials_password.py @@ -668,6 +670,7 @@ test/test_identity.py test/test_identity_api.py test/test_identity_credentials.py test/test_identity_credentials_code.py +test/test_identity_credentials_code_address.py test/test_identity_credentials_oidc.py test/test_identity_credentials_oidc_provider.py test/test_identity_credentials_password.py diff --git a/docs/FrontendApi.md b/docs/FrontendApi.md index 0590fdef8..5c6838a98 100644 --- a/docs/FrontendApi.md +++ b/docs/FrontendApi.md @@ -69,7 +69,7 @@ with ory_client.ApiClient(configuration) as api_client: cookie = 'cookie_example' # str | HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected. (optional) login_challenge = 'login_challenge_example' # str | An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`). (optional) organization = 'organization_example' # str | An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. (optional) - via = 'via_example' # str | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. (optional) + via = 'via_example' # str | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. (optional) try: # Create Login Flow for Browsers @@ -93,7 +93,7 @@ Name | Type | Description | Notes **cookie** | **str**| HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected. | [optional] **login_challenge** | **str**| An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`). | [optional] **organization** | **str**| An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. | [optional] - **via** | **str**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. | [optional] + **via** | **str**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. | [optional] ### Return type @@ -516,7 +516,7 @@ with ory_client.ApiClient(configuration) as api_client: x_session_token = 'x_session_token_example' # str | The Session Token of the Identity performing the settings flow. (optional) return_session_token_exchange_code = True # bool | EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed. (optional) return_to = 'return_to_example' # str | The URL to return the browser to after the flow was completed. (optional) - via = 'via_example' # str | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. (optional) + via = 'via_example' # str | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. (optional) try: # Create Login Flow for Native Apps @@ -539,7 +539,7 @@ Name | Type | Description | Notes **x_session_token** | **str**| The Session Token of the Identity performing the settings flow. | [optional] **return_session_token_exchange_code** | **bool**| EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed. | [optional] **return_to** | **str**| The URL to return the browser to after the flow was completed. | [optional] - **via** | **str**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. | [optional] + **via** | **str**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. | [optional] ### Return type diff --git a/docs/IdentityCredentialsCode.md b/docs/IdentityCredentialsCode.md index 8bc3ea9d6..2e0d1505d 100644 --- a/docs/IdentityCredentialsCode.md +++ b/docs/IdentityCredentialsCode.md @@ -6,8 +6,7 @@ CredentialsCode represents a one time login/registration code Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**address_type** | **str** | The type of the address for this code | [optional] -**used_at** | **datetime** | | [optional] +**addresses** | [**List[IdentityCredentialsCodeAddress]**](IdentityCredentialsCodeAddress.md) | | [optional] ## Example diff --git a/docs/IdentityCredentialsCodeAddress.md b/docs/IdentityCredentialsCodeAddress.md new file mode 100644 index 000000000..8efaa50a0 --- /dev/null +++ b/docs/IdentityCredentialsCodeAddress.md @@ -0,0 +1,30 @@ +# IdentityCredentialsCodeAddress + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**address** | **str** | The address for this code | [optional] +**channel** | **str** | | [optional] + +## Example + +```python +from ory_client.models.identity_credentials_code_address import IdentityCredentialsCodeAddress + +# TODO update the JSON string below +json = "{}" +# create an instance of IdentityCredentialsCodeAddress from a JSON string +identity_credentials_code_address_instance = IdentityCredentialsCodeAddress.from_json(json) +# print the JSON string representation of the object +print(IdentityCredentialsCodeAddress.to_json()) + +# convert the object into a dict +identity_credentials_code_address_dict = identity_credentials_code_address_instance.to_dict() +# create an instance of IdentityCredentialsCodeAddress from a dict +identity_credentials_code_address_from_dict = IdentityCredentialsCodeAddress.from_dict(identity_credentials_code_address_dict) +``` +[[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/docs/OAuth2Api.md b/docs/OAuth2Api.md index 104354223..6993c9fad 100644 --- a/docs/OAuth2Api.md +++ b/docs/OAuth2Api.md @@ -1322,7 +1322,7 @@ Name | Type | Description | Notes OAuth 2.0 Authorize Endpoint -Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. +Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. ### Example @@ -1387,7 +1387,7 @@ No authorization required The OAuth 2.0 Token Endpoint -Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. +Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. ### Example @@ -1913,7 +1913,7 @@ with ory_client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ory_client.OAuth2Api(api_client) subject = 'subject_example' # str | OAuth 2.0 Subject The subject to revoke authentication sessions for. (optional) - sid = 'sid_example' # str | OAuth 2.0 Subject The subject to revoke authentication sessions for. (optional) + sid = 'sid_example' # str | Login Session ID The login session to revoke. (optional) try: # Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID @@ -1930,7 +1930,7 @@ with ory_client.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **subject** | **str**| OAuth 2.0 Subject The subject to revoke authentication sessions for. | [optional] - **sid** | **str**| OAuth 2.0 Subject The subject to revoke authentication sessions for. | [optional] + **sid** | **str**| Login Session ID The login session to revoke. | [optional] ### Return type diff --git a/docs/UpdateLoginFlowBody.md b/docs/UpdateLoginFlowBody.md index 5732414e1..e87a209d6 100644 --- a/docs/UpdateLoginFlowBody.md +++ b/docs/UpdateLoginFlowBody.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **totp_code** | **str** | The TOTP code. | **webauthn_login** | **str** | Login a WebAuthn Security Key This must contain the ID of the WebAuthN connection. | [optional] **lookup_secret** | **str** | The lookup secret. | +**address** | **str** | Address is the address to send the code to, in case that there are multiple addresses. This field is only used in two-factor flows and is ineffective for passwordless flows. | [optional] **code** | **str** | Code is the 6 digits code sent to the user | [optional] **resend** | **str** | Resend is set when the user wants to resend the code | [optional] **passkey_login** | **str** | Login a WebAuthn Security Key This must contain the ID of the WebAuthN connection. | [optional] diff --git a/docs/UpdateLoginFlowWithCodeMethod.md b/docs/UpdateLoginFlowWithCodeMethod.md index 770ac0446..ea8e86c3f 100644 --- a/docs/UpdateLoginFlowWithCodeMethod.md +++ b/docs/UpdateLoginFlowWithCodeMethod.md @@ -6,6 +6,7 @@ Update Login flow using the code method Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**address** | **str** | Address is the address to send the code to, in case that there are multiple addresses. This field is only used in two-factor flows and is ineffective for passwordless flows. | [optional] **code** | **str** | Code is the 6 digits code sent to the user | [optional] **csrf_token** | **str** | CSRFToken is the anti-CSRF token | **identifier** | **str** | Identifier is the code identifier The identifier requires that the user has already completed the registration or settings with code flow. | [optional] diff --git a/ory_client/__init__.py b/ory_client/__init__.py index 5d2bc9639..474489cbf 100644 --- a/ory_client/__init__.py +++ b/ory_client/__init__.py @@ -7,7 +7,7 @@ Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. - The version of the OpenAPI document: v1.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "v1.15.0" +__version__ = "v1.15.3" # import apis into sdk package from ory_client.api.courier_api import CourierApi @@ -126,6 +126,7 @@ from ory_client.models.identity import Identity from ory_client.models.identity_credentials import IdentityCredentials from ory_client.models.identity_credentials_code import IdentityCredentialsCode +from ory_client.models.identity_credentials_code_address import IdentityCredentialsCodeAddress from ory_client.models.identity_credentials_oidc import IdentityCredentialsOidc from ory_client.models.identity_credentials_oidc_provider import IdentityCredentialsOidcProvider from ory_client.models.identity_credentials_password import IdentityCredentialsPassword diff --git a/ory_client/api/courier_api.py b/ory_client/api/courier_api.py index b2714e40f..46def9bdd 100644 --- a/ory_client/api/courier_api.py +++ b/ory_client/api/courier_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/events_api.py b/ory_client/api/events_api.py index c07422d1a..5aeafdf60 100644 --- a/ory_client/api/events_api.py +++ b/ory_client/api/events_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/frontend_api.py b/ory_client/api/frontend_api.py index 533553a15..e645a292c 100644 --- a/ory_client/api/frontend_api.py +++ b/ory_client/api/frontend_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -65,7 +65,7 @@ def create_browser_login_flow( cookie: Annotated[Optional[StrictStr], Field(description="HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.")] = None, login_challenge: Annotated[Optional[StrictStr], Field(description="An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`).")] = None, organization: Annotated[Optional[StrictStr], Field(description="An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.")] = None, - via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.")] = None, + via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -95,7 +95,7 @@ def create_browser_login_flow( :type login_challenge: str :param organization: An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. :type organization: str - :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. + :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. :type via: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -158,7 +158,7 @@ def create_browser_login_flow_with_http_info( cookie: Annotated[Optional[StrictStr], Field(description="HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.")] = None, login_challenge: Annotated[Optional[StrictStr], Field(description="An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`).")] = None, organization: Annotated[Optional[StrictStr], Field(description="An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.")] = None, - via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.")] = None, + via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -188,7 +188,7 @@ def create_browser_login_flow_with_http_info( :type login_challenge: str :param organization: An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. :type organization: str - :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. + :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. :type via: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -251,7 +251,7 @@ def create_browser_login_flow_without_preload_content( cookie: Annotated[Optional[StrictStr], Field(description="HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.")] = None, login_challenge: Annotated[Optional[StrictStr], Field(description="An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`).")] = None, organization: Annotated[Optional[StrictStr], Field(description="An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.")] = None, - via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.")] = None, + via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -281,7 +281,7 @@ def create_browser_login_flow_without_preload_content( :type login_challenge: str :param organization: An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. :type organization: str - :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. + :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. :type via: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -1844,7 +1844,7 @@ def create_native_login_flow( x_session_token: Annotated[Optional[StrictStr], Field(description="The Session Token of the Identity performing the settings flow.")] = None, return_session_token_exchange_code: Annotated[Optional[StrictBool], Field(description="EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed.")] = None, return_to: Annotated[Optional[StrictStr], Field(description="The URL to return the browser to after the flow was completed.")] = None, - via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.")] = None, + via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1872,7 +1872,7 @@ def create_native_login_flow( :type return_session_token_exchange_code: bool :param return_to: The URL to return the browser to after the flow was completed. :type return_to: str - :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. + :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. :type via: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -1932,7 +1932,7 @@ def create_native_login_flow_with_http_info( x_session_token: Annotated[Optional[StrictStr], Field(description="The Session Token of the Identity performing the settings flow.")] = None, return_session_token_exchange_code: Annotated[Optional[StrictBool], Field(description="EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed.")] = None, return_to: Annotated[Optional[StrictStr], Field(description="The URL to return the browser to after the flow was completed.")] = None, - via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.")] = None, + via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -1960,7 +1960,7 @@ def create_native_login_flow_with_http_info( :type return_session_token_exchange_code: bool :param return_to: The URL to return the browser to after the flow was completed. :type return_to: str - :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. + :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. :type via: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -2020,7 +2020,7 @@ def create_native_login_flow_without_preload_content( x_session_token: Annotated[Optional[StrictStr], Field(description="The Session Token of the Identity performing the settings flow.")] = None, return_session_token_exchange_code: Annotated[Optional[StrictBool], Field(description="EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed.")] = None, return_to: Annotated[Optional[StrictStr], Field(description="The URL to return the browser to after the flow was completed.")] = None, - via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows.")] = None, + via: Annotated[Optional[StrictStr], Field(description="Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -2048,7 +2048,7 @@ def create_native_login_flow_without_preload_content( :type return_session_token_exchange_code: bool :param return_to: The URL to return the browser to after the flow was completed. :type return_to: str - :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. + :param via: Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. :type via: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request diff --git a/ory_client/api/identity_api.py b/ory_client/api/identity_api.py index 147d9a1b0..ade15c97a 100644 --- a/ory_client/api/identity_api.py +++ b/ory_client/api/identity_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/jwk_api.py b/ory_client/api/jwk_api.py index 0a1af5380..5b108e33e 100644 --- a/ory_client/api/jwk_api.py +++ b/ory_client/api/jwk_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/metadata_api.py b/ory_client/api/metadata_api.py index 40ea0c042..ade5fccfb 100644 --- a/ory_client/api/metadata_api.py +++ b/ory_client/api/metadata_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/o_auth2_api.py b/ory_client/api/o_auth2_api.py index b1620bcb2..5447d7a21 100644 --- a/ory_client/api/o_auth2_api.py +++ b/ory_client/api/o_auth2_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -4482,7 +4482,7 @@ def o_auth2_authorize( ) -> ErrorOAuth2: """OAuth 2.0 Authorize Endpoint - Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. + Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -4545,7 +4545,7 @@ def o_auth2_authorize_with_http_info( ) -> ApiResponse[ErrorOAuth2]: """OAuth 2.0 Authorize Endpoint - Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. + Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -4608,7 +4608,7 @@ def o_auth2_authorize_without_preload_content( ) -> RESTResponseType: """OAuth 2.0 Authorize Endpoint - Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. + Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -4730,7 +4730,7 @@ def oauth2_token_exchange( ) -> OAuth2TokenExchange: """The OAuth 2.0 Token Endpoint - Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. + Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. :param grant_type: (required) :type grant_type: str @@ -4813,7 +4813,7 @@ def oauth2_token_exchange_with_http_info( ) -> ApiResponse[OAuth2TokenExchange]: """The OAuth 2.0 Token Endpoint - Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. + Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. :param grant_type: (required) :type grant_type: str @@ -4896,7 +4896,7 @@ def oauth2_token_exchange_without_preload_content( ) -> RESTResponseType: """The OAuth 2.0 Token Endpoint - Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ The Ory SDK is not yet able to this endpoint properly. + Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. :param grant_type: (required) :type grant_type: str @@ -6469,7 +6469,7 @@ def _revoke_o_auth2_consent_sessions_serialize( def revoke_o_auth2_login_sessions( self, subject: Annotated[Optional[StrictStr], Field(description="OAuth 2.0 Subject The subject to revoke authentication sessions for.")] = None, - sid: Annotated[Optional[StrictStr], Field(description="OAuth 2.0 Subject The subject to revoke authentication sessions for.")] = None, + sid: Annotated[Optional[StrictStr], Field(description="Login Session ID The login session to revoke.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -6489,7 +6489,7 @@ def revoke_o_auth2_login_sessions( :param subject: OAuth 2.0 Subject The subject to revoke authentication sessions for. :type subject: str - :param sid: OAuth 2.0 Subject The subject to revoke authentication sessions for. + :param sid: Login Session ID The login session to revoke. :type sid: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -6540,7 +6540,7 @@ def revoke_o_auth2_login_sessions( def revoke_o_auth2_login_sessions_with_http_info( self, subject: Annotated[Optional[StrictStr], Field(description="OAuth 2.0 Subject The subject to revoke authentication sessions for.")] = None, - sid: Annotated[Optional[StrictStr], Field(description="OAuth 2.0 Subject The subject to revoke authentication sessions for.")] = None, + sid: Annotated[Optional[StrictStr], Field(description="Login Session ID The login session to revoke.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -6560,7 +6560,7 @@ def revoke_o_auth2_login_sessions_with_http_info( :param subject: OAuth 2.0 Subject The subject to revoke authentication sessions for. :type subject: str - :param sid: OAuth 2.0 Subject The subject to revoke authentication sessions for. + :param sid: Login Session ID The login session to revoke. :type sid: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -6611,7 +6611,7 @@ def revoke_o_auth2_login_sessions_with_http_info( def revoke_o_auth2_login_sessions_without_preload_content( self, subject: Annotated[Optional[StrictStr], Field(description="OAuth 2.0 Subject The subject to revoke authentication sessions for.")] = None, - sid: Annotated[Optional[StrictStr], Field(description="OAuth 2.0 Subject The subject to revoke authentication sessions for.")] = None, + sid: Annotated[Optional[StrictStr], Field(description="Login Session ID The login session to revoke.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -6631,7 +6631,7 @@ def revoke_o_auth2_login_sessions_without_preload_content( :param subject: OAuth 2.0 Subject The subject to revoke authentication sessions for. :type subject: str - :param sid: OAuth 2.0 Subject The subject to revoke authentication sessions for. + :param sid: Login Session ID The login session to revoke. :type sid: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request diff --git a/ory_client/api/oidc_api.py b/ory_client/api/oidc_api.py index 38804174f..ef756cf82 100644 --- a/ory_client/api/oidc_api.py +++ b/ory_client/api/oidc_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/permission_api.py b/ory_client/api/permission_api.py index 81c0dae8c..3f99fb522 100644 --- a/ory_client/api/permission_api.py +++ b/ory_client/api/permission_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/project_api.py b/ory_client/api/project_api.py index 1dff4ed22..6468f536d 100644 --- a/ory_client/api/project_api.py +++ b/ory_client/api/project_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/relationship_api.py b/ory_client/api/relationship_api.py index 41ae72ffb..02acce4d4 100644 --- a/ory_client/api/relationship_api.py +++ b/ory_client/api/relationship_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/wellknown_api.py b/ory_client/api/wellknown_api.py index 826a77855..188866e68 100644 --- a/ory_client/api/wellknown_api.py +++ b/ory_client/api/wellknown_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api/workspace_api.py b/ory_client/api/workspace_api.py index 954dd84a5..32f557e0d 100644 --- a/ory_client/api/workspace_api.py +++ b/ory_client/api/workspace_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/api_client.py b/ory_client/api_client.py index 5ffdb895e..79356e85c 100644 --- a/ory_client/api_client.py +++ b/ory_client/api_client.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -89,7 +89,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/v1.15.0/python' + self.user_agent = 'OpenAPI-Generator/v1.15.3/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/ory_client/configuration.py b/ory_client/configuration.py index 46b134669..fdf5efc8e 100644 --- a/ory_client/configuration.py +++ b/ory_client/configuration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -436,8 +436,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: v1.15.0\n"\ - "SDK Package Version: v1.15.0".\ + "Version of the API: v1.15.3\n"\ + "SDK Package Version: v1.15.3".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/ory_client/exceptions.py b/ory_client/exceptions.py index a976ed26f..14c25a07e 100644 --- a/ory_client/exceptions.py +++ b/ory_client/exceptions.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/__init__.py b/ory_client/models/__init__.py index e26f56e81..b1d76214a 100644 --- a/ory_client/models/__init__.py +++ b/ory_client/models/__init__.py @@ -6,7 +6,7 @@ Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. - The version of the OpenAPI document: v1.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -97,6 +97,7 @@ from ory_client.models.identity import Identity from ory_client.models.identity_credentials import IdentityCredentials from ory_client.models.identity_credentials_code import IdentityCredentialsCode +from ory_client.models.identity_credentials_code_address import IdentityCredentialsCodeAddress from ory_client.models.identity_credentials_oidc import IdentityCredentialsOidc from ory_client.models.identity_credentials_oidc_provider import IdentityCredentialsOidcProvider from ory_client.models.identity_credentials_password import IdentityCredentialsPassword diff --git a/ory_client/models/accept_o_auth2_consent_request.py b/ory_client/models/accept_o_auth2_consent_request.py index 0fad4535a..2b736077e 100644 --- a/ory_client/models/accept_o_auth2_consent_request.py +++ b/ory_client/models/accept_o_auth2_consent_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/accept_o_auth2_consent_request_session.py b/ory_client/models/accept_o_auth2_consent_request_session.py index ff582239f..45c0fb6d0 100644 --- a/ory_client/models/accept_o_auth2_consent_request_session.py +++ b/ory_client/models/accept_o_auth2_consent_request_session.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/accept_o_auth2_login_request.py b/ory_client/models/accept_o_auth2_login_request.py index fc2cad05b..28347c386 100644 --- a/ory_client/models/accept_o_auth2_login_request.py +++ b/ory_client/models/accept_o_auth2_login_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/account_experience_configuration.py b/ory_client/models/account_experience_configuration.py index 7bbaf8ca8..894a00b50 100644 --- a/ory_client/models/account_experience_configuration.py +++ b/ory_client/models/account_experience_configuration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/account_experience_theme_variables.py b/ory_client/models/account_experience_theme_variables.py index 592449f7a..04b92b474 100644 --- a/ory_client/models/account_experience_theme_variables.py +++ b/ory_client/models/account_experience_theme_variables.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/active_project_in_console.py b/ory_client/models/active_project_in_console.py index cd37721d9..8751105b5 100644 --- a/ory_client/models/active_project_in_console.py +++ b/ory_client/models/active_project_in_console.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/add_project_to_workspace_body.py b/ory_client/models/add_project_to_workspace_body.py index 5426fe7e5..f79fffa81 100644 --- a/ory_client/models/add_project_to_workspace_body.py +++ b/ory_client/models/add_project_to_workspace_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/attribute.py b/ory_client/models/attribute.py index 508f7ae08..c413b2bfc 100644 --- a/ory_client/models/attribute.py +++ b/ory_client/models/attribute.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/attribute_filter.py b/ory_client/models/attribute_filter.py index f8eb62294..977910382 100644 --- a/ory_client/models/attribute_filter.py +++ b/ory_client/models/attribute_filter.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/attributes_count_datapoint.py b/ory_client/models/attributes_count_datapoint.py index 932c5fc06..0522c2c29 100644 --- a/ory_client/models/attributes_count_datapoint.py +++ b/ory_client/models/attributes_count_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/authenticator_assurance_level.py b/ory_client/models/authenticator_assurance_level.py index 4a7a41f9e..3988e199a 100644 --- a/ory_client/models/authenticator_assurance_level.py +++ b/ory_client/models/authenticator_assurance_level.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/batch_check_permission_body.py b/ory_client/models/batch_check_permission_body.py index d04b0f2a3..295750739 100644 --- a/ory_client/models/batch_check_permission_body.py +++ b/ory_client/models/batch_check_permission_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/batch_check_permission_result.py b/ory_client/models/batch_check_permission_result.py index 5c2a4c765..0829eabd0 100644 --- a/ory_client/models/batch_check_permission_result.py +++ b/ory_client/models/batch_check_permission_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/batch_patch_identities_response.py b/ory_client/models/batch_patch_identities_response.py index 75354cdfc..97432f48f 100644 --- a/ory_client/models/batch_patch_identities_response.py +++ b/ory_client/models/batch_patch_identities_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/billing_period_bucket.py b/ory_client/models/billing_period_bucket.py index 4d83e1e61..dd0b8449c 100644 --- a/ory_client/models/billing_period_bucket.py +++ b/ory_client/models/billing_period_bucket.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/check_opl_syntax_result.py b/ory_client/models/check_opl_syntax_result.py index 6e72cfe55..84deff475 100644 --- a/ory_client/models/check_opl_syntax_result.py +++ b/ory_client/models/check_opl_syntax_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/check_permission_result.py b/ory_client/models/check_permission_result.py index d04461ef9..97f7b7e1c 100644 --- a/ory_client/models/check_permission_result.py +++ b/ory_client/models/check_permission_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/check_permission_result_with_error.py b/ory_client/models/check_permission_result_with_error.py index 934ce095a..433cdb2ca 100644 --- a/ory_client/models/check_permission_result_with_error.py +++ b/ory_client/models/check_permission_result_with_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/cloud_account.py b/ory_client/models/cloud_account.py index 6df3417de..a18df72c9 100644 --- a/ory_client/models/cloud_account.py +++ b/ory_client/models/cloud_account.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/consistency_request_parameters.py b/ory_client/models/consistency_request_parameters.py index f2f80a132..20236b835 100644 --- a/ory_client/models/consistency_request_parameters.py +++ b/ory_client/models/consistency_request_parameters.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with.py b/ory_client/models/continue_with.py index 5050b8b69..e5fd8e980 100644 --- a/ory_client/models/continue_with.py +++ b/ory_client/models/continue_with.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_recovery_ui.py b/ory_client/models/continue_with_recovery_ui.py index 77eea120d..16ceef630 100644 --- a/ory_client/models/continue_with_recovery_ui.py +++ b/ory_client/models/continue_with_recovery_ui.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_recovery_ui_flow.py b/ory_client/models/continue_with_recovery_ui_flow.py index 716059706..00a3dfab9 100644 --- a/ory_client/models/continue_with_recovery_ui_flow.py +++ b/ory_client/models/continue_with_recovery_ui_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_redirect_browser_to.py b/ory_client/models/continue_with_redirect_browser_to.py index c8a0c4e3a..d765ea63f 100644 --- a/ory_client/models/continue_with_redirect_browser_to.py +++ b/ory_client/models/continue_with_redirect_browser_to.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_set_ory_session_token.py b/ory_client/models/continue_with_set_ory_session_token.py index 6e1175392..e2c2dd011 100644 --- a/ory_client/models/continue_with_set_ory_session_token.py +++ b/ory_client/models/continue_with_set_ory_session_token.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_settings_ui.py b/ory_client/models/continue_with_settings_ui.py index 3065403d1..8d1c79659 100644 --- a/ory_client/models/continue_with_settings_ui.py +++ b/ory_client/models/continue_with_settings_ui.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_settings_ui_flow.py b/ory_client/models/continue_with_settings_ui_flow.py index 8b826a24d..04a565a9b 100644 --- a/ory_client/models/continue_with_settings_ui_flow.py +++ b/ory_client/models/continue_with_settings_ui_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_verification_ui.py b/ory_client/models/continue_with_verification_ui.py index b99cd3443..803cdf18a 100644 --- a/ory_client/models/continue_with_verification_ui.py +++ b/ory_client/models/continue_with_verification_ui.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/continue_with_verification_ui_flow.py b/ory_client/models/continue_with_verification_ui_flow.py index bb4bfb7a3..912f35f19 100644 --- a/ory_client/models/continue_with_verification_ui_flow.py +++ b/ory_client/models/continue_with_verification_ui_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/courier_message_status.py b/ory_client/models/courier_message_status.py index 863c38343..6fbdf51d8 100644 --- a/ory_client/models/courier_message_status.py +++ b/ory_client/models/courier_message_status.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/courier_message_type.py b/ory_client/models/courier_message_type.py index d9952de8a..5825546d3 100644 --- a/ory_client/models/courier_message_type.py +++ b/ory_client/models/courier_message_type.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_custom_domain_body.py b/ory_client/models/create_custom_domain_body.py index e941c8b23..38e3a7d21 100644 --- a/ory_client/models/create_custom_domain_body.py +++ b/ory_client/models/create_custom_domain_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_event_stream_body.py b/ory_client/models/create_event_stream_body.py index a72edafa4..d87f2c472 100644 --- a/ory_client/models/create_event_stream_body.py +++ b/ory_client/models/create_event_stream_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_identity_body.py b/ory_client/models/create_identity_body.py index 237549a57..977095849 100644 --- a/ory_client/models/create_identity_body.py +++ b/ory_client/models/create_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_invite_response.py b/ory_client/models/create_invite_response.py index c397b3a16..d265f19cf 100644 --- a/ory_client/models/create_invite_response.py +++ b/ory_client/models/create_invite_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_json_web_key_set.py b/ory_client/models/create_json_web_key_set.py index 5ed200e4e..da1ac6cc9 100644 --- a/ory_client/models/create_json_web_key_set.py +++ b/ory_client/models/create_json_web_key_set.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_project_api_key_request.py b/ory_client/models/create_project_api_key_request.py index 39bb47237..c4bbe9d1d 100644 --- a/ory_client/models/create_project_api_key_request.py +++ b/ory_client/models/create_project_api_key_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_project_body.py b/ory_client/models/create_project_body.py index de932efe8..b8d73ac52 100644 --- a/ory_client/models/create_project_body.py +++ b/ory_client/models/create_project_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_project_branding.py b/ory_client/models/create_project_branding.py index 5a5193359..09b01baea 100644 --- a/ory_client/models/create_project_branding.py +++ b/ory_client/models/create_project_branding.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_project_member_invite_body.py b/ory_client/models/create_project_member_invite_body.py index e900feae1..bcac0bb81 100644 --- a/ory_client/models/create_project_member_invite_body.py +++ b/ory_client/models/create_project_member_invite_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_project_normalized_payload.py b/ory_client/models/create_project_normalized_payload.py index 8e1d1229c..51a7d1394 100644 --- a/ory_client/models/create_project_normalized_payload.py +++ b/ory_client/models/create_project_normalized_payload.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_recovery_code_for_identity_body.py b/ory_client/models/create_recovery_code_for_identity_body.py index 085c153fc..f95e3b5d9 100644 --- a/ory_client/models/create_recovery_code_for_identity_body.py +++ b/ory_client/models/create_recovery_code_for_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_recovery_link_for_identity_body.py b/ory_client/models/create_recovery_link_for_identity_body.py index 2d66b77a8..509519f29 100644 --- a/ory_client/models/create_recovery_link_for_identity_body.py +++ b/ory_client/models/create_recovery_link_for_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_relationship_body.py b/ory_client/models/create_relationship_body.py index a9cfcc688..e073418dd 100644 --- a/ory_client/models/create_relationship_body.py +++ b/ory_client/models/create_relationship_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_subscription_body.py b/ory_client/models/create_subscription_body.py index ac8656c73..cd61acbbd 100644 --- a/ory_client/models/create_subscription_body.py +++ b/ory_client/models/create_subscription_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_subscription_common.py b/ory_client/models/create_subscription_common.py index b5160372c..a0212211f 100644 --- a/ory_client/models/create_subscription_common.py +++ b/ory_client/models/create_subscription_common.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_verifiable_credential_request_body.py b/ory_client/models/create_verifiable_credential_request_body.py index 523cf2b35..14b009b1c 100644 --- a/ory_client/models/create_verifiable_credential_request_body.py +++ b/ory_client/models/create_verifiable_credential_request_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_workspace_api_key_body.py b/ory_client/models/create_workspace_api_key_body.py index 61bd86e47..b320e20b9 100644 --- a/ory_client/models/create_workspace_api_key_body.py +++ b/ory_client/models/create_workspace_api_key_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_workspace_body.py b/ory_client/models/create_workspace_body.py index 53b1cff95..d4c21f3c0 100644 --- a/ory_client/models/create_workspace_body.py +++ b/ory_client/models/create_workspace_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_workspace_member_invite_body.py b/ory_client/models/create_workspace_member_invite_body.py index 40eaf7e00..ea311e8c4 100644 --- a/ory_client/models/create_workspace_member_invite_body.py +++ b/ory_client/models/create_workspace_member_invite_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/create_workspace_subscription_body.py b/ory_client/models/create_workspace_subscription_body.py index cde4864f8..46aecac47 100644 --- a/ory_client/models/create_workspace_subscription_body.py +++ b/ory_client/models/create_workspace_subscription_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/credential_supported_draft00.py b/ory_client/models/credential_supported_draft00.py index 6b335e623..76135deed 100644 --- a/ory_client/models/credential_supported_draft00.py +++ b/ory_client/models/credential_supported_draft00.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/custom_domain.py b/ory_client/models/custom_domain.py index 2084fe0ad..caaaf539c 100644 --- a/ory_client/models/custom_domain.py +++ b/ory_client/models/custom_domain.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/delete_my_sessions_count.py b/ory_client/models/delete_my_sessions_count.py index 70c5e2c9d..ec64bab32 100644 --- a/ory_client/models/delete_my_sessions_count.py +++ b/ory_client/models/delete_my_sessions_count.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/email_template_data.py b/ory_client/models/email_template_data.py index 74578e837..db7aeb2a6 100644 --- a/ory_client/models/email_template_data.py +++ b/ory_client/models/email_template_data.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/email_template_data_body.py b/ory_client/models/email_template_data_body.py index 0f1cb535f..cb8aa44a6 100644 --- a/ory_client/models/email_template_data_body.py +++ b/ory_client/models/email_template_data_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/error_authenticator_assurance_level_not_satisfied.py b/ory_client/models/error_authenticator_assurance_level_not_satisfied.py index 25d53beda..961fcc2e8 100644 --- a/ory_client/models/error_authenticator_assurance_level_not_satisfied.py +++ b/ory_client/models/error_authenticator_assurance_level_not_satisfied.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/error_browser_location_change_required.py b/ory_client/models/error_browser_location_change_required.py index 82a6b05f1..c066e04b8 100644 --- a/ory_client/models/error_browser_location_change_required.py +++ b/ory_client/models/error_browser_location_change_required.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/error_flow_replaced.py b/ory_client/models/error_flow_replaced.py index e6f0cf7fa..1c8ab4edc 100644 --- a/ory_client/models/error_flow_replaced.py +++ b/ory_client/models/error_flow_replaced.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/error_generic.py b/ory_client/models/error_generic.py index 07d320c92..670b41276 100644 --- a/ory_client/models/error_generic.py +++ b/ory_client/models/error_generic.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/error_o_auth2.py b/ory_client/models/error_o_auth2.py index 992d44d72..0cde1e295 100644 --- a/ory_client/models/error_o_auth2.py +++ b/ory_client/models/error_o_auth2.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/event_stream.py b/ory_client/models/event_stream.py index 4a024503a..081a42f1c 100644 --- a/ory_client/models/event_stream.py +++ b/ory_client/models/event_stream.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/expanded_permission_tree.py b/ory_client/models/expanded_permission_tree.py index 4c2ab70ba..d0d92463d 100644 --- a/ory_client/models/expanded_permission_tree.py +++ b/ory_client/models/expanded_permission_tree.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/flow_error.py b/ory_client/models/flow_error.py index 48d1e4317..131a326fd 100644 --- a/ory_client/models/flow_error.py +++ b/ory_client/models/flow_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/generic_error.py b/ory_client/models/generic_error.py index 1316a5449..b0effbdfa 100644 --- a/ory_client/models/generic_error.py +++ b/ory_client/models/generic_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/generic_error_content.py b/ory_client/models/generic_error_content.py index 84caf229e..d5f425582 100644 --- a/ory_client/models/generic_error_content.py +++ b/ory_client/models/generic_error_content.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/generic_usage.py b/ory_client/models/generic_usage.py index 507281dfe..4eb8e9c3d 100644 --- a/ory_client/models/generic_usage.py +++ b/ory_client/models/generic_usage.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_attributes_count_response.py b/ory_client/models/get_attributes_count_response.py index bbe03d170..26de82ba8 100644 --- a/ory_client/models/get_attributes_count_response.py +++ b/ory_client/models/get_attributes_count_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_managed_identity_schema_location.py b/ory_client/models/get_managed_identity_schema_location.py index 3ef1b4589..0d982ef43 100644 --- a/ory_client/models/get_managed_identity_schema_location.py +++ b/ory_client/models/get_managed_identity_schema_location.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_metrics_event_attributes_response.py b/ory_client/models/get_metrics_event_attributes_response.py index c9aa0a5bd..536e29f03 100644 --- a/ory_client/models/get_metrics_event_attributes_response.py +++ b/ory_client/models/get_metrics_event_attributes_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_metrics_event_types_response.py b/ory_client/models/get_metrics_event_types_response.py index 2f6578b85..1e6f8e297 100644 --- a/ory_client/models/get_metrics_event_types_response.py +++ b/ory_client/models/get_metrics_event_types_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_organization_response.py b/ory_client/models/get_organization_response.py index 5565fc21b..f06d92310 100644 --- a/ory_client/models/get_organization_response.py +++ b/ory_client/models/get_organization_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_project_events_body.py b/ory_client/models/get_project_events_body.py index 6f55c15b0..a69cb232d 100644 --- a/ory_client/models/get_project_events_body.py +++ b/ory_client/models/get_project_events_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_project_events_response.py b/ory_client/models/get_project_events_response.py index 3306e2ad0..805ae93a3 100644 --- a/ory_client/models/get_project_events_response.py +++ b/ory_client/models/get_project_events_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_project_metrics_response.py b/ory_client/models/get_project_metrics_response.py index 17e634f7c..00ffdf3f2 100644 --- a/ory_client/models/get_project_metrics_response.py +++ b/ory_client/models/get_project_metrics_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_session_activity_response.py b/ory_client/models/get_session_activity_response.py index 0ac50c884..f7451f02b 100644 --- a/ory_client/models/get_session_activity_response.py +++ b/ory_client/models/get_session_activity_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/get_version200_response.py b/ory_client/models/get_version200_response.py index fbf961bf7..0486d7d24 100644 --- a/ory_client/models/get_version200_response.py +++ b/ory_client/models/get_version200_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/health_not_ready_status.py b/ory_client/models/health_not_ready_status.py index b06aa844c..fd5c05be8 100644 --- a/ory_client/models/health_not_ready_status.py +++ b/ory_client/models/health_not_ready_status.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/health_status.py b/ory_client/models/health_status.py index 2089b3946..ff685c19a 100644 --- a/ory_client/models/health_status.py +++ b/ory_client/models/health_status.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity.py b/ory_client/models/identity.py index a55a40f4a..8e651e7fa 100644 --- a/ory_client/models/identity.py +++ b/ory_client/models/identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_credentials.py b/ory_client/models/identity_credentials.py index be06fd825..28d0acefe 100644 --- a/ory_client/models/identity_credentials.py +++ b/ory_client/models/identity_credentials.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_credentials_code.py b/ory_client/models/identity_credentials_code.py index b45c27380..ae33ef232 100644 --- a/ory_client/models/identity_credentials_code.py +++ b/ory_client/models/identity_credentials_code.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,9 +18,9 @@ import re # noqa: F401 import json -from datetime import datetime -from pydantic import BaseModel, ConfigDict, Field, StrictStr +from pydantic import BaseModel, ConfigDict from typing import Any, ClassVar, Dict, List, Optional +from ory_client.models.identity_credentials_code_address import IdentityCredentialsCodeAddress from typing import Optional, Set from typing_extensions import Self @@ -28,10 +28,9 @@ class IdentityCredentialsCode(BaseModel): """ CredentialsCode represents a one time login/registration code """ # noqa: E501 - address_type: Optional[StrictStr] = Field(default=None, description="The type of the address for this code") - used_at: Optional[datetime] = None + addresses: Optional[List[IdentityCredentialsCodeAddress]] = None additional_properties: Dict[str, Any] = {} - __properties: ClassVar[List[str]] = ["address_type", "used_at"] + __properties: ClassVar[List[str]] = ["addresses"] model_config = ConfigDict( populate_by_name=True, @@ -74,16 +73,18 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of each item in addresses (list) + _items = [] + if self.addresses: + for _item in self.addresses: + if _item: + _items.append(_item.to_dict()) + _dict['addresses'] = _items # puts key-value pairs in additional_properties in the top level if self.additional_properties is not None: for _key, _value in self.additional_properties.items(): _dict[_key] = _value - # set to None if used_at (nullable) is None - # and model_fields_set contains the field - if self.used_at is None and "used_at" in self.model_fields_set: - _dict['used_at'] = None - return _dict @classmethod @@ -96,8 +97,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ - "address_type": obj.get("address_type"), - "used_at": obj.get("used_at") + "addresses": [IdentityCredentialsCodeAddress.from_dict(_item) for _item in obj["addresses"]] if obj.get("addresses") is not None else None }) # store additional fields in additional_properties for _key in obj.keys(): diff --git a/ory_client/models/identity_credentials_code_address.py b/ory_client/models/identity_credentials_code_address.py new file mode 100644 index 000000000..1b112afa5 --- /dev/null +++ b/ory_client/models/identity_credentials_code_address.py @@ -0,0 +1,103 @@ +# coding: utf-8 + +""" + Ory APIs + + Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. + + The version of the OpenAPI document: v1.15.3 + Contact: support@ory.sh + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class IdentityCredentialsCodeAddress(BaseModel): + """ + IdentityCredentialsCodeAddress + """ # noqa: E501 + address: Optional[StrictStr] = Field(default=None, description="The address for this code") + channel: Optional[StrictStr] = None + additional_properties: Dict[str, Any] = {} + __properties: ClassVar[List[str]] = ["address", "channel"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of IdentityCredentialsCodeAddress from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + * Fields in `self.additional_properties` are added to the output dict. + """ + excluded_fields: Set[str] = set([ + "additional_properties", + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # puts key-value pairs in additional_properties in the top level + if self.additional_properties is not None: + for _key, _value in self.additional_properties.items(): + _dict[_key] = _value + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of IdentityCredentialsCodeAddress from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "address": obj.get("address"), + "channel": obj.get("channel") + }) + # store additional fields in additional_properties + for _key in obj.keys(): + if _key not in cls.__properties: + _obj.additional_properties[_key] = obj.get(_key) + + return _obj + + diff --git a/ory_client/models/identity_credentials_oidc.py b/ory_client/models/identity_credentials_oidc.py index f9a0fdea9..ebbcb12cc 100644 --- a/ory_client/models/identity_credentials_oidc.py +++ b/ory_client/models/identity_credentials_oidc.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_credentials_oidc_provider.py b/ory_client/models/identity_credentials_oidc_provider.py index c03e6d517..d37f10319 100644 --- a/ory_client/models/identity_credentials_oidc_provider.py +++ b/ory_client/models/identity_credentials_oidc_provider.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_credentials_password.py b/ory_client/models/identity_credentials_password.py index 03ebe74dc..4e98a7f95 100644 --- a/ory_client/models/identity_credentials_password.py +++ b/ory_client/models/identity_credentials_password.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_patch.py b/ory_client/models/identity_patch.py index ca0181e78..7237b7f16 100644 --- a/ory_client/models/identity_patch.py +++ b/ory_client/models/identity_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_patch_response.py b/ory_client/models/identity_patch_response.py index 5b1d79c08..f1c19b4ba 100644 --- a/ory_client/models/identity_patch_response.py +++ b/ory_client/models/identity_patch_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_schema_container.py b/ory_client/models/identity_schema_container.py index 037d53156..a5dc27be3 100644 --- a/ory_client/models/identity_schema_container.py +++ b/ory_client/models/identity_schema_container.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_schema_preset.py b/ory_client/models/identity_schema_preset.py index 8a69653d7..46841f294 100644 --- a/ory_client/models/identity_schema_preset.py +++ b/ory_client/models/identity_schema_preset.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_with_credentials.py b/ory_client/models/identity_with_credentials.py index 18e8163d5..7c3cf0b88 100644 --- a/ory_client/models/identity_with_credentials.py +++ b/ory_client/models/identity_with_credentials.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_with_credentials_oidc.py b/ory_client/models/identity_with_credentials_oidc.py index 7826cad91..f21cd9997 100644 --- a/ory_client/models/identity_with_credentials_oidc.py +++ b/ory_client/models/identity_with_credentials_oidc.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_with_credentials_oidc_config.py b/ory_client/models/identity_with_credentials_oidc_config.py index 4ee2a7352..3ae2ab96c 100644 --- a/ory_client/models/identity_with_credentials_oidc_config.py +++ b/ory_client/models/identity_with_credentials_oidc_config.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_with_credentials_oidc_config_provider.py b/ory_client/models/identity_with_credentials_oidc_config_provider.py index 3e5c5d7b0..edd29339b 100644 --- a/ory_client/models/identity_with_credentials_oidc_config_provider.py +++ b/ory_client/models/identity_with_credentials_oidc_config_provider.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_with_credentials_password.py b/ory_client/models/identity_with_credentials_password.py index b934af37f..6d36d8471 100644 --- a/ory_client/models/identity_with_credentials_password.py +++ b/ory_client/models/identity_with_credentials_password.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/identity_with_credentials_password_config.py b/ory_client/models/identity_with_credentials_password_config.py index d16cf6044..fe3729dd6 100644 --- a/ory_client/models/identity_with_credentials_password_config.py +++ b/ory_client/models/identity_with_credentials_password_config.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/internal_get_project_branding_body.py b/ory_client/models/internal_get_project_branding_body.py index 50273c7b7..94b0ea108 100644 --- a/ory_client/models/internal_get_project_branding_body.py +++ b/ory_client/models/internal_get_project_branding_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py b/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py index 45a2bcd06..b960c8966 100644 --- a/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py +++ b/ory_client/models/internal_is_ax_welcome_screen_enabled_for_project_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/internal_is_owner_for_project_by_slug_body.py b/ory_client/models/internal_is_owner_for_project_by_slug_body.py index 0d3ce6e37..71cf831dc 100644 --- a/ory_client/models/internal_is_owner_for_project_by_slug_body.py +++ b/ory_client/models/internal_is_owner_for_project_by_slug_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/internal_is_owner_for_project_by_slug_response.py b/ory_client/models/internal_is_owner_for_project_by_slug_response.py index 3d707c4d1..fad3f1a61 100644 --- a/ory_client/models/internal_is_owner_for_project_by_slug_response.py +++ b/ory_client/models/internal_is_owner_for_project_by_slug_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/introspected_o_auth2_token.py b/ory_client/models/introspected_o_auth2_token.py index ac673e8c1..a29daeebd 100644 --- a/ory_client/models/introspected_o_auth2_token.py +++ b/ory_client/models/introspected_o_auth2_token.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/invoice.py b/ory_client/models/invoice.py index e86f62be0..2c4ea77c9 100644 --- a/ory_client/models/invoice.py +++ b/ory_client/models/invoice.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/invoice_data_v1.py b/ory_client/models/invoice_data_v1.py index 904646efd..9a0189542 100644 --- a/ory_client/models/invoice_data_v1.py +++ b/ory_client/models/invoice_data_v1.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/is_owner_for_project_by_slug.py b/ory_client/models/is_owner_for_project_by_slug.py index 528899622..cb7b219b3 100644 --- a/ory_client/models/is_owner_for_project_by_slug.py +++ b/ory_client/models/is_owner_for_project_by_slug.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/json_patch.py b/ory_client/models/json_patch.py index c87c8ebda..cf6288702 100644 --- a/ory_client/models/json_patch.py +++ b/ory_client/models/json_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/json_web_key.py b/ory_client/models/json_web_key.py index 3720b077e..c862880a0 100644 --- a/ory_client/models/json_web_key.py +++ b/ory_client/models/json_web_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/json_web_key_set.py b/ory_client/models/json_web_key_set.py index 0cacf739b..1b26e285d 100644 --- a/ory_client/models/json_web_key_set.py +++ b/ory_client/models/json_web_key_set.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/keto_namespace.py b/ory_client/models/keto_namespace.py index e7fb08abb..f79a656e3 100644 --- a/ory_client/models/keto_namespace.py +++ b/ory_client/models/keto_namespace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/line_item_v1.py b/ory_client/models/line_item_v1.py index be7ba85c8..617e67a6a 100644 --- a/ory_client/models/line_item_v1.py +++ b/ory_client/models/line_item_v1.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/list_event_streams.py b/ory_client/models/list_event_streams.py index f9a69cef6..0cc09fec9 100644 --- a/ory_client/models/list_event_streams.py +++ b/ory_client/models/list_event_streams.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/list_invoices_response.py b/ory_client/models/list_invoices_response.py index 4e8303c9f..097c16eff 100644 --- a/ory_client/models/list_invoices_response.py +++ b/ory_client/models/list_invoices_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/list_organizations_response.py b/ory_client/models/list_organizations_response.py index 2ab9f6014..0eb8c6eff 100644 --- a/ory_client/models/list_organizations_response.py +++ b/ory_client/models/list_organizations_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/list_workspace_projects.py b/ory_client/models/list_workspace_projects.py index b66555e59..cb94d2dbf 100644 --- a/ory_client/models/list_workspace_projects.py +++ b/ory_client/models/list_workspace_projects.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/list_workspaces.py b/ory_client/models/list_workspaces.py index 450d40ce5..0a0c16673 100644 --- a/ory_client/models/list_workspaces.py +++ b/ory_client/models/list_workspaces.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/login_flow.py b/ory_client/models/login_flow.py index fc9ce69f8..b0150af44 100644 --- a/ory_client/models/login_flow.py +++ b/ory_client/models/login_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/login_flow_state.py b/ory_client/models/login_flow_state.py index 0cc8355b5..ad53d5917 100644 --- a/ory_client/models/login_flow_state.py +++ b/ory_client/models/login_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/logout_flow.py b/ory_client/models/logout_flow.py index 26d124e4c..a63359f85 100644 --- a/ory_client/models/logout_flow.py +++ b/ory_client/models/logout_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/managed_identity_schema.py b/ory_client/models/managed_identity_schema.py index f65b27b69..d1cc18026 100644 --- a/ory_client/models/managed_identity_schema.py +++ b/ory_client/models/managed_identity_schema.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/managed_identity_schema_validation_result.py b/ory_client/models/managed_identity_schema_validation_result.py index 9bcb5833d..6d5d2414f 100644 --- a/ory_client/models/managed_identity_schema_validation_result.py +++ b/ory_client/models/managed_identity_schema_validation_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/member_invite.py b/ory_client/models/member_invite.py index 88aba08e1..6b6ebfcc1 100644 --- a/ory_client/models/member_invite.py +++ b/ory_client/models/member_invite.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/message.py b/ory_client/models/message.py index 6db2151cf..176597326 100644 --- a/ory_client/models/message.py +++ b/ory_client/models/message.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/message_dispatch.py b/ory_client/models/message_dispatch.py index d35a427a0..acf6b1ca4 100644 --- a/ory_client/models/message_dispatch.py +++ b/ory_client/models/message_dispatch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/metrics_datapoint.py b/ory_client/models/metrics_datapoint.py index 790a24891..d2d1fd932 100644 --- a/ory_client/models/metrics_datapoint.py +++ b/ory_client/models/metrics_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/money.py b/ory_client/models/money.py index 0f1f9fada..d3e678ad5 100644 --- a/ory_client/models/money.py +++ b/ory_client/models/money.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/namespace.py b/ory_client/models/namespace.py index 6c55f98e8..ae8f494b5 100644 --- a/ory_client/models/namespace.py +++ b/ory_client/models/namespace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/needs_privileged_session_error.py b/ory_client/models/needs_privileged_session_error.py index f625379fd..731bc294c 100644 --- a/ory_client/models/needs_privileged_session_error.py +++ b/ory_client/models/needs_privileged_session_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project.py b/ory_client/models/normalized_project.py index 0d305e2e9..e0063595b 100644 --- a/ory_client/models/normalized_project.py +++ b/ory_client/models/normalized_project.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project_revision.py b/ory_client/models/normalized_project_revision.py index fedf78756..e558dab65 100644 --- a/ory_client/models/normalized_project_revision.py +++ b/ory_client/models/normalized_project_revision.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project_revision_courier_channel.py b/ory_client/models/normalized_project_revision_courier_channel.py index 19efbff7c..e3605fc0a 100644 --- a/ory_client/models/normalized_project_revision_courier_channel.py +++ b/ory_client/models/normalized_project_revision_courier_channel.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project_revision_hook.py b/ory_client/models/normalized_project_revision_hook.py index 4712866c6..312ec8c08 100644 --- a/ory_client/models/normalized_project_revision_hook.py +++ b/ory_client/models/normalized_project_revision_hook.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project_revision_identity_schema.py b/ory_client/models/normalized_project_revision_identity_schema.py index 3d47f3d9d..3cbc397af 100644 --- a/ory_client/models/normalized_project_revision_identity_schema.py +++ b/ory_client/models/normalized_project_revision_identity_schema.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project_revision_third_party_provider.py b/ory_client/models/normalized_project_revision_third_party_provider.py index 59ae50223..af3102d50 100644 --- a/ory_client/models/normalized_project_revision_third_party_provider.py +++ b/ory_client/models/normalized_project_revision_third_party_provider.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/normalized_project_revision_tokenizer_template.py b/ory_client/models/normalized_project_revision_tokenizer_template.py index 0117286b3..021be3700 100644 --- a/ory_client/models/normalized_project_revision_tokenizer_template.py +++ b/ory_client/models/normalized_project_revision_tokenizer_template.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_client.py b/ory_client/models/o_auth2_client.py index 9370a27ad..70c999e02 100644 --- a/ory_client/models/o_auth2_client.py +++ b/ory_client/models/o_auth2_client.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_client_token_lifespans.py b/ory_client/models/o_auth2_client_token_lifespans.py index 1f8b88342..d389c60cc 100644 --- a/ory_client/models/o_auth2_client_token_lifespans.py +++ b/ory_client/models/o_auth2_client_token_lifespans.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_consent_request.py b/ory_client/models/o_auth2_consent_request.py index cb10bf5d1..314befde2 100644 --- a/ory_client/models/o_auth2_consent_request.py +++ b/ory_client/models/o_auth2_consent_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_consent_request_open_id_connect_context.py b/ory_client/models/o_auth2_consent_request_open_id_connect_context.py index 84564f4c1..31863adec 100644 --- a/ory_client/models/o_auth2_consent_request_open_id_connect_context.py +++ b/ory_client/models/o_auth2_consent_request_open_id_connect_context.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_consent_session.py b/ory_client/models/o_auth2_consent_session.py index e36c490f7..48d2365ee 100644 --- a/ory_client/models/o_auth2_consent_session.py +++ b/ory_client/models/o_auth2_consent_session.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_consent_session_expires_at.py b/ory_client/models/o_auth2_consent_session_expires_at.py index 329e22adf..93e894feb 100644 --- a/ory_client/models/o_auth2_consent_session_expires_at.py +++ b/ory_client/models/o_auth2_consent_session_expires_at.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_login_request.py b/ory_client/models/o_auth2_login_request.py index 41c54d7b6..8f9ef37ac 100644 --- a/ory_client/models/o_auth2_login_request.py +++ b/ory_client/models/o_auth2_login_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_logout_request.py b/ory_client/models/o_auth2_logout_request.py index dd6b68a0e..66d1535b8 100644 --- a/ory_client/models/o_auth2_logout_request.py +++ b/ory_client/models/o_auth2_logout_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_redirect_to.py b/ory_client/models/o_auth2_redirect_to.py index cc8f4e689..3fec21b76 100644 --- a/ory_client/models/o_auth2_redirect_to.py +++ b/ory_client/models/o_auth2_redirect_to.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/o_auth2_token_exchange.py b/ory_client/models/o_auth2_token_exchange.py index dce4dd14d..65ed4b19e 100644 --- a/ory_client/models/o_auth2_token_exchange.py +++ b/ory_client/models/o_auth2_token_exchange.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/oidc_configuration.py b/ory_client/models/oidc_configuration.py index ef4c867a6..1df47ada5 100644 --- a/ory_client/models/oidc_configuration.py +++ b/ory_client/models/oidc_configuration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/oidc_user_info.py b/ory_client/models/oidc_user_info.py index 00a52e407..8ac438a57 100644 --- a/ory_client/models/oidc_user_info.py +++ b/ory_client/models/oidc_user_info.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/organization.py b/ory_client/models/organization.py index 9aedf3ae3..076bbd5c8 100644 --- a/ory_client/models/organization.py +++ b/ory_client/models/organization.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/organization_body.py b/ory_client/models/organization_body.py index 3276f185e..a4145f6e1 100644 --- a/ory_client/models/organization_body.py +++ b/ory_client/models/organization_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/pagination.py b/ory_client/models/pagination.py index d2d45acd4..07d8ae447 100644 --- a/ory_client/models/pagination.py +++ b/ory_client/models/pagination.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/pagination_headers.py b/ory_client/models/pagination_headers.py index 0874b0813..79e3552e0 100644 --- a/ory_client/models/pagination_headers.py +++ b/ory_client/models/pagination_headers.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/parse_error.py b/ory_client/models/parse_error.py index c8fb5e9aa..243f2255b 100644 --- a/ory_client/models/parse_error.py +++ b/ory_client/models/parse_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/patch_identities_body.py b/ory_client/models/patch_identities_body.py index 2f24f8219..2dde63787 100644 --- a/ory_client/models/patch_identities_body.py +++ b/ory_client/models/patch_identities_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/perform_native_logout_body.py b/ory_client/models/perform_native_logout_body.py index f31edd8dd..0355d5daf 100644 --- a/ory_client/models/perform_native_logout_body.py +++ b/ory_client/models/perform_native_logout_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/permissions_on_workspace.py b/ory_client/models/permissions_on_workspace.py index 5be998a08..5d63079d8 100644 --- a/ory_client/models/permissions_on_workspace.py +++ b/ory_client/models/permissions_on_workspace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/plan.py b/ory_client/models/plan.py index 942556d3f..762254256 100644 --- a/ory_client/models/plan.py +++ b/ory_client/models/plan.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/plan_details.py b/ory_client/models/plan_details.py index 8d871ec7c..61be15928 100644 --- a/ory_client/models/plan_details.py +++ b/ory_client/models/plan_details.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/post_check_permission_body.py b/ory_client/models/post_check_permission_body.py index 4c25871eb..559e14e32 100644 --- a/ory_client/models/post_check_permission_body.py +++ b/ory_client/models/post_check_permission_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/post_check_permission_or_error_body.py b/ory_client/models/post_check_permission_or_error_body.py index 4fb6a6323..0d298f86f 100644 --- a/ory_client/models/post_check_permission_or_error_body.py +++ b/ory_client/models/post_check_permission_or_error_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project.py b/ory_client/models/project.py index 36de7f058..ad0918c30 100644 --- a/ory_client/models/project.py +++ b/ory_client/models/project.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_api_key.py b/ory_client/models/project_api_key.py index f4a0b8851..4f1ff63f6 100644 --- a/ory_client/models/project_api_key.py +++ b/ory_client/models/project_api_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_branding.py b/ory_client/models/project_branding.py index 589c5b387..04e491ab0 100644 --- a/ory_client/models/project_branding.py +++ b/ory_client/models/project_branding.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_branding_colors.py b/ory_client/models/project_branding_colors.py index 20a40b9ff..d019045b4 100644 --- a/ory_client/models/project_branding_colors.py +++ b/ory_client/models/project_branding_colors.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_branding_theme.py b/ory_client/models/project_branding_theme.py index b0e2a6441..9a0f06d65 100644 --- a/ory_client/models/project_branding_theme.py +++ b/ory_client/models/project_branding_theme.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_cors.py b/ory_client/models/project_cors.py index 972f841e7..b6b667eec 100644 --- a/ory_client/models/project_cors.py +++ b/ory_client/models/project_cors.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_events_datapoint.py b/ory_client/models/project_events_datapoint.py index de96921b8..99adceeeb 100644 --- a/ory_client/models/project_events_datapoint.py +++ b/ory_client/models/project_events_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_host.py b/ory_client/models/project_host.py index d47cc64d3..3a2d52718 100644 --- a/ory_client/models/project_host.py +++ b/ory_client/models/project_host.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_member.py b/ory_client/models/project_member.py index 45032922e..4d69b7e81 100644 --- a/ory_client/models/project_member.py +++ b/ory_client/models/project_member.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_metadata.py b/ory_client/models/project_metadata.py index a802e72b2..cd033b5a3 100644 --- a/ory_client/models/project_metadata.py +++ b/ory_client/models/project_metadata.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_service_identity.py b/ory_client/models/project_service_identity.py index da3d6b4b6..3a70af318 100644 --- a/ory_client/models/project_service_identity.py +++ b/ory_client/models/project_service_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_service_o_auth2.py b/ory_client/models/project_service_o_auth2.py index e1e0632cd..95a4ab8c2 100644 --- a/ory_client/models/project_service_o_auth2.py +++ b/ory_client/models/project_service_o_auth2.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_service_permission.py b/ory_client/models/project_service_permission.py index b0a8bbf5a..45053ac13 100644 --- a/ory_client/models/project_service_permission.py +++ b/ory_client/models/project_service_permission.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/project_services.py b/ory_client/models/project_services.py index 7d9596179..ede9b66b9 100644 --- a/ory_client/models/project_services.py +++ b/ory_client/models/project_services.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/quota_usage.py b/ory_client/models/quota_usage.py index 6e3bf009a..f230605c9 100644 --- a/ory_client/models/quota_usage.py +++ b/ory_client/models/quota_usage.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/recovery_code_for_identity.py b/ory_client/models/recovery_code_for_identity.py index 0acce33c8..13f7f7742 100644 --- a/ory_client/models/recovery_code_for_identity.py +++ b/ory_client/models/recovery_code_for_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/recovery_flow.py b/ory_client/models/recovery_flow.py index bee7e9c26..d10260bfb 100644 --- a/ory_client/models/recovery_flow.py +++ b/ory_client/models/recovery_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/recovery_flow_state.py b/ory_client/models/recovery_flow_state.py index 1bf10c8f9..8c4ecced1 100644 --- a/ory_client/models/recovery_flow_state.py +++ b/ory_client/models/recovery_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/recovery_identity_address.py b/ory_client/models/recovery_identity_address.py index 6958c8ce5..6466ba0ba 100644 --- a/ory_client/models/recovery_identity_address.py +++ b/ory_client/models/recovery_identity_address.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/recovery_link_for_identity.py b/ory_client/models/recovery_link_for_identity.py index a289a7c14..1e67b50b3 100644 --- a/ory_client/models/recovery_link_for_identity.py +++ b/ory_client/models/recovery_link_for_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/registration_flow.py b/ory_client/models/registration_flow.py index b367d87ef..130ccf341 100644 --- a/ory_client/models/registration_flow.py +++ b/ory_client/models/registration_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/registration_flow_state.py b/ory_client/models/registration_flow_state.py index 3e9bae567..e2af7e994 100644 --- a/ory_client/models/registration_flow_state.py +++ b/ory_client/models/registration_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/reject_o_auth2_request.py b/ory_client/models/reject_o_auth2_request.py index f8b87c49a..5cb4fa44e 100644 --- a/ory_client/models/reject_o_auth2_request.py +++ b/ory_client/models/reject_o_auth2_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/relation_query.py b/ory_client/models/relation_query.py index 00ae72f31..9ffa29e4e 100644 --- a/ory_client/models/relation_query.py +++ b/ory_client/models/relation_query.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/relationship.py b/ory_client/models/relationship.py index 50ba2431c..5db4141cb 100644 --- a/ory_client/models/relationship.py +++ b/ory_client/models/relationship.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/relationship_namespaces.py b/ory_client/models/relationship_namespaces.py index 6c3398a7f..00b693e4f 100644 --- a/ory_client/models/relationship_namespaces.py +++ b/ory_client/models/relationship_namespaces.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/relationship_patch.py b/ory_client/models/relationship_patch.py index d230bdf41..663b3dafe 100644 --- a/ory_client/models/relationship_patch.py +++ b/ory_client/models/relationship_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/relationships.py b/ory_client/models/relationships.py index f1e684c0c..7b902d528 100644 --- a/ory_client/models/relationships.py +++ b/ory_client/models/relationships.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/rfc6749_error_json.py b/ory_client/models/rfc6749_error_json.py index 45a588b55..4c855de83 100644 --- a/ory_client/models/rfc6749_error_json.py +++ b/ory_client/models/rfc6749_error_json.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/schema_patch.py b/ory_client/models/schema_patch.py index 7e6e15ec9..e7bc09eef 100644 --- a/ory_client/models/schema_patch.py +++ b/ory_client/models/schema_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/self_service_flow_expired_error.py b/ory_client/models/self_service_flow_expired_error.py index 00f94dff2..40ed89a17 100644 --- a/ory_client/models/self_service_flow_expired_error.py +++ b/ory_client/models/self_service_flow_expired_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/session.py b/ory_client/models/session.py index fd7732577..52dcea051 100644 --- a/ory_client/models/session.py +++ b/ory_client/models/session.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/session_activity_datapoint.py b/ory_client/models/session_activity_datapoint.py index 3cc43ccb1..52e968452 100644 --- a/ory_client/models/session_activity_datapoint.py +++ b/ory_client/models/session_activity_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/session_authentication_method.py b/ory_client/models/session_authentication_method.py index 21de482d1..d4310aca3 100644 --- a/ory_client/models/session_authentication_method.py +++ b/ory_client/models/session_authentication_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/session_device.py b/ory_client/models/session_device.py index f9c2fba5a..9bbb7b1b9 100644 --- a/ory_client/models/session_device.py +++ b/ory_client/models/session_device.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/set_active_project_in_console_body.py b/ory_client/models/set_active_project_in_console_body.py index 7124b41c2..3699483cc 100644 --- a/ory_client/models/set_active_project_in_console_body.py +++ b/ory_client/models/set_active_project_in_console_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/set_custom_domain_body.py b/ory_client/models/set_custom_domain_body.py index 49f6df787..df818e81f 100644 --- a/ory_client/models/set_custom_domain_body.py +++ b/ory_client/models/set_custom_domain_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/set_event_stream_body.py b/ory_client/models/set_event_stream_body.py index c6132086f..7090a807f 100644 --- a/ory_client/models/set_event_stream_body.py +++ b/ory_client/models/set_event_stream_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/set_project.py b/ory_client/models/set_project.py index 488cb20c5..a39554a45 100644 --- a/ory_client/models/set_project.py +++ b/ory_client/models/set_project.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/set_project_branding_theme_body.py b/ory_client/models/set_project_branding_theme_body.py index f452e999c..381c94f70 100644 --- a/ory_client/models/set_project_branding_theme_body.py +++ b/ory_client/models/set_project_branding_theme_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/settings_flow.py b/ory_client/models/settings_flow.py index ea457f302..cced2ff81 100644 --- a/ory_client/models/settings_flow.py +++ b/ory_client/models/settings_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/settings_flow_state.py b/ory_client/models/settings_flow_state.py index a9b58a1af..0325b0c3a 100644 --- a/ory_client/models/settings_flow_state.py +++ b/ory_client/models/settings_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/source_position.py b/ory_client/models/source_position.py index 0632f3f74..8e843b680 100644 --- a/ory_client/models/source_position.py +++ b/ory_client/models/source_position.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/subject_set.py b/ory_client/models/subject_set.py index 0a20f81e8..ace64fa45 100644 --- a/ory_client/models/subject_set.py +++ b/ory_client/models/subject_set.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/subscription.py b/ory_client/models/subscription.py index 01bc598b2..9ff863c80 100644 --- a/ory_client/models/subscription.py +++ b/ory_client/models/subscription.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/successful_code_exchange_response.py b/ory_client/models/successful_code_exchange_response.py index 82e1c95ad..0ad1791a4 100644 --- a/ory_client/models/successful_code_exchange_response.py +++ b/ory_client/models/successful_code_exchange_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/successful_native_login.py b/ory_client/models/successful_native_login.py index 23955239b..40aacf38d 100644 --- a/ory_client/models/successful_native_login.py +++ b/ory_client/models/successful_native_login.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/successful_native_registration.py b/ory_client/models/successful_native_registration.py index 08b60854a..73f70b218 100644 --- a/ory_client/models/successful_native_registration.py +++ b/ory_client/models/successful_native_registration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/successful_project_update.py b/ory_client/models/successful_project_update.py index 3edd604e1..d4143e717 100644 --- a/ory_client/models/successful_project_update.py +++ b/ory_client/models/successful_project_update.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/tax_line_item.py b/ory_client/models/tax_line_item.py index 564eb4c21..39d293312 100644 --- a/ory_client/models/tax_line_item.py +++ b/ory_client/models/tax_line_item.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/time_interval.py b/ory_client/models/time_interval.py index 3e85aaf6c..4a21a2ca2 100644 --- a/ory_client/models/time_interval.py +++ b/ory_client/models/time_interval.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/token_pagination.py b/ory_client/models/token_pagination.py index eae561a3b..d25fe8b42 100644 --- a/ory_client/models/token_pagination.py +++ b/ory_client/models/token_pagination.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/token_pagination_headers.py b/ory_client/models/token_pagination_headers.py index 4359be03e..1e5741e5c 100644 --- a/ory_client/models/token_pagination_headers.py +++ b/ory_client/models/token_pagination_headers.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/token_pagination_request_parameters.py b/ory_client/models/token_pagination_request_parameters.py index 6e51c68dd..056968c36 100644 --- a/ory_client/models/token_pagination_request_parameters.py +++ b/ory_client/models/token_pagination_request_parameters.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/token_pagination_response_headers.py b/ory_client/models/token_pagination_response_headers.py index d4fced41c..d021eafd8 100644 --- a/ory_client/models/token_pagination_response_headers.py +++ b/ory_client/models/token_pagination_response_headers.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/trust_o_auth2_jwt_grant_issuer.py b/ory_client/models/trust_o_auth2_jwt_grant_issuer.py index 0b7a9a250..ba46edc5d 100644 --- a/ory_client/models/trust_o_auth2_jwt_grant_issuer.py +++ b/ory_client/models/trust_o_auth2_jwt_grant_issuer.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py b/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py index 930e3f747..c05167c85 100644 --- a/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py +++ b/ory_client/models/trusted_o_auth2_jwt_grant_issuer.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py b/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py index 06998134e..f579235b6 100644 --- a/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py +++ b/ory_client/models/trusted_o_auth2_jwt_grant_json_web_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_container.py b/ory_client/models/ui_container.py index 570496ccf..dd0986098 100644 --- a/ory_client/models/ui_container.py +++ b/ory_client/models/ui_container.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node.py b/ory_client/models/ui_node.py index 2ac0e497e..db34cc0d7 100644 --- a/ory_client/models/ui_node.py +++ b/ory_client/models/ui_node.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_anchor_attributes.py b/ory_client/models/ui_node_anchor_attributes.py index a423a08fd..9c5f088ec 100644 --- a/ory_client/models/ui_node_anchor_attributes.py +++ b/ory_client/models/ui_node_anchor_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_attributes.py b/ory_client/models/ui_node_attributes.py index 34b1efcd2..6b8eb04e2 100644 --- a/ory_client/models/ui_node_attributes.py +++ b/ory_client/models/ui_node_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_image_attributes.py b/ory_client/models/ui_node_image_attributes.py index f1ca0b3d7..bb08548c1 100644 --- a/ory_client/models/ui_node_image_attributes.py +++ b/ory_client/models/ui_node_image_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_input_attributes.py b/ory_client/models/ui_node_input_attributes.py index cf5e7b544..260666945 100644 --- a/ory_client/models/ui_node_input_attributes.py +++ b/ory_client/models/ui_node_input_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_meta.py b/ory_client/models/ui_node_meta.py index 81d65f337..09e2c5aa7 100644 --- a/ory_client/models/ui_node_meta.py +++ b/ory_client/models/ui_node_meta.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_script_attributes.py b/ory_client/models/ui_node_script_attributes.py index 1aa5f38bc..b68e70402 100644 --- a/ory_client/models/ui_node_script_attributes.py +++ b/ory_client/models/ui_node_script_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_node_text_attributes.py b/ory_client/models/ui_node_text_attributes.py index 23d9c0b36..9b84073cf 100644 --- a/ory_client/models/ui_node_text_attributes.py +++ b/ory_client/models/ui_node_text_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/ui_text.py b/ory_client/models/ui_text.py index 13a91de2b..5acb292ab 100644 --- a/ory_client/models/ui_text.py +++ b/ory_client/models/ui_text.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_identity_body.py b/ory_client/models/update_identity_body.py index cb98b70eb..e4255404e 100644 --- a/ory_client/models/update_identity_body.py +++ b/ory_client/models/update_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_body.py b/ory_client/models/update_login_flow_body.py index 42984db78..1f8914acf 100644 --- a/ory_client/models/update_login_flow_body.py +++ b/ory_client/models/update_login_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_code_method.py b/ory_client/models/update_login_flow_with_code_method.py index cb162cd23..206e87852 100644 --- a/ory_client/models/update_login_flow_with_code_method.py +++ b/ory_client/models/update_login_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -27,6 +27,7 @@ class UpdateLoginFlowWithCodeMethod(BaseModel): """ Update Login flow using the code method """ # noqa: E501 + address: Optional[StrictStr] = Field(default=None, description="Address is the address to send the code to, in case that there are multiple addresses. This field is only used in two-factor flows and is ineffective for passwordless flows.") code: Optional[StrictStr] = Field(default=None, description="Code is the 6 digits code sent to the user") csrf_token: StrictStr = Field(description="CSRFToken is the anti-CSRF token") identifier: Optional[StrictStr] = Field(default=None, description="Identifier is the code identifier The identifier requires that the user has already completed the registration or settings with code flow.") @@ -34,7 +35,7 @@ class UpdateLoginFlowWithCodeMethod(BaseModel): resend: Optional[StrictStr] = Field(default=None, description="Resend is set when the user wants to resend the code") transient_payload: Optional[Dict[str, Any]] = Field(default=None, description="Transient data to pass along to any webhooks") additional_properties: Dict[str, Any] = {} - __properties: ClassVar[List[str]] = ["code", "csrf_token", "identifier", "method", "resend", "transient_payload"] + __properties: ClassVar[List[str]] = ["address", "code", "csrf_token", "identifier", "method", "resend", "transient_payload"] model_config = ConfigDict( populate_by_name=True, @@ -94,6 +95,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "address": obj.get("address"), "code": obj.get("code"), "csrf_token": obj.get("csrf_token"), "identifier": obj.get("identifier"), diff --git a/ory_client/models/update_login_flow_with_identifier_first_method.py b/ory_client/models/update_login_flow_with_identifier_first_method.py index 90400293d..258cfee26 100644 --- a/ory_client/models/update_login_flow_with_identifier_first_method.py +++ b/ory_client/models/update_login_flow_with_identifier_first_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_lookup_secret_method.py b/ory_client/models/update_login_flow_with_lookup_secret_method.py index 413e4635a..1cde5d9ba 100644 --- a/ory_client/models/update_login_flow_with_lookup_secret_method.py +++ b/ory_client/models/update_login_flow_with_lookup_secret_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_oidc_method.py b/ory_client/models/update_login_flow_with_oidc_method.py index 5c661089e..d18e70c6f 100644 --- a/ory_client/models/update_login_flow_with_oidc_method.py +++ b/ory_client/models/update_login_flow_with_oidc_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_passkey_method.py b/ory_client/models/update_login_flow_with_passkey_method.py index 09e9cccf7..2189f2a64 100644 --- a/ory_client/models/update_login_flow_with_passkey_method.py +++ b/ory_client/models/update_login_flow_with_passkey_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_password_method.py b/ory_client/models/update_login_flow_with_password_method.py index dd5655256..5ae502a67 100644 --- a/ory_client/models/update_login_flow_with_password_method.py +++ b/ory_client/models/update_login_flow_with_password_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_totp_method.py b/ory_client/models/update_login_flow_with_totp_method.py index dcf645135..1474e7ea8 100644 --- a/ory_client/models/update_login_flow_with_totp_method.py +++ b/ory_client/models/update_login_flow_with_totp_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_login_flow_with_web_authn_method.py b/ory_client/models/update_login_flow_with_web_authn_method.py index 481538c4a..5f8fb204b 100644 --- a/ory_client/models/update_login_flow_with_web_authn_method.py +++ b/ory_client/models/update_login_flow_with_web_authn_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_recovery_flow_body.py b/ory_client/models/update_recovery_flow_body.py index 8c5b86618..4da24f4a9 100644 --- a/ory_client/models/update_recovery_flow_body.py +++ b/ory_client/models/update_recovery_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_recovery_flow_with_code_method.py b/ory_client/models/update_recovery_flow_with_code_method.py index f0993b52a..184f60d2b 100644 --- a/ory_client/models/update_recovery_flow_with_code_method.py +++ b/ory_client/models/update_recovery_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_recovery_flow_with_link_method.py b/ory_client/models/update_recovery_flow_with_link_method.py index 80f080c96..bdca1851d 100644 --- a/ory_client/models/update_recovery_flow_with_link_method.py +++ b/ory_client/models/update_recovery_flow_with_link_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_body.py b/ory_client/models/update_registration_flow_body.py index 696a1682f..698a78620 100644 --- a/ory_client/models/update_registration_flow_body.py +++ b/ory_client/models/update_registration_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_with_code_method.py b/ory_client/models/update_registration_flow_with_code_method.py index f9453e5d2..7146666b2 100644 --- a/ory_client/models/update_registration_flow_with_code_method.py +++ b/ory_client/models/update_registration_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_with_oidc_method.py b/ory_client/models/update_registration_flow_with_oidc_method.py index 7d8a0838c..772f2df17 100644 --- a/ory_client/models/update_registration_flow_with_oidc_method.py +++ b/ory_client/models/update_registration_flow_with_oidc_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_with_passkey_method.py b/ory_client/models/update_registration_flow_with_passkey_method.py index 56c9eaefb..e8479ea2c 100644 --- a/ory_client/models/update_registration_flow_with_passkey_method.py +++ b/ory_client/models/update_registration_flow_with_passkey_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_with_password_method.py b/ory_client/models/update_registration_flow_with_password_method.py index 17747c18a..435403fa8 100644 --- a/ory_client/models/update_registration_flow_with_password_method.py +++ b/ory_client/models/update_registration_flow_with_password_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_with_profile_method.py b/ory_client/models/update_registration_flow_with_profile_method.py index 4b00f5f46..45718aa02 100644 --- a/ory_client/models/update_registration_flow_with_profile_method.py +++ b/ory_client/models/update_registration_flow_with_profile_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_registration_flow_with_web_authn_method.py b/ory_client/models/update_registration_flow_with_web_authn_method.py index b2a0dc3bd..2e04e175e 100644 --- a/ory_client/models/update_registration_flow_with_web_authn_method.py +++ b/ory_client/models/update_registration_flow_with_web_authn_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_body.py b/ory_client/models/update_settings_flow_body.py index 6693124f3..71101360a 100644 --- a/ory_client/models/update_settings_flow_body.py +++ b/ory_client/models/update_settings_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_lookup_method.py b/ory_client/models/update_settings_flow_with_lookup_method.py index eaa69711b..c474a555a 100644 --- a/ory_client/models/update_settings_flow_with_lookup_method.py +++ b/ory_client/models/update_settings_flow_with_lookup_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_oidc_method.py b/ory_client/models/update_settings_flow_with_oidc_method.py index 81084dcdd..15246b877 100644 --- a/ory_client/models/update_settings_flow_with_oidc_method.py +++ b/ory_client/models/update_settings_flow_with_oidc_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_passkey_method.py b/ory_client/models/update_settings_flow_with_passkey_method.py index 13878c85e..20e2e2e34 100644 --- a/ory_client/models/update_settings_flow_with_passkey_method.py +++ b/ory_client/models/update_settings_flow_with_passkey_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_password_method.py b/ory_client/models/update_settings_flow_with_password_method.py index 2801b47b5..b2c61f713 100644 --- a/ory_client/models/update_settings_flow_with_password_method.py +++ b/ory_client/models/update_settings_flow_with_password_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_profile_method.py b/ory_client/models/update_settings_flow_with_profile_method.py index 3d443c7dd..1a9edc224 100644 --- a/ory_client/models/update_settings_flow_with_profile_method.py +++ b/ory_client/models/update_settings_flow_with_profile_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_totp_method.py b/ory_client/models/update_settings_flow_with_totp_method.py index 989f0634a..5ba3136e6 100644 --- a/ory_client/models/update_settings_flow_with_totp_method.py +++ b/ory_client/models/update_settings_flow_with_totp_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_settings_flow_with_web_authn_method.py b/ory_client/models/update_settings_flow_with_web_authn_method.py index 3762c14fc..46974567b 100644 --- a/ory_client/models/update_settings_flow_with_web_authn_method.py +++ b/ory_client/models/update_settings_flow_with_web_authn_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_subscription_body.py b/ory_client/models/update_subscription_body.py index 5bdf45d73..6e56faa43 100644 --- a/ory_client/models/update_subscription_body.py +++ b/ory_client/models/update_subscription_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_verification_flow_body.py b/ory_client/models/update_verification_flow_body.py index 2361e7f35..75753f48a 100644 --- a/ory_client/models/update_verification_flow_body.py +++ b/ory_client/models/update_verification_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_verification_flow_with_code_method.py b/ory_client/models/update_verification_flow_with_code_method.py index 7d2071f49..fcdd61b3d 100644 --- a/ory_client/models/update_verification_flow_with_code_method.py +++ b/ory_client/models/update_verification_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_verification_flow_with_link_method.py b/ory_client/models/update_verification_flow_with_link_method.py index 9a4a4d6f7..b37983254 100644 --- a/ory_client/models/update_verification_flow_with_link_method.py +++ b/ory_client/models/update_verification_flow_with_link_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/update_workspace_body.py b/ory_client/models/update_workspace_body.py index e9386b3ee..3f3e1f08c 100644 --- a/ory_client/models/update_workspace_body.py +++ b/ory_client/models/update_workspace_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/usage.py b/ory_client/models/usage.py index 963300e04..3063fe8fa 100644 --- a/ory_client/models/usage.py +++ b/ory_client/models/usage.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/verifiable_credential_priming_response.py b/ory_client/models/verifiable_credential_priming_response.py index ec95c1977..20ddba7d4 100644 --- a/ory_client/models/verifiable_credential_priming_response.py +++ b/ory_client/models/verifiable_credential_priming_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/verifiable_credential_proof.py b/ory_client/models/verifiable_credential_proof.py index f1aba9699..27aed1ef9 100644 --- a/ory_client/models/verifiable_credential_proof.py +++ b/ory_client/models/verifiable_credential_proof.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/verifiable_credential_response.py b/ory_client/models/verifiable_credential_response.py index 3995af670..bec9970a3 100644 --- a/ory_client/models/verifiable_credential_response.py +++ b/ory_client/models/verifiable_credential_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/verifiable_identity_address.py b/ory_client/models/verifiable_identity_address.py index 9fd8f5351..0c9b5bec5 100644 --- a/ory_client/models/verifiable_identity_address.py +++ b/ory_client/models/verifiable_identity_address.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/verification_flow.py b/ory_client/models/verification_flow.py index b1da366b3..5911e20cd 100644 --- a/ory_client/models/verification_flow.py +++ b/ory_client/models/verification_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/verification_flow_state.py b/ory_client/models/verification_flow_state.py index cab09c195..9f602efa9 100644 --- a/ory_client/models/verification_flow_state.py +++ b/ory_client/models/verification_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/version.py b/ory_client/models/version.py index 2cc2e630a..afc1397c2 100644 --- a/ory_client/models/version.py +++ b/ory_client/models/version.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/warning.py b/ory_client/models/warning.py index 592692d19..eb903d6a4 100644 --- a/ory_client/models/warning.py +++ b/ory_client/models/warning.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/workspace.py b/ory_client/models/workspace.py index 576313763..c00ebc405 100644 --- a/ory_client/models/workspace.py +++ b/ory_client/models/workspace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/models/workspace_api_key.py b/ory_client/models/workspace_api_key.py index e3be36bee..8ec781b7b 100644 --- a/ory_client/models/workspace_api_key.py +++ b/ory_client/models/workspace_api_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/ory_client/rest.py b/ory_client/rest.py index ddc571538..8dfb1ee4d 100644 --- a/ory_client/rest.py +++ b/ory_client/rest.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/pyproject.toml b/pyproject.toml index 1393578f8..6efa0f9da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ory_client" -version = "v1.15.0" +version = "v1.15.3" description = "Ory APIs" authors = ["API Support "] license = "Apache 2.0" diff --git a/setup.py b/setup.py index 239a4a73a..fd063ec0f 100644 --- a/setup.py +++ b/setup.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -22,7 +22,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "ory-client" -VERSION = "v1.15.0" +VERSION = "v1.15.3" PYTHON_REQUIRES = ">=3.7" REQUIRES = [ "urllib3 >= 1.25.3, < 2.1.0", diff --git a/test/test_accept_o_auth2_consent_request.py b/test/test_accept_o_auth2_consent_request.py index f6566dc3e..e77b3afd3 100644 --- a/test/test_accept_o_auth2_consent_request.py +++ b/test/test_accept_o_auth2_consent_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_accept_o_auth2_consent_request_session.py b/test/test_accept_o_auth2_consent_request_session.py index cbbe357ff..070f8a070 100644 --- a/test/test_accept_o_auth2_consent_request_session.py +++ b/test/test_accept_o_auth2_consent_request_session.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_accept_o_auth2_login_request.py b/test/test_accept_o_auth2_login_request.py index c15e29469..879b0182a 100644 --- a/test/test_accept_o_auth2_login_request.py +++ b/test/test_accept_o_auth2_login_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_account_experience_configuration.py b/test/test_account_experience_configuration.py index 57ca4a353..1c11aba0c 100644 --- a/test/test_account_experience_configuration.py +++ b/test/test_account_experience_configuration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_account_experience_theme_variables.py b/test/test_account_experience_theme_variables.py index b691383b2..0881d0e57 100644 --- a/test/test_account_experience_theme_variables.py +++ b/test/test_account_experience_theme_variables.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_active_project_in_console.py b/test/test_active_project_in_console.py index 6d2376327..087ee81cf 100644 --- a/test/test_active_project_in_console.py +++ b/test/test_active_project_in_console.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_add_project_to_workspace_body.py b/test/test_add_project_to_workspace_body.py index 564c4b477..af56eb9fa 100644 --- a/test/test_add_project_to_workspace_body.py +++ b/test/test_add_project_to_workspace_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute.py b/test/test_attribute.py index 150eff5e3..15aa61129 100644 --- a/test/test_attribute.py +++ b/test/test_attribute.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute_filter.py b/test/test_attribute_filter.py index 7cfcf1e2f..633c15057 100644 --- a/test/test_attribute_filter.py +++ b/test/test_attribute_filter.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attributes_count_datapoint.py b/test/test_attributes_count_datapoint.py index a168b408f..112c6fea8 100644 --- a/test/test_attributes_count_datapoint.py +++ b/test/test_attributes_count_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_authenticator_assurance_level.py b/test/test_authenticator_assurance_level.py index 09f58ee30..4dd1072cd 100644 --- a/test/test_authenticator_assurance_level.py +++ b/test/test_authenticator_assurance_level.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_batch_check_permission_body.py b/test/test_batch_check_permission_body.py index 36be965cb..abd1aaa72 100644 --- a/test/test_batch_check_permission_body.py +++ b/test/test_batch_check_permission_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_batch_check_permission_result.py b/test/test_batch_check_permission_result.py index a4fc13101..c6c1441c1 100644 --- a/test/test_batch_check_permission_result.py +++ b/test/test_batch_check_permission_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_batch_patch_identities_response.py b/test/test_batch_patch_identities_response.py index 2024ddde2..43bdd0b29 100644 --- a/test/test_batch_patch_identities_response.py +++ b/test/test_batch_patch_identities_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_billing_period_bucket.py b/test/test_billing_period_bucket.py index 952721ae7..8fcac6635 100644 --- a/test/test_billing_period_bucket.py +++ b/test/test_billing_period_bucket.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_check_opl_syntax_result.py b/test/test_check_opl_syntax_result.py index 64f6b80bd..41204196a 100644 --- a/test/test_check_opl_syntax_result.py +++ b/test/test_check_opl_syntax_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_check_permission_result.py b/test/test_check_permission_result.py index e601fcfe6..63df80436 100644 --- a/test/test_check_permission_result.py +++ b/test/test_check_permission_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_check_permission_result_with_error.py b/test/test_check_permission_result_with_error.py index c1812f005..f30b01191 100644 --- a/test/test_check_permission_result_with_error.py +++ b/test/test_check_permission_result_with_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_cloud_account.py b/test/test_cloud_account.py index 0ec4c2dee..47ef6ba75 100644 --- a/test/test_cloud_account.py +++ b/test/test_cloud_account.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_consistency_request_parameters.py b/test/test_consistency_request_parameters.py index b6844ab3f..a797833df 100644 --- a/test/test_consistency_request_parameters.py +++ b/test/test_consistency_request_parameters.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with.py b/test/test_continue_with.py index 58f7daae0..27c4c4296 100644 --- a/test/test_continue_with.py +++ b/test/test_continue_with.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_recovery_ui.py b/test/test_continue_with_recovery_ui.py index 057a0e0f1..6deaa7d58 100644 --- a/test/test_continue_with_recovery_ui.py +++ b/test/test_continue_with_recovery_ui.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_recovery_ui_flow.py b/test/test_continue_with_recovery_ui_flow.py index a1bdc4abf..50141a588 100644 --- a/test/test_continue_with_recovery_ui_flow.py +++ b/test/test_continue_with_recovery_ui_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_redirect_browser_to.py b/test/test_continue_with_redirect_browser_to.py index 0fcd6f1ba..564458e0d 100644 --- a/test/test_continue_with_redirect_browser_to.py +++ b/test/test_continue_with_redirect_browser_to.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_set_ory_session_token.py b/test/test_continue_with_set_ory_session_token.py index 06c8d78aa..c7800838c 100644 --- a/test/test_continue_with_set_ory_session_token.py +++ b/test/test_continue_with_set_ory_session_token.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_settings_ui.py b/test/test_continue_with_settings_ui.py index f85cd87a3..824e8be06 100644 --- a/test/test_continue_with_settings_ui.py +++ b/test/test_continue_with_settings_ui.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_settings_ui_flow.py b/test/test_continue_with_settings_ui_flow.py index 55f7b7ee8..c67ba1e8d 100644 --- a/test/test_continue_with_settings_ui_flow.py +++ b/test/test_continue_with_settings_ui_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_verification_ui.py b/test/test_continue_with_verification_ui.py index 5dd1afb33..bed4282bb 100644 --- a/test/test_continue_with_verification_ui.py +++ b/test/test_continue_with_verification_ui.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_continue_with_verification_ui_flow.py b/test/test_continue_with_verification_ui_flow.py index f03403c74..bd28ea6df 100644 --- a/test/test_continue_with_verification_ui_flow.py +++ b/test/test_continue_with_verification_ui_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_courier_api.py b/test/test_courier_api.py index 96818ab4a..f7003a6d3 100644 --- a/test/test_courier_api.py +++ b/test/test_courier_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_courier_message_status.py b/test/test_courier_message_status.py index d3947992c..155846c5c 100644 --- a/test/test_courier_message_status.py +++ b/test/test_courier_message_status.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_courier_message_type.py b/test/test_courier_message_type.py index 6824e5066..45faa7503 100644 --- a/test/test_courier_message_type.py +++ b/test/test_courier_message_type.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_custom_domain_body.py b/test/test_create_custom_domain_body.py index b01430ce1..973648498 100644 --- a/test/test_create_custom_domain_body.py +++ b/test/test_create_custom_domain_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_event_stream_body.py b/test/test_create_event_stream_body.py index d4a2c6954..83237d6b4 100644 --- a/test/test_create_event_stream_body.py +++ b/test/test_create_event_stream_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_identity_body.py b/test/test_create_identity_body.py index 29b875465..760c462b5 100644 --- a/test/test_create_identity_body.py +++ b/test/test_create_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_invite_response.py b/test/test_create_invite_response.py index a633f4058..0c1faeb4d 100644 --- a/test/test_create_invite_response.py +++ b/test/test_create_invite_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_json_web_key_set.py b/test/test_create_json_web_key_set.py index 51f870133..d87b7a14a 100644 --- a/test/test_create_json_web_key_set.py +++ b/test/test_create_json_web_key_set.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_project_api_key_request.py b/test/test_create_project_api_key_request.py index 152f32a46..a60bde1a3 100644 --- a/test/test_create_project_api_key_request.py +++ b/test/test_create_project_api_key_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_project_body.py b/test/test_create_project_body.py index 85b6d70e5..bd3d13ff4 100644 --- a/test/test_create_project_body.py +++ b/test/test_create_project_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_project_branding.py b/test/test_create_project_branding.py index 5cee3dcb8..e39a5f1d7 100644 --- a/test/test_create_project_branding.py +++ b/test/test_create_project_branding.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_project_member_invite_body.py b/test/test_create_project_member_invite_body.py index 38c22d654..1ba983d2a 100644 --- a/test/test_create_project_member_invite_body.py +++ b/test/test_create_project_member_invite_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_project_normalized_payload.py b/test/test_create_project_normalized_payload.py index 9f8d59e4c..a49a3f5ec 100644 --- a/test/test_create_project_normalized_payload.py +++ b/test/test_create_project_normalized_payload.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_recovery_code_for_identity_body.py b/test/test_create_recovery_code_for_identity_body.py index afe033708..88653695c 100644 --- a/test/test_create_recovery_code_for_identity_body.py +++ b/test/test_create_recovery_code_for_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_recovery_link_for_identity_body.py b/test/test_create_recovery_link_for_identity_body.py index 1184f47e2..ef953eb23 100644 --- a/test/test_create_recovery_link_for_identity_body.py +++ b/test/test_create_recovery_link_for_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_relationship_body.py b/test/test_create_relationship_body.py index f172376c0..80c87e25b 100644 --- a/test/test_create_relationship_body.py +++ b/test/test_create_relationship_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_subscription_body.py b/test/test_create_subscription_body.py index 19e25899c..467833991 100644 --- a/test/test_create_subscription_body.py +++ b/test/test_create_subscription_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_subscription_common.py b/test/test_create_subscription_common.py index 9d345ffd9..cc41cf098 100644 --- a/test/test_create_subscription_common.py +++ b/test/test_create_subscription_common.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_verifiable_credential_request_body.py b/test/test_create_verifiable_credential_request_body.py index ae6ee4614..724e46e02 100644 --- a/test/test_create_verifiable_credential_request_body.py +++ b/test/test_create_verifiable_credential_request_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_workspace_api_key_body.py b/test/test_create_workspace_api_key_body.py index 75fece2b0..0f0c94267 100644 --- a/test/test_create_workspace_api_key_body.py +++ b/test/test_create_workspace_api_key_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_workspace_body.py b/test/test_create_workspace_body.py index 0a9eb19cc..35c50c2bf 100644 --- a/test/test_create_workspace_body.py +++ b/test/test_create_workspace_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_workspace_member_invite_body.py b/test/test_create_workspace_member_invite_body.py index 9f256546a..9738baea6 100644 --- a/test/test_create_workspace_member_invite_body.py +++ b/test/test_create_workspace_member_invite_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_workspace_subscription_body.py b/test/test_create_workspace_subscription_body.py index 2f989cd1e..58c78dbca 100644 --- a/test/test_create_workspace_subscription_body.py +++ b/test/test_create_workspace_subscription_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_credential_supported_draft00.py b/test/test_credential_supported_draft00.py index af839bbed..7497d4349 100644 --- a/test/test_credential_supported_draft00.py +++ b/test/test_credential_supported_draft00.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_custom_domain.py b/test/test_custom_domain.py index aa2a8e8ff..ebe3e3853 100644 --- a/test/test_custom_domain.py +++ b/test/test_custom_domain.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_delete_my_sessions_count.py b/test/test_delete_my_sessions_count.py index dc68bee2b..fc2e4d8f6 100644 --- a/test/test_delete_my_sessions_count.py +++ b/test/test_delete_my_sessions_count.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_email_template_data.py b/test/test_email_template_data.py index bd60e09c2..508239539 100644 --- a/test/test_email_template_data.py +++ b/test/test_email_template_data.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_email_template_data_body.py b/test/test_email_template_data_body.py index 3ab9e8142..2f5af66f4 100644 --- a/test/test_email_template_data_body.py +++ b/test/test_email_template_data_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_error_authenticator_assurance_level_not_satisfied.py b/test/test_error_authenticator_assurance_level_not_satisfied.py index 6cf96e66d..e9f101668 100644 --- a/test/test_error_authenticator_assurance_level_not_satisfied.py +++ b/test/test_error_authenticator_assurance_level_not_satisfied.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_error_browser_location_change_required.py b/test/test_error_browser_location_change_required.py index 28e5154d7..16912fcd0 100644 --- a/test/test_error_browser_location_change_required.py +++ b/test/test_error_browser_location_change_required.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_error_flow_replaced.py b/test/test_error_flow_replaced.py index 5a1041aaf..03288dc50 100644 --- a/test/test_error_flow_replaced.py +++ b/test/test_error_flow_replaced.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_error_generic.py b/test/test_error_generic.py index 392de3093..0806f2abc 100644 --- a/test/test_error_generic.py +++ b/test/test_error_generic.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_error_o_auth2.py b/test/test_error_o_auth2.py index 45b0b9718..ddd15f219 100644 --- a/test/test_error_o_auth2.py +++ b/test/test_error_o_auth2.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_event_stream.py b/test/test_event_stream.py index 043ef741a..35eac5169 100644 --- a/test/test_event_stream.py +++ b/test/test_event_stream.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_events_api.py b/test/test_events_api.py index fb3b6cff1..2eb3b0411 100644 --- a/test/test_events_api.py +++ b/test/test_events_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_expanded_permission_tree.py b/test/test_expanded_permission_tree.py index a0a8ef073..487c74b10 100644 --- a/test/test_expanded_permission_tree.py +++ b/test/test_expanded_permission_tree.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_flow_error.py b/test/test_flow_error.py index e1969dfbe..87301c6cc 100644 --- a/test/test_flow_error.py +++ b/test/test_flow_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_frontend_api.py b/test/test_frontend_api.py index 0ab3e568f..2d7a2e41f 100644 --- a/test/test_frontend_api.py +++ b/test/test_frontend_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_generic_error.py b/test/test_generic_error.py index 7a01fd13a..daef75207 100644 --- a/test/test_generic_error.py +++ b/test/test_generic_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_generic_error_content.py b/test/test_generic_error_content.py index 26224c03d..6bb51a0b2 100644 --- a/test/test_generic_error_content.py +++ b/test/test_generic_error_content.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_generic_usage.py b/test/test_generic_usage.py index 93293e0eb..a52e45ed9 100644 --- a/test/test_generic_usage.py +++ b/test/test_generic_usage.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_attributes_count_response.py b/test/test_get_attributes_count_response.py index db6f735a8..5c98a15ac 100644 --- a/test/test_get_attributes_count_response.py +++ b/test/test_get_attributes_count_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_managed_identity_schema_location.py b/test/test_get_managed_identity_schema_location.py index ad6cf47c8..c39f0f94a 100644 --- a/test/test_get_managed_identity_schema_location.py +++ b/test/test_get_managed_identity_schema_location.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_metrics_event_attributes_response.py b/test/test_get_metrics_event_attributes_response.py index e72587917..a3968493d 100644 --- a/test/test_get_metrics_event_attributes_response.py +++ b/test/test_get_metrics_event_attributes_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_metrics_event_types_response.py b/test/test_get_metrics_event_types_response.py index d8c5b1cda..8ef39f033 100644 --- a/test/test_get_metrics_event_types_response.py +++ b/test/test_get_metrics_event_types_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_organization_response.py b/test/test_get_organization_response.py index 3a27ea43b..2fe9c234e 100644 --- a/test/test_get_organization_response.py +++ b/test/test_get_organization_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_project_events_body.py b/test/test_get_project_events_body.py index b3f71bddf..2bb06598c 100644 --- a/test/test_get_project_events_body.py +++ b/test/test_get_project_events_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_project_events_response.py b/test/test_get_project_events_response.py index bc15f05f6..f65439f16 100644 --- a/test/test_get_project_events_response.py +++ b/test/test_get_project_events_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_project_metrics_response.py b/test/test_get_project_metrics_response.py index 7d108eb7c..32ff51a43 100644 --- a/test/test_get_project_metrics_response.py +++ b/test/test_get_project_metrics_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_session_activity_response.py b/test/test_get_session_activity_response.py index b7ab39c52..2be41b67b 100644 --- a/test/test_get_session_activity_response.py +++ b/test/test_get_session_activity_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_get_version200_response.py b/test/test_get_version200_response.py index a34a9ee08..ce1c8a948 100644 --- a/test/test_get_version200_response.py +++ b/test/test_get_version200_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_health_not_ready_status.py b/test/test_health_not_ready_status.py index 77e7abaf2..5a1375a2a 100644 --- a/test/test_health_not_ready_status.py +++ b/test/test_health_not_ready_status.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_health_status.py b/test/test_health_status.py index d5d5c1f2a..4a18fb5d2 100644 --- a/test/test_health_status.py +++ b/test/test_health_status.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity.py b/test/test_identity.py index 531613c2c..916e565f6 100644 --- a/test/test_identity.py +++ b/test/test_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_api.py b/test/test_identity_api.py index 801d1023f..04ebc0497 100644 --- a/test/test_identity_api.py +++ b/test/test_identity_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_credentials.py b/test/test_identity_credentials.py index 287a36c5e..009ce17a1 100644 --- a/test/test_identity_credentials.py +++ b/test/test_identity_credentials.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_credentials_code.py b/test/test_identity_credentials_code.py index 996b2dcf3..045fc76f4 100644 --- a/test/test_identity_credentials_code.py +++ b/test/test_identity_credentials_code.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -36,8 +36,11 @@ def make_instance(self, include_optional) -> IdentityCredentialsCode: model = IdentityCredentialsCode() if include_optional: return IdentityCredentialsCode( - address_type = '', - used_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f') + addresses = [ + ory_client.models.identity_credentials_code_address.identityCredentialsCodeAddress( + address = '', + channel = '', ) + ] ) else: return IdentityCredentialsCode( diff --git a/test/test_identity_credentials_code_address.py b/test/test_identity_credentials_code_address.py new file mode 100644 index 000000000..c4bd293c9 --- /dev/null +++ b/test/test_identity_credentials_code_address.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +""" + Ory APIs + + Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. + + The version of the OpenAPI document: v1.15.3 + Contact: support@ory.sh + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from ory_client.models.identity_credentials_code_address import IdentityCredentialsCodeAddress + +class TestIdentityCredentialsCodeAddress(unittest.TestCase): + """IdentityCredentialsCodeAddress unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> IdentityCredentialsCodeAddress: + """Test IdentityCredentialsCodeAddress + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `IdentityCredentialsCodeAddress` + """ + model = IdentityCredentialsCodeAddress() + if include_optional: + return IdentityCredentialsCodeAddress( + address = '', + channel = '' + ) + else: + return IdentityCredentialsCodeAddress( + ) + """ + + def testIdentityCredentialsCodeAddress(self): + """Test IdentityCredentialsCodeAddress""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/test_identity_credentials_oidc.py b/test/test_identity_credentials_oidc.py index 73e768048..264f7fb6c 100644 --- a/test/test_identity_credentials_oidc.py +++ b/test/test_identity_credentials_oidc.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_credentials_oidc_provider.py b/test/test_identity_credentials_oidc_provider.py index 2e4aec975..a9141df59 100644 --- a/test/test_identity_credentials_oidc_provider.py +++ b/test/test_identity_credentials_oidc_provider.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_credentials_password.py b/test/test_identity_credentials_password.py index 0b571a8f6..2fbc4fb35 100644 --- a/test/test_identity_credentials_password.py +++ b/test/test_identity_credentials_password.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_patch.py b/test/test_identity_patch.py index af1dac631..3d4c329f2 100644 --- a/test/test_identity_patch.py +++ b/test/test_identity_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_patch_response.py b/test/test_identity_patch_response.py index b434586e9..ec230abbd 100644 --- a/test/test_identity_patch_response.py +++ b/test/test_identity_patch_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_schema_container.py b/test/test_identity_schema_container.py index f2cec7319..74a18ad72 100644 --- a/test/test_identity_schema_container.py +++ b/test/test_identity_schema_container.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_schema_preset.py b/test/test_identity_schema_preset.py index c208b60db..9703b5859 100644 --- a/test/test_identity_schema_preset.py +++ b/test/test_identity_schema_preset.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_with_credentials.py b/test/test_identity_with_credentials.py index 39c956d82..b3034d661 100644 --- a/test/test_identity_with_credentials.py +++ b/test/test_identity_with_credentials.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_with_credentials_oidc.py b/test/test_identity_with_credentials_oidc.py index aa4cf3136..314ce25bf 100644 --- a/test/test_identity_with_credentials_oidc.py +++ b/test/test_identity_with_credentials_oidc.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_with_credentials_oidc_config.py b/test/test_identity_with_credentials_oidc_config.py index 73adb3a19..74433a925 100644 --- a/test/test_identity_with_credentials_oidc_config.py +++ b/test/test_identity_with_credentials_oidc_config.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_with_credentials_oidc_config_provider.py b/test/test_identity_with_credentials_oidc_config_provider.py index 89390b666..d6317c211 100644 --- a/test/test_identity_with_credentials_oidc_config_provider.py +++ b/test/test_identity_with_credentials_oidc_config_provider.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_with_credentials_password.py b/test/test_identity_with_credentials_password.py index c705da84b..8f0745a72 100644 --- a/test/test_identity_with_credentials_password.py +++ b/test/test_identity_with_credentials_password.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_identity_with_credentials_password_config.py b/test/test_identity_with_credentials_password_config.py index 7a7d0d403..c4755372d 100644 --- a/test/test_identity_with_credentials_password_config.py +++ b/test/test_identity_with_credentials_password_config.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_internal_get_project_branding_body.py b/test/test_internal_get_project_branding_body.py index f3511f7e7..05c5de191 100644 --- a/test/test_internal_get_project_branding_body.py +++ b/test/test_internal_get_project_branding_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py b/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py index eeda917a2..ac0782cd9 100644 --- a/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py +++ b/test/test_internal_is_ax_welcome_screen_enabled_for_project_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_internal_is_owner_for_project_by_slug_body.py b/test/test_internal_is_owner_for_project_by_slug_body.py index 9dcba180e..333230fe1 100644 --- a/test/test_internal_is_owner_for_project_by_slug_body.py +++ b/test/test_internal_is_owner_for_project_by_slug_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_internal_is_owner_for_project_by_slug_response.py b/test/test_internal_is_owner_for_project_by_slug_response.py index 33d38c026..09e8cee67 100644 --- a/test/test_internal_is_owner_for_project_by_slug_response.py +++ b/test/test_internal_is_owner_for_project_by_slug_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_introspected_o_auth2_token.py b/test/test_introspected_o_auth2_token.py index d6e0d8893..210bc4b25 100644 --- a/test/test_introspected_o_auth2_token.py +++ b/test/test_introspected_o_auth2_token.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_invoice.py b/test/test_invoice.py index 1dd1fd5e9..a2cf7f7be 100644 --- a/test/test_invoice.py +++ b/test/test_invoice.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_invoice_data_v1.py b/test/test_invoice_data_v1.py index 4ba099613..d4c715bcf 100644 --- a/test/test_invoice_data_v1.py +++ b/test/test_invoice_data_v1.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_is_owner_for_project_by_slug.py b/test/test_is_owner_for_project_by_slug.py index 260b5a21b..488706420 100644 --- a/test/test_is_owner_for_project_by_slug.py +++ b/test/test_is_owner_for_project_by_slug.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_json_patch.py b/test/test_json_patch.py index 1ca184cfd..f453473ca 100644 --- a/test/test_json_patch.py +++ b/test/test_json_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_json_web_key.py b/test/test_json_web_key.py index e19a748de..e4b14ccbb 100644 --- a/test/test_json_web_key.py +++ b/test/test_json_web_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_json_web_key_set.py b/test/test_json_web_key_set.py index d99c4317e..e93811a51 100644 --- a/test/test_json_web_key_set.py +++ b/test/test_json_web_key_set.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_jwk_api.py b/test/test_jwk_api.py index 798792cf5..de40dc91b 100644 --- a/test/test_jwk_api.py +++ b/test/test_jwk_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_keto_namespace.py b/test/test_keto_namespace.py index d92a6fdb2..ae8ee5269 100644 --- a/test/test_keto_namespace.py +++ b/test/test_keto_namespace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_line_item_v1.py b/test/test_line_item_v1.py index c77e10845..b650fe522 100644 --- a/test/test_line_item_v1.py +++ b/test/test_line_item_v1.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_list_event_streams.py b/test/test_list_event_streams.py index 3717e4afa..b85df6a87 100644 --- a/test/test_list_event_streams.py +++ b/test/test_list_event_streams.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_list_invoices_response.py b/test/test_list_invoices_response.py index 84ac2168a..33c57bfa3 100644 --- a/test/test_list_invoices_response.py +++ b/test/test_list_invoices_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_list_organizations_response.py b/test/test_list_organizations_response.py index 3cd1685bd..eab0c226e 100644 --- a/test/test_list_organizations_response.py +++ b/test/test_list_organizations_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_list_workspace_projects.py b/test/test_list_workspace_projects.py index 62c892d77..8568dd7e6 100644 --- a/test/test_list_workspace_projects.py +++ b/test/test_list_workspace_projects.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_list_workspaces.py b/test/test_list_workspaces.py index 11e0c1ed3..c410c82a9 100644 --- a/test/test_list_workspaces.py +++ b/test/test_list_workspaces.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_login_flow.py b/test/test_login_flow.py index 867ce18f4..c7185986d 100644 --- a/test/test_login_flow.py +++ b/test/test_login_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_login_flow_state.py b/test/test_login_flow_state.py index b4cc9f5fb..9dd5a844b 100644 --- a/test/test_login_flow_state.py +++ b/test/test_login_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_logout_flow.py b/test/test_logout_flow.py index 00fd6b10e..49d982ada 100644 --- a/test/test_logout_flow.py +++ b/test/test_logout_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_managed_identity_schema.py b/test/test_managed_identity_schema.py index a4dec6449..f80024ced 100644 --- a/test/test_managed_identity_schema.py +++ b/test/test_managed_identity_schema.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_managed_identity_schema_validation_result.py b/test/test_managed_identity_schema_validation_result.py index 33af5cc80..5011e65cc 100644 --- a/test/test_managed_identity_schema_validation_result.py +++ b/test/test_managed_identity_schema_validation_result.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_member_invite.py b/test/test_member_invite.py index 39d58e45a..81d9eb974 100644 --- a/test/test_member_invite.py +++ b/test/test_member_invite.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_message.py b/test/test_message.py index 090233a0c..59f643797 100644 --- a/test/test_message.py +++ b/test/test_message.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_message_dispatch.py b/test/test_message_dispatch.py index 827ae0271..1923e92dd 100644 --- a/test/test_message_dispatch.py +++ b/test/test_message_dispatch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_metadata_api.py b/test/test_metadata_api.py index 668062a2a..0dc4d4c96 100644 --- a/test/test_metadata_api.py +++ b/test/test_metadata_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_metrics_datapoint.py b/test/test_metrics_datapoint.py index ce757cb8f..c37a77fcb 100644 --- a/test/test_metrics_datapoint.py +++ b/test/test_metrics_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_money.py b/test/test_money.py index 16e30be54..5e995259a 100644 --- a/test/test_money.py +++ b/test/test_money.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_namespace.py b/test/test_namespace.py index d95f256c9..cd95b1667 100644 --- a/test/test_namespace.py +++ b/test/test_namespace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_needs_privileged_session_error.py b/test/test_needs_privileged_session_error.py index 6990806a4..9e617434f 100644 --- a/test/test_needs_privileged_session_error.py +++ b/test/test_needs_privileged_session_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project.py b/test/test_normalized_project.py index 7151ad329..e98955c74 100644 --- a/test/test_normalized_project.py +++ b/test/test_normalized_project.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project_revision.py b/test/test_normalized_project_revision.py index 351b47a1d..2fc6b2027 100644 --- a/test/test_normalized_project_revision.py +++ b/test/test_normalized_project_revision.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project_revision_courier_channel.py b/test/test_normalized_project_revision_courier_channel.py index ace1a0e47..7736bbb6f 100644 --- a/test/test_normalized_project_revision_courier_channel.py +++ b/test/test_normalized_project_revision_courier_channel.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project_revision_hook.py b/test/test_normalized_project_revision_hook.py index a659c71d3..1135a63c8 100644 --- a/test/test_normalized_project_revision_hook.py +++ b/test/test_normalized_project_revision_hook.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project_revision_identity_schema.py b/test/test_normalized_project_revision_identity_schema.py index c5e4e6625..dfcfa842a 100644 --- a/test/test_normalized_project_revision_identity_schema.py +++ b/test/test_normalized_project_revision_identity_schema.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project_revision_third_party_provider.py b/test/test_normalized_project_revision_third_party_provider.py index d0e988088..d7c887f11 100644 --- a/test/test_normalized_project_revision_third_party_provider.py +++ b/test/test_normalized_project_revision_third_party_provider.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_normalized_project_revision_tokenizer_template.py b/test/test_normalized_project_revision_tokenizer_template.py index 1a4d6cad2..741932da9 100644 --- a/test/test_normalized_project_revision_tokenizer_template.py +++ b/test/test_normalized_project_revision_tokenizer_template.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_api.py b/test/test_o_auth2_api.py index 670cea81e..2fede83fe 100644 --- a/test/test_o_auth2_api.py +++ b/test/test_o_auth2_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_client.py b/test/test_o_auth2_client.py index 9b0995320..de80d92be 100644 --- a/test/test_o_auth2_client.py +++ b/test/test_o_auth2_client.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_client_token_lifespans.py b/test/test_o_auth2_client_token_lifespans.py index 4e25c8e54..3cf0ca02f 100644 --- a/test/test_o_auth2_client_token_lifespans.py +++ b/test/test_o_auth2_client_token_lifespans.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_consent_request.py b/test/test_o_auth2_consent_request.py index b74d0c46c..173faf5f3 100644 --- a/test/test_o_auth2_consent_request.py +++ b/test/test_o_auth2_consent_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_consent_request_open_id_connect_context.py b/test/test_o_auth2_consent_request_open_id_connect_context.py index fef05d7a4..a226a2e19 100644 --- a/test/test_o_auth2_consent_request_open_id_connect_context.py +++ b/test/test_o_auth2_consent_request_open_id_connect_context.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_consent_session.py b/test/test_o_auth2_consent_session.py index 459fcb072..a77947140 100644 --- a/test/test_o_auth2_consent_session.py +++ b/test/test_o_auth2_consent_session.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_consent_session_expires_at.py b/test/test_o_auth2_consent_session_expires_at.py index 17a3b9c80..da45f6c10 100644 --- a/test/test_o_auth2_consent_session_expires_at.py +++ b/test/test_o_auth2_consent_session_expires_at.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_login_request.py b/test/test_o_auth2_login_request.py index 438210786..4edae7e00 100644 --- a/test/test_o_auth2_login_request.py +++ b/test/test_o_auth2_login_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_logout_request.py b/test/test_o_auth2_logout_request.py index 1c8045c04..8b843a5e4 100644 --- a/test/test_o_auth2_logout_request.py +++ b/test/test_o_auth2_logout_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_redirect_to.py b/test/test_o_auth2_redirect_to.py index 7bcdb2715..6c92df6ae 100644 --- a/test/test_o_auth2_redirect_to.py +++ b/test/test_o_auth2_redirect_to.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_o_auth2_token_exchange.py b/test/test_o_auth2_token_exchange.py index abb56b884..5a9333f58 100644 --- a/test/test_o_auth2_token_exchange.py +++ b/test/test_o_auth2_token_exchange.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_oidc_api.py b/test/test_oidc_api.py index cdef675e2..dcf65838f 100644 --- a/test/test_oidc_api.py +++ b/test/test_oidc_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_oidc_configuration.py b/test/test_oidc_configuration.py index 210937286..c04ba1b01 100644 --- a/test/test_oidc_configuration.py +++ b/test/test_oidc_configuration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_oidc_user_info.py b/test/test_oidc_user_info.py index 55875d56d..96b0661be 100644 --- a/test/test_oidc_user_info.py +++ b/test/test_oidc_user_info.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_organization.py b/test/test_organization.py index ebe78b392..30090c6df 100644 --- a/test/test_organization.py +++ b/test/test_organization.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_organization_body.py b/test/test_organization_body.py index 174710ecb..8597fe2a3 100644 --- a/test/test_organization_body.py +++ b/test/test_organization_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_pagination.py b/test/test_pagination.py index 72c176554..6deeba741 100644 --- a/test/test_pagination.py +++ b/test/test_pagination.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_pagination_headers.py b/test/test_pagination_headers.py index aa444e88d..f4047f7ea 100644 --- a/test/test_pagination_headers.py +++ b/test/test_pagination_headers.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_parse_error.py b/test/test_parse_error.py index 87cdfddba..3cd352fc3 100644 --- a/test/test_parse_error.py +++ b/test/test_parse_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_patch_identities_body.py b/test/test_patch_identities_body.py index 1319b6e4e..f241d2908 100644 --- a/test/test_patch_identities_body.py +++ b/test/test_patch_identities_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_perform_native_logout_body.py b/test/test_perform_native_logout_body.py index a7ea7059e..362788866 100644 --- a/test/test_perform_native_logout_body.py +++ b/test/test_perform_native_logout_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_api.py b/test/test_permission_api.py index 24ffc93e3..66ace2590 100644 --- a/test/test_permission_api.py +++ b/test/test_permission_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permissions_on_workspace.py b/test/test_permissions_on_workspace.py index cfc9bff4b..9c456f685 100644 --- a/test/test_permissions_on_workspace.py +++ b/test/test_permissions_on_workspace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_plan.py b/test/test_plan.py index 0d0e5bc72..c8476874d 100644 --- a/test/test_plan.py +++ b/test/test_plan.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_plan_details.py b/test/test_plan_details.py index aa6c4c103..6940487cf 100644 --- a/test/test_plan_details.py +++ b/test/test_plan_details.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_post_check_permission_body.py b/test/test_post_check_permission_body.py index 9d1b6f11d..80de362f3 100644 --- a/test/test_post_check_permission_body.py +++ b/test/test_post_check_permission_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_post_check_permission_or_error_body.py b/test/test_post_check_permission_or_error_body.py index 5281031d7..8f72e26ab 100644 --- a/test/test_post_check_permission_or_error_body.py +++ b/test/test_post_check_permission_or_error_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project.py b/test/test_project.py index 1b685f08d..00abaf6b8 100644 --- a/test/test_project.py +++ b/test/test_project.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_api.py b/test/test_project_api.py index 9cec32570..a50e10a8c 100644 --- a/test/test_project_api.py +++ b/test/test_project_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_api_key.py b/test/test_project_api_key.py index 99242ab34..0fb750239 100644 --- a/test/test_project_api_key.py +++ b/test/test_project_api_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_branding.py b/test/test_project_branding.py index 9590229b7..3ccf5b695 100644 --- a/test/test_project_branding.py +++ b/test/test_project_branding.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_branding_colors.py b/test/test_project_branding_colors.py index d4bea8ae8..7f51e7ab1 100644 --- a/test/test_project_branding_colors.py +++ b/test/test_project_branding_colors.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_branding_theme.py b/test/test_project_branding_theme.py index 047f55e1b..13b89e36e 100644 --- a/test/test_project_branding_theme.py +++ b/test/test_project_branding_theme.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_cors.py b/test/test_project_cors.py index f6ab47dbb..b3275ac0b 100644 --- a/test/test_project_cors.py +++ b/test/test_project_cors.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_events_datapoint.py b/test/test_project_events_datapoint.py index 6a8db26ed..7681c1763 100644 --- a/test/test_project_events_datapoint.py +++ b/test/test_project_events_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_host.py b/test/test_project_host.py index 27ec4e3b0..b9101179e 100644 --- a/test/test_project_host.py +++ b/test/test_project_host.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_member.py b/test/test_project_member.py index 4b43779a9..c8354ef46 100644 --- a/test/test_project_member.py +++ b/test/test_project_member.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_metadata.py b/test/test_project_metadata.py index 10f2ebc74..fbeb8075a 100644 --- a/test/test_project_metadata.py +++ b/test/test_project_metadata.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_service_identity.py b/test/test_project_service_identity.py index f7a39fccf..8cd438fdd 100644 --- a/test/test_project_service_identity.py +++ b/test/test_project_service_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_service_o_auth2.py b/test/test_project_service_o_auth2.py index 558d47fab..00fb601b1 100644 --- a/test/test_project_service_o_auth2.py +++ b/test/test_project_service_o_auth2.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_service_permission.py b/test/test_project_service_permission.py index 59dea5607..34541f236 100644 --- a/test/test_project_service_permission.py +++ b/test/test_project_service_permission.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_project_services.py b/test/test_project_services.py index 961114098..e54fa39ab 100644 --- a/test/test_project_services.py +++ b/test/test_project_services.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_quota_usage.py b/test/test_quota_usage.py index 829a99379..28e0f5dbe 100644 --- a/test/test_quota_usage.py +++ b/test/test_quota_usage.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_recovery_code_for_identity.py b/test/test_recovery_code_for_identity.py index 9bea872ec..9df5756ec 100644 --- a/test/test_recovery_code_for_identity.py +++ b/test/test_recovery_code_for_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_recovery_flow.py b/test/test_recovery_flow.py index d9e603887..e5618fc65 100644 --- a/test/test_recovery_flow.py +++ b/test/test_recovery_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_recovery_flow_state.py b/test/test_recovery_flow_state.py index 1d3c97e96..e102f47c9 100644 --- a/test/test_recovery_flow_state.py +++ b/test/test_recovery_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_recovery_identity_address.py b/test/test_recovery_identity_address.py index a0366de3d..c2ee96f90 100644 --- a/test/test_recovery_identity_address.py +++ b/test/test_recovery_identity_address.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_recovery_link_for_identity.py b/test/test_recovery_link_for_identity.py index fdf74ad8f..616fa81d8 100644 --- a/test/test_recovery_link_for_identity.py +++ b/test/test_recovery_link_for_identity.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_registration_flow.py b/test/test_registration_flow.py index 54ef16ed9..58c267d76 100644 --- a/test/test_registration_flow.py +++ b/test/test_registration_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_registration_flow_state.py b/test/test_registration_flow_state.py index 8b6b03e65..550b26a1e 100644 --- a/test/test_registration_flow_state.py +++ b/test/test_registration_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_reject_o_auth2_request.py b/test/test_reject_o_auth2_request.py index 9a93fad60..1cbbe89a1 100644 --- a/test/test_reject_o_auth2_request.py +++ b/test/test_reject_o_auth2_request.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relation_query.py b/test/test_relation_query.py index 7562ad736..0c04a12e1 100644 --- a/test/test_relation_query.py +++ b/test/test_relation_query.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship.py b/test/test_relationship.py index 5822cd7bc..b3e1e2486 100644 --- a/test/test_relationship.py +++ b/test/test_relationship.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_api.py b/test/test_relationship_api.py index 1ad324702..c2e3a942b 100644 --- a/test/test_relationship_api.py +++ b/test/test_relationship_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_namespaces.py b/test/test_relationship_namespaces.py index ddfc6e229..2e005a241 100644 --- a/test/test_relationship_namespaces.py +++ b/test/test_relationship_namespaces.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_patch.py b/test/test_relationship_patch.py index b2f26821a..f81af2a8f 100644 --- a/test/test_relationship_patch.py +++ b/test/test_relationship_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationships.py b/test/test_relationships.py index 3e7220fad..3f7c09968 100644 --- a/test/test_relationships.py +++ b/test/test_relationships.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_rfc6749_error_json.py b/test/test_rfc6749_error_json.py index 027c59631..89b614375 100644 --- a/test/test_rfc6749_error_json.py +++ b/test/test_rfc6749_error_json.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_patch.py b/test/test_schema_patch.py index 85544e74d..8430a0d97 100644 --- a/test/test_schema_patch.py +++ b/test/test_schema_patch.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_self_service_flow_expired_error.py b/test/test_self_service_flow_expired_error.py index 6097c54ed..35fa0f7ae 100644 --- a/test/test_self_service_flow_expired_error.py +++ b/test/test_self_service_flow_expired_error.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_session.py b/test/test_session.py index acaafc47a..ecfed02b5 100644 --- a/test/test_session.py +++ b/test/test_session.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_session_activity_datapoint.py b/test/test_session_activity_datapoint.py index 414658e08..9f2068419 100644 --- a/test/test_session_activity_datapoint.py +++ b/test/test_session_activity_datapoint.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_session_authentication_method.py b/test/test_session_authentication_method.py index c136ba931..980858aa8 100644 --- a/test/test_session_authentication_method.py +++ b/test/test_session_authentication_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_session_device.py b/test/test_session_device.py index 41b365c8e..b8a5c0c3a 100644 --- a/test/test_session_device.py +++ b/test/test_session_device.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_set_active_project_in_console_body.py b/test/test_set_active_project_in_console_body.py index c97c17ee9..d6478e19a 100644 --- a/test/test_set_active_project_in_console_body.py +++ b/test/test_set_active_project_in_console_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_set_custom_domain_body.py b/test/test_set_custom_domain_body.py index d4030df4d..6f7067d99 100644 --- a/test/test_set_custom_domain_body.py +++ b/test/test_set_custom_domain_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_set_event_stream_body.py b/test/test_set_event_stream_body.py index dc6722925..c75b9cf6c 100644 --- a/test/test_set_event_stream_body.py +++ b/test/test_set_event_stream_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_set_project.py b/test/test_set_project.py index 53394fc4f..e96e2f124 100644 --- a/test/test_set_project.py +++ b/test/test_set_project.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_set_project_branding_theme_body.py b/test/test_set_project_branding_theme_body.py index c32836511..19a249789 100644 --- a/test/test_set_project_branding_theme_body.py +++ b/test/test_set_project_branding_theme_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_settings_flow.py b/test/test_settings_flow.py index 2505d3174..02879b822 100644 --- a/test/test_settings_flow.py +++ b/test/test_settings_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_settings_flow_state.py b/test/test_settings_flow_state.py index f6fb0218e..6aad1cff7 100644 --- a/test/test_settings_flow_state.py +++ b/test/test_settings_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_source_position.py b/test/test_source_position.py index 21e75cc38..a7454b473 100644 --- a/test/test_source_position.py +++ b/test/test_source_position.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_subject_set.py b/test/test_subject_set.py index c2e99365c..4813734fb 100644 --- a/test/test_subject_set.py +++ b/test/test_subject_set.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_subscription.py b/test/test_subscription.py index 8df5bd7f8..640cb727b 100644 --- a/test/test_subscription.py +++ b/test/test_subscription.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_successful_code_exchange_response.py b/test/test_successful_code_exchange_response.py index e1b8e3de3..4024b8b52 100644 --- a/test/test_successful_code_exchange_response.py +++ b/test/test_successful_code_exchange_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_successful_native_login.py b/test/test_successful_native_login.py index acfcf2e54..123e75d64 100644 --- a/test/test_successful_native_login.py +++ b/test/test_successful_native_login.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_successful_native_registration.py b/test/test_successful_native_registration.py index f50b943f4..857744cd0 100644 --- a/test/test_successful_native_registration.py +++ b/test/test_successful_native_registration.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_successful_project_update.py b/test/test_successful_project_update.py index 2e6b8ccbf..0474dc12c 100644 --- a/test/test_successful_project_update.py +++ b/test/test_successful_project_update.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tax_line_item.py b/test/test_tax_line_item.py index fe48d3cd4..156107be7 100644 --- a/test/test_tax_line_item.py +++ b/test/test_tax_line_item.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_time_interval.py b/test/test_time_interval.py index 43fcc396f..75ed6c673 100644 --- a/test/test_time_interval.py +++ b/test/test_time_interval.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_token_pagination.py b/test/test_token_pagination.py index 5788420d6..f3e08cdd5 100644 --- a/test/test_token_pagination.py +++ b/test/test_token_pagination.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_token_pagination_headers.py b/test/test_token_pagination_headers.py index af727d6aa..e0a0df287 100644 --- a/test/test_token_pagination_headers.py +++ b/test/test_token_pagination_headers.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_token_pagination_request_parameters.py b/test/test_token_pagination_request_parameters.py index 1a1433ca1..0f1d27145 100644 --- a/test/test_token_pagination_request_parameters.py +++ b/test/test_token_pagination_request_parameters.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_token_pagination_response_headers.py b/test/test_token_pagination_response_headers.py index 7ae64a474..fdce5530d 100644 --- a/test/test_token_pagination_response_headers.py +++ b/test/test_token_pagination_response_headers.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_trust_o_auth2_jwt_grant_issuer.py b/test/test_trust_o_auth2_jwt_grant_issuer.py index e2a7dcdf2..1f0d9e796 100644 --- a/test/test_trust_o_auth2_jwt_grant_issuer.py +++ b/test/test_trust_o_auth2_jwt_grant_issuer.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_trusted_o_auth2_jwt_grant_issuer.py b/test/test_trusted_o_auth2_jwt_grant_issuer.py index a3720aa65..a8f4cf715 100644 --- a/test/test_trusted_o_auth2_jwt_grant_issuer.py +++ b/test/test_trusted_o_auth2_jwt_grant_issuer.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_trusted_o_auth2_jwt_grant_json_web_key.py b/test/test_trusted_o_auth2_jwt_grant_json_web_key.py index 213dc71a8..ae744c0d8 100644 --- a/test/test_trusted_o_auth2_jwt_grant_json_web_key.py +++ b/test/test_trusted_o_auth2_jwt_grant_json_web_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_container.py b/test/test_ui_container.py index 9091d6b72..1ef191060 100644 --- a/test/test_ui_container.py +++ b/test/test_ui_container.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node.py b/test/test_ui_node.py index a76de707a..48e9aafc7 100644 --- a/test/test_ui_node.py +++ b/test/test_ui_node.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_anchor_attributes.py b/test/test_ui_node_anchor_attributes.py index 8f1e67cb1..d3365ff10 100644 --- a/test/test_ui_node_anchor_attributes.py +++ b/test/test_ui_node_anchor_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_attributes.py b/test/test_ui_node_attributes.py index c39cdb590..c7830d56a 100644 --- a/test/test_ui_node_attributes.py +++ b/test/test_ui_node_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_image_attributes.py b/test/test_ui_node_image_attributes.py index 54d554b44..fcc0be3cb 100644 --- a/test/test_ui_node_image_attributes.py +++ b/test/test_ui_node_image_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_input_attributes.py b/test/test_ui_node_input_attributes.py index 799fe57c2..207e39a14 100644 --- a/test/test_ui_node_input_attributes.py +++ b/test/test_ui_node_input_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_meta.py b/test/test_ui_node_meta.py index 1b71f8681..65fdfce96 100644 --- a/test/test_ui_node_meta.py +++ b/test/test_ui_node_meta.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_script_attributes.py b/test/test_ui_node_script_attributes.py index 226570cf4..2a0fc6afb 100644 --- a/test/test_ui_node_script_attributes.py +++ b/test/test_ui_node_script_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_node_text_attributes.py b/test/test_ui_node_text_attributes.py index db12436fc..e3e2c545b 100644 --- a/test/test_ui_node_text_attributes.py +++ b/test/test_ui_node_text_attributes.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ui_text.py b/test/test_ui_text.py index c48fdcbed..81a387412 100644 --- a/test/test_ui_text.py +++ b/test/test_ui_text.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_identity_body.py b/test/test_update_identity_body.py index 0bed8825c..57fa47ad9 100644 --- a/test/test_update_identity_body.py +++ b/test/test_update_identity_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_body.py b/test/test_update_login_flow_body.py index afb05a5df..7d53ef872 100644 --- a/test/test_update_login_flow_body.py +++ b/test/test_update_login_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -50,6 +50,7 @@ def make_instance(self, include_optional) -> UpdateLoginFlowBody: totp_code = '', webauthn_login = '', lookup_secret = '', + address = '', code = '', resend = '', passkey_login = '' diff --git a/test/test_update_login_flow_with_code_method.py b/test/test_update_login_flow_with_code_method.py index 12691a6d3..ea072d7c2 100644 --- a/test/test_update_login_flow_with_code_method.py +++ b/test/test_update_login_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -36,6 +36,7 @@ def make_instance(self, include_optional) -> UpdateLoginFlowWithCodeMethod: model = UpdateLoginFlowWithCodeMethod() if include_optional: return UpdateLoginFlowWithCodeMethod( + address = '', code = '', csrf_token = '', identifier = '', diff --git a/test/test_update_login_flow_with_identifier_first_method.py b/test/test_update_login_flow_with_identifier_first_method.py index e0223cb6f..3caf09c7e 100644 --- a/test/test_update_login_flow_with_identifier_first_method.py +++ b/test/test_update_login_flow_with_identifier_first_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_with_lookup_secret_method.py b/test/test_update_login_flow_with_lookup_secret_method.py index cf3f33152..8cad15ce7 100644 --- a/test/test_update_login_flow_with_lookup_secret_method.py +++ b/test/test_update_login_flow_with_lookup_secret_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_with_oidc_method.py b/test/test_update_login_flow_with_oidc_method.py index bbf504baf..cf9923220 100644 --- a/test/test_update_login_flow_with_oidc_method.py +++ b/test/test_update_login_flow_with_oidc_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_with_passkey_method.py b/test/test_update_login_flow_with_passkey_method.py index 47a027149..6efd2fa5c 100644 --- a/test/test_update_login_flow_with_passkey_method.py +++ b/test/test_update_login_flow_with_passkey_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_with_password_method.py b/test/test_update_login_flow_with_password_method.py index 72b3b6a4f..79da39ab8 100644 --- a/test/test_update_login_flow_with_password_method.py +++ b/test/test_update_login_flow_with_password_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_with_totp_method.py b/test/test_update_login_flow_with_totp_method.py index 763609a88..77383ed54 100644 --- a/test/test_update_login_flow_with_totp_method.py +++ b/test/test_update_login_flow_with_totp_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_login_flow_with_web_authn_method.py b/test/test_update_login_flow_with_web_authn_method.py index af5c652ab..cde5d8726 100644 --- a/test/test_update_login_flow_with_web_authn_method.py +++ b/test/test_update_login_flow_with_web_authn_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_recovery_flow_body.py b/test/test_update_recovery_flow_body.py index ba6b2d938..fadb2f73c 100644 --- a/test/test_update_recovery_flow_body.py +++ b/test/test_update_recovery_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_recovery_flow_with_code_method.py b/test/test_update_recovery_flow_with_code_method.py index 9ff8191eb..d5f17dfbc 100644 --- a/test/test_update_recovery_flow_with_code_method.py +++ b/test/test_update_recovery_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_recovery_flow_with_link_method.py b/test/test_update_recovery_flow_with_link_method.py index 94da6f96d..401b76c94 100644 --- a/test/test_update_recovery_flow_with_link_method.py +++ b/test/test_update_recovery_flow_with_link_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_body.py b/test/test_update_registration_flow_body.py index c5d9fc086..c9cb52288 100644 --- a/test/test_update_registration_flow_body.py +++ b/test/test_update_registration_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_with_code_method.py b/test/test_update_registration_flow_with_code_method.py index 7c835796e..b41e536b7 100644 --- a/test/test_update_registration_flow_with_code_method.py +++ b/test/test_update_registration_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_with_oidc_method.py b/test/test_update_registration_flow_with_oidc_method.py index 57907367a..994ff81a0 100644 --- a/test/test_update_registration_flow_with_oidc_method.py +++ b/test/test_update_registration_flow_with_oidc_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_with_passkey_method.py b/test/test_update_registration_flow_with_passkey_method.py index 4c987ae37..4a28e357a 100644 --- a/test/test_update_registration_flow_with_passkey_method.py +++ b/test/test_update_registration_flow_with_passkey_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_with_password_method.py b/test/test_update_registration_flow_with_password_method.py index 55dd33f0f..633700cd2 100644 --- a/test/test_update_registration_flow_with_password_method.py +++ b/test/test_update_registration_flow_with_password_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_with_profile_method.py b/test/test_update_registration_flow_with_profile_method.py index 67ee5dc6b..8e67a0f7a 100644 --- a/test/test_update_registration_flow_with_profile_method.py +++ b/test/test_update_registration_flow_with_profile_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_registration_flow_with_web_authn_method.py b/test/test_update_registration_flow_with_web_authn_method.py index edf023238..18ff387e6 100644 --- a/test/test_update_registration_flow_with_web_authn_method.py +++ b/test/test_update_registration_flow_with_web_authn_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_body.py b/test/test_update_settings_flow_body.py index 25e5589f8..70249a0a2 100644 --- a/test/test_update_settings_flow_body.py +++ b/test/test_update_settings_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_lookup_method.py b/test/test_update_settings_flow_with_lookup_method.py index 90bd97f9a..9f7432331 100644 --- a/test/test_update_settings_flow_with_lookup_method.py +++ b/test/test_update_settings_flow_with_lookup_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_oidc_method.py b/test/test_update_settings_flow_with_oidc_method.py index 75d088229..b7ce22236 100644 --- a/test/test_update_settings_flow_with_oidc_method.py +++ b/test/test_update_settings_flow_with_oidc_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_passkey_method.py b/test/test_update_settings_flow_with_passkey_method.py index fe678948b..ad3b94a6c 100644 --- a/test/test_update_settings_flow_with_passkey_method.py +++ b/test/test_update_settings_flow_with_passkey_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_password_method.py b/test/test_update_settings_flow_with_password_method.py index ac8f8ccb9..e8211338c 100644 --- a/test/test_update_settings_flow_with_password_method.py +++ b/test/test_update_settings_flow_with_password_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_profile_method.py b/test/test_update_settings_flow_with_profile_method.py index 1a793a579..145afc724 100644 --- a/test/test_update_settings_flow_with_profile_method.py +++ b/test/test_update_settings_flow_with_profile_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_totp_method.py b/test/test_update_settings_flow_with_totp_method.py index d0f5fcbcf..77854f400 100644 --- a/test/test_update_settings_flow_with_totp_method.py +++ b/test/test_update_settings_flow_with_totp_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_settings_flow_with_web_authn_method.py b/test/test_update_settings_flow_with_web_authn_method.py index 3b63e621c..bfe44ff59 100644 --- a/test/test_update_settings_flow_with_web_authn_method.py +++ b/test/test_update_settings_flow_with_web_authn_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_subscription_body.py b/test/test_update_subscription_body.py index 34691f870..576db1a47 100644 --- a/test/test_update_subscription_body.py +++ b/test/test_update_subscription_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_verification_flow_body.py b/test/test_update_verification_flow_body.py index fad156f55..f1ce45de5 100644 --- a/test/test_update_verification_flow_body.py +++ b/test/test_update_verification_flow_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_verification_flow_with_code_method.py b/test/test_update_verification_flow_with_code_method.py index 9be45021b..eaeecd49e 100644 --- a/test/test_update_verification_flow_with_code_method.py +++ b/test/test_update_verification_flow_with_code_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_verification_flow_with_link_method.py b/test/test_update_verification_flow_with_link_method.py index 4165f39d2..8cc24867e 100644 --- a/test/test_update_verification_flow_with_link_method.py +++ b/test/test_update_verification_flow_with_link_method.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_update_workspace_body.py b/test/test_update_workspace_body.py index 7447d91a7..7daba6268 100644 --- a/test/test_update_workspace_body.py +++ b/test/test_update_workspace_body.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_usage.py b/test/test_usage.py index cc72693e5..ad3a7cd32 100644 --- a/test/test_usage.py +++ b/test/test_usage.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_verifiable_credential_priming_response.py b/test/test_verifiable_credential_priming_response.py index e6fefe9b4..75d9312e8 100644 --- a/test/test_verifiable_credential_priming_response.py +++ b/test/test_verifiable_credential_priming_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_verifiable_credential_proof.py b/test/test_verifiable_credential_proof.py index 3e7373dcc..1da2424c0 100644 --- a/test/test_verifiable_credential_proof.py +++ b/test/test_verifiable_credential_proof.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_verifiable_credential_response.py b/test/test_verifiable_credential_response.py index 04bf9359b..427c5e955 100644 --- a/test/test_verifiable_credential_response.py +++ b/test/test_verifiable_credential_response.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_verifiable_identity_address.py b/test/test_verifiable_identity_address.py index 1309b841f..30d050107 100644 --- a/test/test_verifiable_identity_address.py +++ b/test/test_verifiable_identity_address.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_verification_flow.py b/test/test_verification_flow.py index 6725edf31..b23c4b5d0 100644 --- a/test/test_verification_flow.py +++ b/test/test_verification_flow.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_verification_flow_state.py b/test/test_verification_flow_state.py index bbd91edbe..1a082a7d9 100644 --- a/test/test_verification_flow_state.py +++ b/test/test_verification_flow_state.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_version.py b/test/test_version.py index 1bc17a2ba..b98d93b6a 100644 --- a/test/test_version.py +++ b/test/test_version.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_warning.py b/test/test_warning.py index 701739e48..7ceb8b0da 100644 --- a/test/test_warning.py +++ b/test/test_warning.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_wellknown_api.py b/test/test_wellknown_api.py index 33f9cedb5..576e87fbf 100644 --- a/test/test_wellknown_api.py +++ b/test/test_wellknown_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_workspace.py b/test/test_workspace.py index 1a43f90e3..3f72785e0 100644 --- a/test/test_workspace.py +++ b/test/test_workspace.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_workspace_api.py b/test/test_workspace_api.py index 6cedca691..191d788e5 100644 --- a/test/test_workspace_api.py +++ b/test/test_workspace_api.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_workspace_api_key.py b/test/test_workspace_api_key.py index 080ff5436..2ddb451db 100644 --- a/test/test_workspace_api_key.py +++ b/test/test_workspace_api_key.py @@ -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.15.0 + The version of the OpenAPI document: v1.15.3 Contact: support@ory.sh Generated by OpenAPI Generator (https://openapi-generator.tech)