docs/UpdateSettingsFlowWithProfileMethod.md in ory-kratos-client-1.1.0 vs docs/UpdateSettingsFlowWithProfileMethod.md in ory-kratos-client-1.2.1

- old
+ new

@@ -5,18 +5,20 @@ | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **csrf_token** | **String** | The Anti-CSRF Token This token is only required when performing browser flows. | [optional] | | **method** | **String** | Method Should be set to profile when trying to update a profile. | | | **traits** | **Object** | Traits The identity's traits. | | +| **transient_payload** | **Object** | Transient data to pass along to any webhooks | [optional] | ## Example ```ruby require 'ory-kratos-client' instance = OryKratosClient::UpdateSettingsFlowWithProfileMethod.new( csrf_token: null, method: null, - traits: null + traits: null, + transient_payload: null ) ```