docs/SessionAuthenticationMethod.md in ory-client-1.1.33 vs docs/SessionAuthenticationMethod.md in ory-client-1.1.34

- old
+ new

@@ -5,18 +5,20 @@ | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **aal** | [**AuthenticatorAssuranceLevel**](AuthenticatorAssuranceLevel.md) | | [optional] | | **completed_at** | **Time** | When the authentication challenge was completed. | [optional] | | **method** | **String** | | [optional] | +| **provider** | **String** | OIDC or SAML provider id used for authentication | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::SessionAuthenticationMethod.new( aal: null, completed_at: null, - method: null + method: null, + provider: null ) ```