README.md in ory-client-0.0.1.alpha45 vs README.md in ory-client-0.0.1.alpha46
- old
+ new
@@ -6,12 +6,12 @@
with a valid Personal Access Token. Public APIs are mostly used in browsers.
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
-- API version: v0.0.1-alpha.45
-- Package version: v0.0.1-alpha.45
+- API version: v0.0.1-alpha.46
+- Package version: v0.0.1-alpha.46
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
## Installation
### Build a gem
@@ -23,20 +23,20 @@
```
Then either install the gem locally:
```shell
-gem install ./ory-client-v0.0.1-alpha.45.gem
+gem install ./ory-client-v0.0.1-alpha.46.gem
```
-(for development, run `gem install --dev ./ory-client-v0.0.1-alpha.45.gem` to install the development dependencies)
+(for development, run `gem install --dev ./ory-client-v0.0.1-alpha.46.gem` to install the development dependencies)
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
Finally add this to the Gemfile:
- gem 'ory-client', '~> v0.0.1-alpha.45'
+ gem 'ory-client', '~> v0.0.1-alpha.46'
### Install from Git
If the Ruby gem is hosted at a git repository: https://github.com/ory/sdk, then add the following in the Gemfile:
@@ -87,10 +87,11 @@
*OryClient::V0alpha2Api* | [**admin_create_self_service_recovery_link**](docs/V0alpha2Api.md#admin_create_self_service_recovery_link) | **POST** /api/kratos/admin/recovery/link | Create a Recovery Link
*OryClient::V0alpha2Api* | [**admin_delete_identity**](docs/V0alpha2Api.md#admin_delete_identity) | **DELETE** /api/kratos/admin/identities/{id} | Delete an Identity
*OryClient::V0alpha2Api* | [**admin_delete_identity_sessions**](docs/V0alpha2Api.md#admin_delete_identity_sessions) | **DELETE** /api/kratos/admin/identities/{id}/sessions | Calling this endpoint irrecoverably and permanently deletes and invalidates all sessions that belong to the given Identity.
*OryClient::V0alpha2Api* | [**admin_get_identity**](docs/V0alpha2Api.md#admin_get_identity) | **GET** /api/kratos/admin/identities/{id} | Get an Identity
*OryClient::V0alpha2Api* | [**admin_list_identities**](docs/V0alpha2Api.md#admin_list_identities) | **GET** /api/kratos/admin/identities | List Identities
+*OryClient::V0alpha2Api* | [**admin_list_identity_sessions**](docs/V0alpha2Api.md#admin_list_identity_sessions) | **GET** /api/kratos/admin/identities/{id}/sessions | This endpoint returns all sessions that belong to the given Identity.
*OryClient::V0alpha2Api* | [**admin_update_identity**](docs/V0alpha2Api.md#admin_update_identity) | **PUT** /api/kratos/admin/identities/{id} | Update an Identity
*OryClient::V0alpha2Api* | [**create_self_service_logout_flow_url_for_browsers**](docs/V0alpha2Api.md#create_self_service_logout_flow_url_for_browsers) | **GET** /api/kratos/public/self-service/logout/browser | Create a Logout URL for Browsers
*OryClient::V0alpha2Api* | [**get_json_schema**](docs/V0alpha2Api.md#get_json_schema) | **GET** /api/kratos/public/schemas/{id} |
*OryClient::V0alpha2Api* | [**get_self_service_error**](docs/V0alpha2Api.md#get_self_service_error) | **GET** /api/kratos/public/self-service/errors | Get Self-Service Errors
*OryClient::V0alpha2Api* | [**get_self_service_login_flow**](docs/V0alpha2Api.md#get_self_service_login_flow) | **GET** /api/kratos/public/self-service/login/flows | Get Login Flow
@@ -108,10 +109,13 @@
*OryClient::V0alpha2Api* | [**initialize_self_service_settings_flow_for_browsers**](docs/V0alpha2Api.md#initialize_self_service_settings_flow_for_browsers) | **GET** /api/kratos/public/self-service/settings/browser | Initialize Settings Flow for Browsers
*OryClient::V0alpha2Api* | [**initialize_self_service_settings_flow_without_browser**](docs/V0alpha2Api.md#initialize_self_service_settings_flow_without_browser) | **GET** /api/kratos/public/self-service/settings/api | Initialize Settings Flow for APIs, Services, Apps, ...
*OryClient::V0alpha2Api* | [**initialize_self_service_verification_flow_for_browsers**](docs/V0alpha2Api.md#initialize_self_service_verification_flow_for_browsers) | **GET** /api/kratos/public/self-service/verification/browser | Initialize Verification Flow for Browser Clients
*OryClient::V0alpha2Api* | [**initialize_self_service_verification_flow_without_browser**](docs/V0alpha2Api.md#initialize_self_service_verification_flow_without_browser) | **GET** /api/kratos/public/self-service/verification/api | Initialize Verification Flow for APIs, Services, Apps, ...
*OryClient::V0alpha2Api* | [**list_identity_schemas**](docs/V0alpha2Api.md#list_identity_schemas) | **GET** /api/kratos/public/schemas |
+*OryClient::V0alpha2Api* | [**list_sessions**](docs/V0alpha2Api.md#list_sessions) | **GET** /api/kratos/public/sessions | This endpoints returns all other active sessions that belong to the logged-in user. The current session can be retrieved by calling the `/sessions/whoami` endpoint.
+*OryClient::V0alpha2Api* | [**revoke_session**](docs/V0alpha2Api.md#revoke_session) | **DELETE** /api/kratos/public/sessions/{id} | Calling this endpoint invalidates the specified session. The current session cannot be revoked. Session data are not deleted.
+*OryClient::V0alpha2Api* | [**revoke_sessions**](docs/V0alpha2Api.md#revoke_sessions) | **DELETE** /api/kratos/public/sessions | Calling this endpoint invalidates all except the current session that belong to the logged-in user. Session data are not deleted.
*OryClient::V0alpha2Api* | [**submit_self_service_login_flow**](docs/V0alpha2Api.md#submit_self_service_login_flow) | **POST** /api/kratos/public/self-service/login | Submit a Login Flow
*OryClient::V0alpha2Api* | [**submit_self_service_logout_flow**](docs/V0alpha2Api.md#submit_self_service_logout_flow) | **GET** /api/kratos/public/self-service/logout | Complete Self-Service Logout
*OryClient::V0alpha2Api* | [**submit_self_service_logout_flow_without_browser**](docs/V0alpha2Api.md#submit_self_service_logout_flow_without_browser) | **DELETE** /api/kratos/public/self-service/logout/api | Perform Logout for APIs, Services, Apps, ...
*OryClient::V0alpha2Api* | [**submit_self_service_recovery_flow**](docs/V0alpha2Api.md#submit_self_service_recovery_flow) | **POST** /api/kratos/public/self-service/recovery | Complete Recovery Flow
*OryClient::V0alpha2Api* | [**submit_self_service_registration_flow**](docs/V0alpha2Api.md#submit_self_service_registration_flow) | **POST** /api/kratos/public/self-service/registration | Submit a Registration Flow
@@ -149,10 +153,11 @@
- [OryClient::IsOwnerForProjectBySlug](docs/IsOwnerForProjectBySlug.md)
- [OryClient::IsOwnerForProjectBySlugPayload](docs/IsOwnerForProjectBySlugPayload.md)
- [OryClient::JsonError](docs/JsonError.md)
- [OryClient::NeedsPrivilegedSessionError](docs/NeedsPrivilegedSessionError.md)
- [OryClient::NullPlan](docs/NullPlan.md)
+ - [OryClient::Pagination](docs/Pagination.md)
- [OryClient::Project](docs/Project.md)
- [OryClient::ProjectHost](docs/ProjectHost.md)
- [OryClient::ProjectLookupSecretConfig](docs/ProjectLookupSecretConfig.md)
- [OryClient::ProjectOidcConfig](docs/ProjectOidcConfig.md)
- [OryClient::ProjectPasswordConfig](docs/ProjectPasswordConfig.md)
@@ -164,9 +169,10 @@
- [OryClient::ProjectVerificationConfig](docs/ProjectVerificationConfig.md)
- [OryClient::ProjectWebAuthnConfig](docs/ProjectWebAuthnConfig.md)
- [OryClient::RecoveryAddress](docs/RecoveryAddress.md)
- [OryClient::RedirectionConfig](docs/RedirectionConfig.md)
- [OryClient::RedirectionField](docs/RedirectionField.md)
+ - [OryClient::RevokedSessions](docs/RevokedSessions.md)
- [OryClient::SchemaPatch](docs/SchemaPatch.md)
- [OryClient::SelfServiceBrowserLocationChangeRequiredError](docs/SelfServiceBrowserLocationChangeRequiredError.md)
- [OryClient::SelfServiceError](docs/SelfServiceError.md)
- [OryClient::SelfServiceFlowExpiredError](docs/SelfServiceFlowExpiredError.md)
- [OryClient::SelfServiceLoginFlow](docs/SelfServiceLoginFlow.md)