Skip to content

Commit 9f3c913

Browse files
author
devexperience
committed
Generated version 0.11.1
This pull request was automatically generated by a GitHub Action to generate version 0.11.1 of this library.
1 parent b2a65da commit 9f3c913

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/MxPlatformApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ end
830830
831831
Create user
832832

833-
Call this endpoint to create a new user. The MX Platform API will respond with the newly-created user object if successful. This endpoint accepts several parameters - id, metadata, and is_disabled. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill.
833+
Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
834834

835835
### Examples
836836

@@ -6791,7 +6791,7 @@ end
67916791
67926792
Update user
67936793

6794-
Use this endpoint to update the attributes of a specific user. The MX Platform API will respond with the updated user object. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. To disable a user, update it and set the is_disabled parameter to true. Set it to false to re-enable the user.
6794+
Use this endpoint to update the attributes of the specified user.
67956795

67966796
### Examples
67976797

lib/mx-platform-ruby/api/mx_platform_api.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ def create_transaction_rule_with_http_info(user_guid, transaction_rule_create_re
768768
end
769769

770770
# Create user
771-
# Call this endpoint to create a new user. The MX Platform API will respond with the newly-created user object if successful. This endpoint accepts several parameters - id, metadata, and is_disabled. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill.
771+
# Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
772772
# @param user_create_request_body [UserCreateRequestBody] User object to be created. (None of these parameters are required, but the user object cannot be empty)
773773
# @param [Hash] opts the optional parameters
774774
# @return [UserResponseBody]
@@ -778,7 +778,7 @@ def create_user(user_create_request_body, opts = {})
778778
end
779779

780780
# Create user
781-
# Call this endpoint to create a new user. The MX Platform API will respond with the newly-created user object if successful. This endpoint accepts several parameters - id, metadata, and is_disabled. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill.
781+
# Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
782782
# @param user_create_request_body [UserCreateRequestBody] User object to be created. (None of these parameters are required, but the user object cannot be empty)
783783
# @param [Hash] opts the optional parameters
784784
# @return [Array<(UserResponseBody, Integer, Hash)>] UserResponseBody data, response status code and response headers
@@ -6533,7 +6533,7 @@ def update_transaction_rule_with_http_info(transaction_rule_guid, user_guid, tra
65336533
end
65346534

65356535
# Update user
6536-
# Use this endpoint to update the attributes of a specific user. The MX Platform API will respond with the updated user object. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. To disable a user, update it and set the is_disabled parameter to true. Set it to false to re-enable the user.
6536+
# Use this endpoint to update the attributes of the specified user.
65376537
# @param user_guid [String] The unique id for a &#x60;user&#x60;.
65386538
# @param user_update_request_body [UserUpdateRequestBody] User object to be updated (None of these parameters are required, but the user object cannot be empty.)
65396539
# @param [Hash] opts the optional parameters
@@ -6544,7 +6544,7 @@ def update_user(user_guid, user_update_request_body, opts = {})
65446544
end
65456545

65466546
# Update user
6547-
# Use this endpoint to update the attributes of a specific user. The MX Platform API will respond with the updated user object. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. To disable a user, update it and set the is_disabled parameter to true. Set it to false to re-enable the user.
6547+
# Use this endpoint to update the attributes of the specified user.
65486548
# @param user_guid [String] The unique id for a &#x60;user&#x60;.
65496549
# @param user_update_request_body [UserUpdateRequestBody] User object to be updated (None of these parameters are required, but the user object cannot be empty.)
65506550
# @param [Hash] opts the optional parameters

lib/mx-platform-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module MxPlatformRuby
14-
VERSION = '0.11.0'
14+
VERSION = '0.11.1'
1515
end

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
66
gemLicense: MIT
77
gemName: mx-platform-ruby
88
gemRequiredRubyVersion: ">= 2.6"
9-
gemVersion: 0.11.0
9+
gemVersion: 0.11.1
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/api/mx_platform_api_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167

168168
# unit tests for create_user
169169
# Create user
170-
# Call this endpoint to create a new user. The MX Platform API will respond with the newly-created user object if successful. This endpoint accepts several parameters - id, metadata, and is_disabled. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill.
170+
# Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
171171
# @param user_create_request_body User object to be created. (None of these parameters are required, but the user object cannot be empty)
172172
# @param [Hash] opts the optional parameters
173173
# @return [UserResponseBody]
@@ -1280,7 +1280,7 @@
12801280

12811281
# unit tests for update_user
12821282
# Update user
1283-
# Use this endpoint to update the attributes of a specific user. The MX Platform API will respond with the updated user object. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. To disable a user, update it and set the is_disabled parameter to true. Set it to false to re-enable the user.
1283+
# Use this endpoint to update the attributes of the specified user.
12841284
# @param user_guid The unique id for a &#x60;user&#x60;.
12851285
# @param user_update_request_body User object to be updated (None of these parameters are required, but the user object cannot be empty.)
12861286
# @param [Hash] opts the optional parameters

0 commit comments

Comments
 (0)