mx-platform-ruby 0.9.3 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +15 -15
  3. data/docs/MxPlatformApi.md +301 -78
  4. data/docs/PaymentAccountResponse.md +30 -0
  5. data/docs/PaymentAccountResponseBody.md +18 -0
  6. data/docs/PaymentProcessorAuthorizationCodeRequest.md +22 -0
  7. data/docs/PaymentProcessorAuthorizationCodeRequestBody.md +18 -0
  8. data/docs/PaymentProcessorAuthorizationCodeResponse.md +18 -0
  9. data/docs/PaymentProcessorAuthorizationCodeResponseBody.md +18 -0
  10. data/docs/PaymentProcessorTokenResponseBody.md +22 -0
  11. data/lib/mx-platform-ruby/api/mx_platform_api.rb +337 -119
  12. data/lib/mx-platform-ruby/configuration.rb +7 -0
  13. data/lib/mx-platform-ruby/models/payment_account_response.rb +279 -0
  14. data/lib/mx-platform-ruby/models/payment_account_response_body.rb +218 -0
  15. data/lib/mx-platform-ruby/models/payment_processor_authorization_code_request.rb +236 -0
  16. data/lib/mx-platform-ruby/models/payment_processor_authorization_code_request_body.rb +218 -0
  17. data/lib/mx-platform-ruby/models/payment_processor_authorization_code_response.rb +219 -0
  18. data/lib/mx-platform-ruby/models/payment_processor_authorization_code_response_body.rb +218 -0
  19. data/lib/mx-platform-ruby/models/payment_processor_token_response_body.rb +239 -0
  20. data/lib/mx-platform-ruby/version.rb +1 -1
  21. data/lib/mx-platform-ruby.rb +7 -0
  22. data/openapi/config.yml +1 -1
  23. data/spec/api/mx_platform_api_spec.rb +56 -15
  24. data/spec/models/payment_account_response_body_spec.rb +34 -0
  25. data/spec/models/payment_account_response_spec.rb +70 -0
  26. data/spec/models/payment_processor_authorization_code_request_body_spec.rb +34 -0
  27. data/spec/models/payment_processor_authorization_code_request_spec.rb +46 -0
  28. data/spec/models/payment_processor_authorization_code_response_body_spec.rb +34 -0
  29. data/spec/models/payment_processor_authorization_code_response_spec.rb +34 -0
  30. data/spec/models/payment_processor_token_response_body_spec.rb +46 -0
  31. metadata +30 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f44975b00f2bdf10c89ce33faa117c1ccf3d054b8dd2865bfbe7525022ba134
4
- data.tar.gz: 3106281466bbd8b640045dd2591644e01c86657d70a8aa55caf141caa9ac3420
3
+ metadata.gz: 39e6a784d769faf29233eb2754ee6eee88afc0b1143899fea9a06daab4b2748b
4
+ data.tar.gz: 01b1a01e055eb2c3dde4fea1c85b386fa735129102e316877cfa379802a8849a
5
5
  SHA512:
6
- metadata.gz: 2e8ba61ff2fa97d8d4b703c0b07d6e03c4315b3c82967759eff150ab083cec7b3e81eca1c06e5a38731a8dd4ef64382ce885caa01ed477d6f2057e288137097e
7
- data.tar.gz: 48c7af2ffd3f9f68a2e14c7b72f69f3381dccfbec84cd89a7917d52ca2ab7e52204bb7abfba6dc50eb1cfb31a1a5e1f5df0385463fdb27a6586cbce1af81a407
6
+ metadata.gz: 63a9fcd4993b000dd6cee0cc614f783eae8986d37605364840e6f73098e7b267b36e0c6c0c07ebcc253939813203c4f7a1e767ae8cb2e73fc28289bee0af69a2
7
+ data.tar.gz: f178ac8d7f3dd1b7db9870e56e5d074cf28f026b8a6ea252e2aaf27a64394eaf49be1e228ed99b616384ad67d1b76f68bd9fd78633f49cd6ee6f1d56ca55c8c8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mx-platform-ruby (0.9.3)
4
+ mx-platform-ruby (0.11.1)
5
5
  faraday (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -11,7 +11,7 @@ GEM
11
11
  byebug (11.1.3)
12
12
  coderay (1.1.3)
13
13
  diff-lcs (1.5.0)
14
- faraday (1.9.3)
14
+ faraday (1.10.0)
15
15
  faraday-em_http (~> 1.0)
16
16
  faraday-em_synchrony (~> 1.0)
17
17
  faraday-excon (~> 1.1)
@@ -38,7 +38,7 @@ GEM
38
38
  method_source (1.0.0)
39
39
  multipart-post (2.1.1)
40
40
  parallel (1.21.0)
41
- parser (3.1.0.0)
41
+ parser (3.1.1.0)
42
42
  ast (~> 2.4.1)
43
43
  pry (0.13.1)
44
44
  coderay (~> 1.1)
@@ -50,19 +50,19 @@ GEM
50
50
  stringio
51
51
  rainbow (3.1.1)
52
52
  rake (13.0.6)
53
- rspec (3.10.0)
54
- rspec-core (~> 3.10.0)
55
- rspec-expectations (~> 3.10.0)
56
- rspec-mocks (~> 3.10.0)
57
- rspec-core (3.10.2)
58
- rspec-support (~> 3.10.0)
59
- rspec-expectations (3.10.2)
53
+ rspec (3.11.0)
54
+ rspec-core (~> 3.11.0)
55
+ rspec-expectations (~> 3.11.0)
56
+ rspec-mocks (~> 3.11.0)
57
+ rspec-core (3.11.0)
58
+ rspec-support (~> 3.11.0)
59
+ rspec-expectations (3.11.0)
60
60
  diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.10.0)
62
- rspec-mocks (3.10.3)
61
+ rspec-support (~> 3.11.0)
62
+ rspec-mocks (3.11.0)
63
63
  diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.10.0)
65
- rspec-support (3.10.3)
64
+ rspec-support (~> 3.11.0)
65
+ rspec-support (3.11.0)
66
66
  rubocop (0.66.0)
67
67
  jaro_winkler (~> 1.5.1)
68
68
  parallel (~> 1.10)
@@ -87,4 +87,4 @@ DEPENDENCIES
87
87
  rubocop (~> 0.66.0)
88
88
 
89
89
  BUNDLED WITH
90
- 2.3.6
90
+ 2.3.8