diff --git a/docs/MxPlatformApi.md b/docs/MxPlatformApi.md index 9d69025..3fbf428 100644 --- a/docs/MxPlatformApi.md +++ b/docs/MxPlatformApi.md @@ -6885,7 +6885,7 @@ end Update account by member -This endpoint allows you to update certain attributes of an `account` resource. +This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. ### Examples @@ -6903,7 +6903,7 @@ api_instance = MxPlatformRuby::MxPlatformApi.new account_guid = 'ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1' # String | The unique id for an `account`. member_guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b' # String | The unique id for a `member`. user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # String | The unique id for a `user`. -account_update_request_body = MxPlatformRuby::AccountUpdateRequestBody.new # AccountUpdateRequestBody | Account object to be created with optional parameters (is_hidden) +account_update_request_body = MxPlatformRuby::AccountUpdateRequestBody.new # AccountUpdateRequestBody | begin # Update account by member @@ -6939,7 +6939,7 @@ end | **account_guid** | **String** | The unique id for an `account`. | | | **member_guid** | **String** | The unique id for a `member`. | | | **user_guid** | **String** | The unique id for a `user`. | | -| **account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md) | Account object to be created with optional parameters (is_hidden) | | +| **account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md) | | | ### Return type diff --git a/lib/mx-platform-ruby/api/mx_platform_api.rb b/lib/mx-platform-ruby/api/mx_platform_api.rb index 46d9643..1cfc057 100644 --- a/lib/mx-platform-ruby/api/mx_platform_api.rb +++ b/lib/mx-platform-ruby/api/mx_platform_api.rb @@ -6542,11 +6542,11 @@ def resume_aggregation_with_http_info(member_guid, user_guid, member_resume_requ end # Update account by member - # This endpoint allows you to update certain attributes of an `account` resource. + # This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # @param account_guid [String] The unique id for an `account`. # @param member_guid [String] The unique id for a `member`. # @param user_guid [String] The unique id for a `user`. - # @param account_update_request_body [AccountUpdateRequestBody] Account object to be created with optional parameters (is_hidden) + # @param account_update_request_body [AccountUpdateRequestBody] # @param [Hash] opts the optional parameters # @return [AccountResponseBody] def update_account_by_member(account_guid, member_guid, user_guid, account_update_request_body, opts = {}) @@ -6555,11 +6555,11 @@ def update_account_by_member(account_guid, member_guid, user_guid, account_updat end # Update account by member - # This endpoint allows you to update certain attributes of an `account` resource. + # This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # @param account_guid [String] The unique id for an `account`. # @param member_guid [String] The unique id for a `member`. # @param user_guid [String] The unique id for a `user`. - # @param account_update_request_body [AccountUpdateRequestBody] Account object to be created with optional parameters (is_hidden) + # @param account_update_request_body [AccountUpdateRequestBody] # @param [Hash] opts the optional parameters # @return [Array<(AccountResponseBody, Integer, Hash)>] AccountResponseBody data, response status code and response headers def update_account_by_member_with_http_info(account_guid, member_guid, user_guid, account_update_request_body, opts = {}) diff --git a/lib/mx-platform-ruby/version.rb b/lib/mx-platform-ruby/version.rb index 59d7815..a3db1e3 100644 --- a/lib/mx-platform-ruby/version.rb +++ b/lib/mx-platform-ruby/version.rb @@ -11,5 +11,5 @@ =end module MxPlatformRuby - VERSION = '0.40.0' + VERSION = '0.41.0' end diff --git a/openapi/config.yml b/openapi/config.yml index 3e35a69..3602cea 100644 --- a/openapi/config.yml +++ b/openapi/config.yml @@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby gemLicense: MIT gemName: mx-platform-ruby gemRequiredRubyVersion: ">= 2.6" -gemVersion: 0.40.0 +gemVersion: 0.41.0 library: faraday moduleName: MxPlatformRuby diff --git a/spec/api/mx_platform_api_spec.rb b/spec/api/mx_platform_api_spec.rb index bd39e75..b13dd81 100644 --- a/spec/api/mx_platform_api_spec.rb +++ b/spec/api/mx_platform_api_spec.rb @@ -1295,11 +1295,11 @@ # unit tests for update_account_by_member # Update account by member - # This endpoint allows you to update certain attributes of an `account` resource. + # This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # @param account_guid The unique id for an `account`. # @param member_guid The unique id for a `member`. # @param user_guid The unique id for a `user`. - # @param account_update_request_body Account object to be created with optional parameters (is_hidden) + # @param account_update_request_body # @param [Hash] opts the optional parameters # @return [AccountResponseBody] describe 'update_account_by_member test' do