mx-platform-ruby 0.14.0 → 0.14.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/docs/WidgetRequest.md +2 -0
- data/lib/mx-platform-ruby/models/widget_request.rb +10 -1
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/openapi/config.yml +1 -1
- data/spec/models/widget_request_spec.rb +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 433528b1b5aa802f62f8345187a6f4d9783a00b3c92e8f5ec5f937d14a2dcf18
|
|
4
|
+
data.tar.gz: ce0b47e9279b848a531570ffb1c902b824ca826f91bfd213abf014072e345c9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c28f1da4a82b415201ec492aec2731db579c18cecb3bb7c367e54ba667183ef475b0f69e8015543cae6f56b3f8bc90c69592e80d728649672166f5618ecd8fd0
|
|
7
|
+
data.tar.gz: 4b7ae3ff948dbbdc7ca9e5f1276dc0216562e4578b6e4971063cd5b27773e5bde053ca114dfbc89bde7f8dbd271f84765abd2e6a017b42b785e4d5e129a2d03a
|
data/Gemfile.lock
CHANGED
data/docs/WidgetRequest.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
| **current_institution_code** | **String** | | [optional] |
|
|
10
10
|
| **current_institution_guid** | **String** | | [optional] |
|
|
11
11
|
| **current_member_guid** | **String** | | [optional] |
|
|
12
|
+
| **disable_background_agg** | **Boolean** | | [optional] |
|
|
12
13
|
| **disable_institution_search** | **Boolean** | | [optional] |
|
|
13
14
|
| **include_identity** | **Boolean** | | [optional] |
|
|
14
15
|
| **include_transactions** | **Boolean** | | [optional] |
|
|
@@ -31,6 +32,7 @@ instance = MxPlatformRuby::WidgetRequest.new(
|
|
|
31
32
|
current_institution_code: chase,
|
|
32
33
|
current_institution_guid: INS-f1a3285d-e855-b61f-6aa7-8ae575c0e0e9,
|
|
33
34
|
current_member_guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b,
|
|
35
|
+
disable_background_agg: false,
|
|
34
36
|
disable_institution_search: false,
|
|
35
37
|
include_identity: false,
|
|
36
38
|
include_transactions: true,
|
|
@@ -25,6 +25,8 @@ module MxPlatformRuby
|
|
|
25
25
|
|
|
26
26
|
attr_accessor :current_member_guid
|
|
27
27
|
|
|
28
|
+
attr_accessor :disable_background_agg
|
|
29
|
+
|
|
28
30
|
attr_accessor :disable_institution_search
|
|
29
31
|
|
|
30
32
|
attr_accessor :include_identity
|
|
@@ -53,6 +55,7 @@ module MxPlatformRuby
|
|
|
53
55
|
:'current_institution_code' => :'current_institution_code',
|
|
54
56
|
:'current_institution_guid' => :'current_institution_guid',
|
|
55
57
|
:'current_member_guid' => :'current_member_guid',
|
|
58
|
+
:'disable_background_agg' => :'disable_background_agg',
|
|
56
59
|
:'disable_institution_search' => :'disable_institution_search',
|
|
57
60
|
:'include_identity' => :'include_identity',
|
|
58
61
|
:'include_transactions' => :'include_transactions',
|
|
@@ -79,6 +82,7 @@ module MxPlatformRuby
|
|
|
79
82
|
:'current_institution_code' => :'String',
|
|
80
83
|
:'current_institution_guid' => :'String',
|
|
81
84
|
:'current_member_guid' => :'String',
|
|
85
|
+
:'disable_background_agg' => :'Boolean',
|
|
82
86
|
:'disable_institution_search' => :'Boolean',
|
|
83
87
|
:'include_identity' => :'Boolean',
|
|
84
88
|
:'include_transactions' => :'Boolean',
|
|
@@ -133,6 +137,10 @@ module MxPlatformRuby
|
|
|
133
137
|
self.current_member_guid = attributes[:'current_member_guid']
|
|
134
138
|
end
|
|
135
139
|
|
|
140
|
+
if attributes.key?(:'disable_background_agg')
|
|
141
|
+
self.disable_background_agg = attributes[:'disable_background_agg']
|
|
142
|
+
end
|
|
143
|
+
|
|
136
144
|
if attributes.key?(:'disable_institution_search')
|
|
137
145
|
self.disable_institution_search = attributes[:'disable_institution_search']
|
|
138
146
|
end
|
|
@@ -202,6 +210,7 @@ module MxPlatformRuby
|
|
|
202
210
|
current_institution_code == o.current_institution_code &&
|
|
203
211
|
current_institution_guid == o.current_institution_guid &&
|
|
204
212
|
current_member_guid == o.current_member_guid &&
|
|
213
|
+
disable_background_agg == o.disable_background_agg &&
|
|
205
214
|
disable_institution_search == o.disable_institution_search &&
|
|
206
215
|
include_identity == o.include_identity &&
|
|
207
216
|
include_transactions == o.include_transactions &&
|
|
@@ -223,7 +232,7 @@ module MxPlatformRuby
|
|
|
223
232
|
# Calculates hash code according to all attributes.
|
|
224
233
|
# @return [Integer] Hash code
|
|
225
234
|
def hash
|
|
226
|
-
[client_redirect_url, color_scheme, current_institution_code, current_institution_guid, current_member_guid, disable_institution_search, include_identity, include_transactions, is_mobile_webview, mode, oauth_referral_source, ui_message_version, ui_message_webview_url_scheme, update_credentials, widget_type].hash
|
|
235
|
+
[client_redirect_url, color_scheme, current_institution_code, current_institution_guid, current_member_guid, disable_background_agg, disable_institution_search, include_identity, include_transactions, is_mobile_webview, mode, oauth_referral_source, ui_message_version, ui_message_webview_url_scheme, update_credentials, widget_type].hash
|
|
227
236
|
end
|
|
228
237
|
|
|
229
238
|
# Builds the object from hash
|
data/openapi/config.yml
CHANGED
|
@@ -55,6 +55,12 @@ describe MxPlatformRuby::WidgetRequest do
|
|
|
55
55
|
end
|
|
56
56
|
end
|
|
57
57
|
|
|
58
|
+
describe 'test attribute "disable_background_agg"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
58
64
|
describe 'test attribute "disable_institution_search"' do
|
|
59
65
|
it 'should work' do
|
|
60
66
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mx-platform-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- MX
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|