mx-platform-ruby 0.6.2 → 0.6.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb8783a98048baebb9a74e9e4f2f0eb5e27a3a8e57ad028e5843c8c190d33f0f
4
- data.tar.gz: 70a1a34957163985b0e25034c2a215fee0a48748efd269f10fb53533299153e2
3
+ metadata.gz: 262c6362945060899351feb3aa49356bbfa5a234f917b2efa099f39188f4cc55
4
+ data.tar.gz: 3dfa97a2aa14f65c8f048f8c9e6a5bbc199bc3fef5c0ccbe58e7f11e38737aad
5
5
  SHA512:
6
- metadata.gz: 59363c9b7755d50d9ebdcb7f6607fd569788f17e864f0afeae9be52f51dfc7d3ceb9c5a010037beb919a086aeb51fdee574a41ce4ed7318c16afdf6f428416d2
7
- data.tar.gz: 9cd050f708773046cb265dac8ec4064011218c169e9d2a892f2207edb4a83d95bd03d9f6fdf52f74c884e36a5929be7e2e598dad403dcc115ad15956de58a6f6
6
+ metadata.gz: 986214ba1b32b491894c84294f03c7413a62b8fe145c485ac9965bd90285981fac989e1e8607ba48f32ecfc08e54ea8d01fe34d62be775143f43eeaa10036627
7
+ data.tar.gz: a0e99f8388aea551610df4241e34c57a0c4c035d6b3fd3a8da6edb5c37c1422a379846ef6ec411cb8e9ba67d3e9ca22cd74c6c99125dc5f9569a2af3fec3e2ab
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mx-platform-ruby (0.6.2)
4
+ mx-platform-ruby (0.6.3)
5
5
  faraday (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -34,7 +34,7 @@ GEM
34
34
  method_source (1.0.0)
35
35
  multipart-post (2.1.1)
36
36
  parallel (1.21.0)
37
- parser (3.0.2.0)
37
+ parser (3.0.3.1)
38
38
  ast (~> 2.4.1)
39
39
  pry (0.13.1)
40
40
  coderay (~> 1.1)
@@ -81,4 +81,4 @@ DEPENDENCIES
81
81
  rubocop (~> 0.66.0)
82
82
 
83
83
  BUNDLED WITH
84
- 2.2.30
84
+ 2.2.32
data/README.md CHANGED
@@ -1,12 +1,16 @@
1
- *This project is currently in **Beta**. Please open up an issue [here](https://github.com/mxenabled/mx-platform-ruby/issues) to report issues using the MX Platform API Ruby Library.*
1
+ *This project is currently in **Beta**. Please open up an issue [here](https://github.com/mxenabled/mx-platform-ruby/issues) to report issues using the MX Platform Ruby library.*
2
2
 
3
- *This project was automatically generated by the [OpenAPI Generator](https://openapi-generator.tech).*
3
+ # MX Platform Ruby
4
4
 
5
- # MX Platform Ruby - v0.6.2
5
+ The [MX Platform API](https://www.mx.com/products/platform-api) is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
6
6
 
7
- The Ruby gem for the MX Platform API.
7
+ ## Documentation
8
+
9
+ Examples for the API endpoints can be found [here.](https://docs.mx.com/api)
10
+
11
+ ## Requirements
8
12
 
9
- The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
13
+ - Ruby >= 2.6
10
14
 
11
15
  ## Installation
12
16
 
@@ -18,31 +22,28 @@ gem 'mx-platform-ruby'
18
22
 
19
23
  And then execute:
20
24
  ```shell
21
- $ bundle
25
+ bundle
22
26
  ```
23
27
 
24
28
  Or install it yourself with:
25
29
  ```shell
26
- $ gem install mx-platform-ruby
30
+ gem install mx-platform-ruby
27
31
  ```
28
32
 
29
33
  ## Getting Started
30
34
 
31
35
  In order to make requests, you will need to [sign up](https://dashboard.mx.com/sign_up) for the MX Platform API and get a `Client ID` and `API Key`.
32
36
 
33
- Please follow the [installation](#installation) procedure and then run the following code:
34
-
37
+ Please follow the [installation](#installation) procedure and then run the following code to create your first User:
35
38
  ```ruby
36
- # Load the gem
37
39
  require 'mx-platform-ruby'
38
40
 
39
- # setup authorization
40
41
  MxPlatformRuby.configure do |config|
41
- # Configure HTTP basic authorization
42
- config.username = 'Your Client ID from https://dashboard.mx.com'
43
- config.password = 'Your API Key from https://dashboard.mx.com'
42
+ # Configure with your Client ID/API Key from https://dashboard.mx.com
43
+ config.username = 'Your Client ID'
44
+ config.password = 'Your API Key'
44
45
 
45
- # Configure server. 0 for production, 1 for development
46
+ # Configure environment. 0 for production, 1 for development
46
47
  config.server_index = 1
47
48
  end
48
49
 
@@ -54,7 +55,6 @@ user_create_request_body = MxPlatformRuby::UserCreateRequestBody.new(
54
55
  )
55
56
 
56
57
  begin
57
- # Create user
58
58
  result = api_instance.create_user(user_create_request_body)
59
59
  p result
60
60
  rescue MxPlatformRuby::ApiError => e
@@ -62,6 +62,19 @@ rescue MxPlatformRuby::ApiError => e
62
62
  end
63
63
  ```
64
64
 
65
- ## Documentation
65
+ ## Development
66
+
67
+ This project was generated by the [OpenAPI Generator](https://openapi-generator.tech). To generate this library, verify you have the latest version of the `openapi-generator-cli` found [here.](https://github.com/OpenAPITools/openapi-generator#17---npm)
68
+
69
+ Running the following command in this repo's directory will generate this library using the [MX Platform API OpenAPI spec](https://github.com/mxenabled/openapi/blob/master/openapi/mx_platform_api_beta.yml) with our [configuration and templates.](https://github.com/mxenabled/mx-platform-ruby/tree/master/openapi)
70
+ ```shell
71
+ openapi-generator-cli generate \
72
+ -i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/mx_platform_api_beta.yml \
73
+ -g ruby \
74
+ -c ./openapi/config.yml \
75
+ -t ./openapi/templates
76
+ ```
77
+
78
+ ## Contributing
66
79
 
67
- Additional examples for the API endpoints can be found [here](docs/MxPlatformApi.md).
80
+ Please [open an issue](https://github.com/mxenabled/mx-platform-java/issues) or [submit a pull request.](https://github.com/mxenabled/mx-platform-java/pulls)
@@ -5,8 +5,12 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **amount** | **Float** | | [optional] |
8
+ | **categorized_by** | **Integer** | | [optional] |
8
9
  | **category** | **String** | | [optional] |
10
+ | **category_guid** | **String** | | [optional] |
11
+ | **described_by** | **Integer** | | [optional] |
9
12
  | **description** | **String** | | [optional] |
13
+ | **extended_transaction_type** | **String** | | [optional] |
10
14
  | **id** | **String** | | [optional] |
11
15
  | **is_bill_pay** | **Boolean** | | [optional] |
12
16
  | **is_direct_deposit** | **Boolean** | | [optional] |
@@ -16,8 +20,11 @@
16
20
  | **is_international** | **Boolean** | | [optional] |
17
21
  | **is_overdraft_fee** | **Boolean** | | [optional] |
18
22
  | **is_payroll_advance** | **Boolean** | | [optional] |
23
+ | **is_subscription** | **Boolean** | | [optional] |
24
+ | **memo** | **String** | | [optional] |
19
25
  | **merchant_category_code** | **Integer** | | [optional] |
20
26
  | **merchant_guid** | **String** | | [optional] |
27
+ | **merchant_location_guid** | **String** | | [optional] |
21
28
  | **original_description** | **String** | | [optional] |
22
29
  | **type** | **String** | | [optional] |
23
30
 
@@ -28,8 +35,12 @@ require 'mx-platform-ruby'
28
35
 
29
36
  instance = MxPlatformRuby::EnhanceTransactionResponse.new(
30
37
  amount: 21.33,
31
- category: Fast Food,
32
- description: IN-N-OUT BURGER,
38
+ categorized_by: 13,
39
+ category: Rental Car & Taxi,
40
+ category_guid: CAT-9588eaad-90a4-bb5c-66c8-1812503d0db8,
41
+ described_by: 6,
42
+ description: Uber,
43
+ extended_transaction_type: partner_transaction_type,
33
44
  id: ID-123,
34
45
  is_bill_pay: false,
35
46
  is_direct_deposit: false,
@@ -39,9 +50,12 @@ instance = MxPlatformRuby::EnhanceTransactionResponse.new(
39
50
  is_international: false,
40
51
  is_overdraft_fee: false,
41
52
  is_payroll_advance: false,
53
+ is_subscription: false,
54
+ memo: Additional-information*on_transaction,
42
55
  merchant_category_code: 5411,
43
- merchant_guid: MCH-7ed79542-884d-2b1b-dd74-501c5cc9d25b,
44
- original_description: IN-N-OUT BURGER,
56
+ merchant_guid: MCH-14f25b63-ef47-a38e-b2b6-d02b280b6e4e,
57
+ merchant_location_guid: MCL-00024e59-18b5-4d79-b879-2a7896726fea,
58
+ original_description: ubr* pending.uber.com,
45
59
  type: DEBIT
46
60
  )
47
61
  ```
@@ -6,7 +6,9 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **amount** | **Float** | | [optional] |
8
8
  | **description** | **String** | | |
9
+ | **extended_transaction_type** | **String** | | [optional] |
9
10
  | **id** | **String** | | |
11
+ | **memo** | **String** | | [optional] |
10
12
  | **merchant_category_code** | **Integer** | | [optional] |
11
13
  | **type** | **String** | | [optional] |
12
14
 
@@ -17,8 +19,10 @@ require 'mx-platform-ruby'
17
19
 
18
20
  instance = MxPlatformRuby::EnhanceTransactionsRequest.new(
19
21
  amount: 21.33,
20
- description: IN-N-OUT BURGER,
22
+ description: ubr* pending.uber.com,
23
+ extended_transaction_type: partner_transaction_type,
21
24
  id: ID-123,
25
+ memo: Additional-information*on_transaction,
22
26
  merchant_category_code: 123,
23
27
  type: DEBIT
24
28
  )
@@ -8,11 +8,13 @@
8
8
  | **account_id** | **String** | | [optional] |
9
9
  | **amount** | **Float** | | [optional] |
10
10
  | **category** | **String** | | [optional] |
11
+ | **category_guid** | **String** | | [optional] |
11
12
  | **check_number_string** | **String** | | [optional] |
12
13
  | **created_at** | **String** | | [optional] |
13
14
  | **currency_code** | **String** | | [optional] |
14
15
  | **date** | **String** | | [optional] |
15
16
  | **description** | **String** | | [optional] |
17
+ | **extended_transaction_type** | **String** | | [optional] |
16
18
  | **guid** | **String** | | [optional] |
17
19
  | **id** | **String** | | [optional] |
18
20
  | **is_bill_pay** | **Boolean** | | [optional] |
@@ -56,11 +58,13 @@ instance = MxPlatformRuby::TransactionResponse.new(
56
58
  account_id: account123,
57
59
  amount: 61.11,
58
60
  category: Groceries,
61
+ category_guid: CAT-9588eaad-90a4-bb5c-66c8-1812503d0db8,
59
62
  check_number_string: 6812,
60
63
  created_at: 2016-10-06T09:43:42.000Z,
61
64
  currency_code: USD,
62
65
  date: 2013-09-23T00:00:00.000Z,
63
66
  description: Whole foods,
67
+ extended_transaction_type: partner_transaction_type,
64
68
  guid: TRN-265abee9-889b-af6a-c69b-25157db2bdd9,
65
69
  id: transaction-265abee9-889b-af6a-c69b-25157db2bdd9,
66
70
  is_bill_pay: false,
@@ -17,10 +17,18 @@ module MxPlatformRuby
17
17
  class EnhanceTransactionResponse
18
18
  attr_accessor :amount
19
19
 
20
+ attr_accessor :categorized_by
21
+
20
22
  attr_accessor :category
21
23
 
24
+ attr_accessor :category_guid
25
+
26
+ attr_accessor :described_by
27
+
22
28
  attr_accessor :description
23
29
 
30
+ attr_accessor :extended_transaction_type
31
+
24
32
  attr_accessor :id
25
33
 
26
34
  attr_accessor :is_bill_pay
@@ -39,10 +47,16 @@ module MxPlatformRuby
39
47
 
40
48
  attr_accessor :is_payroll_advance
41
49
 
50
+ attr_accessor :is_subscription
51
+
52
+ attr_accessor :memo
53
+
42
54
  attr_accessor :merchant_category_code
43
55
 
44
56
  attr_accessor :merchant_guid
45
57
 
58
+ attr_accessor :merchant_location_guid
59
+
46
60
  attr_accessor :original_description
47
61
 
48
62
  attr_accessor :type
@@ -51,8 +65,12 @@ module MxPlatformRuby
51
65
  def self.attribute_map
52
66
  {
53
67
  :'amount' => :'amount',
68
+ :'categorized_by' => :'categorized_by',
54
69
  :'category' => :'category',
70
+ :'category_guid' => :'category_guid',
71
+ :'described_by' => :'described_by',
55
72
  :'description' => :'description',
73
+ :'extended_transaction_type' => :'extended_transaction_type',
56
74
  :'id' => :'id',
57
75
  :'is_bill_pay' => :'is_bill_pay',
58
76
  :'is_direct_deposit' => :'is_direct_deposit',
@@ -62,8 +80,11 @@ module MxPlatformRuby
62
80
  :'is_international' => :'is_international',
63
81
  :'is_overdraft_fee' => :'is_overdraft_fee',
64
82
  :'is_payroll_advance' => :'is_payroll_advance',
83
+ :'is_subscription' => :'is_subscription',
84
+ :'memo' => :'memo',
65
85
  :'merchant_category_code' => :'merchant_category_code',
66
86
  :'merchant_guid' => :'merchant_guid',
87
+ :'merchant_location_guid' => :'merchant_location_guid',
67
88
  :'original_description' => :'original_description',
68
89
  :'type' => :'type'
69
90
  }
@@ -78,8 +99,12 @@ module MxPlatformRuby
78
99
  def self.openapi_types
79
100
  {
80
101
  :'amount' => :'Float',
102
+ :'categorized_by' => :'Integer',
81
103
  :'category' => :'String',
104
+ :'category_guid' => :'String',
105
+ :'described_by' => :'Integer',
82
106
  :'description' => :'String',
107
+ :'extended_transaction_type' => :'String',
83
108
  :'id' => :'String',
84
109
  :'is_bill_pay' => :'Boolean',
85
110
  :'is_direct_deposit' => :'Boolean',
@@ -89,8 +114,11 @@ module MxPlatformRuby
89
114
  :'is_international' => :'Boolean',
90
115
  :'is_overdraft_fee' => :'Boolean',
91
116
  :'is_payroll_advance' => :'Boolean',
117
+ :'is_subscription' => :'Boolean',
118
+ :'memo' => :'String',
92
119
  :'merchant_category_code' => :'Integer',
93
120
  :'merchant_guid' => :'String',
121
+ :'merchant_location_guid' => :'String',
94
122
  :'original_description' => :'String',
95
123
  :'type' => :'String'
96
124
  }
@@ -100,8 +128,12 @@ module MxPlatformRuby
100
128
  def self.openapi_nullable
101
129
  Set.new([
102
130
  :'amount',
131
+ :'categorized_by',
103
132
  :'category',
133
+ :'category_guid',
134
+ :'described_by',
104
135
  :'description',
136
+ :'extended_transaction_type',
105
137
  :'id',
106
138
  :'is_bill_pay',
107
139
  :'is_direct_deposit',
@@ -111,7 +143,10 @@ module MxPlatformRuby
111
143
  :'is_international',
112
144
  :'is_overdraft_fee',
113
145
  :'is_payroll_advance',
146
+ :'is_subscription',
147
+ :'memo',
114
148
  :'merchant_category_code',
149
+ :'merchant_location_guid',
115
150
  :'original_description',
116
151
  :'type'
117
152
  ])
@@ -136,14 +171,30 @@ module MxPlatformRuby
136
171
  self.amount = attributes[:'amount']
137
172
  end
138
173
 
174
+ if attributes.key?(:'categorized_by')
175
+ self.categorized_by = attributes[:'categorized_by']
176
+ end
177
+
139
178
  if attributes.key?(:'category')
140
179
  self.category = attributes[:'category']
141
180
  end
142
181
 
182
+ if attributes.key?(:'category_guid')
183
+ self.category_guid = attributes[:'category_guid']
184
+ end
185
+
186
+ if attributes.key?(:'described_by')
187
+ self.described_by = attributes[:'described_by']
188
+ end
189
+
143
190
  if attributes.key?(:'description')
144
191
  self.description = attributes[:'description']
145
192
  end
146
193
 
194
+ if attributes.key?(:'extended_transaction_type')
195
+ self.extended_transaction_type = attributes[:'extended_transaction_type']
196
+ end
197
+
147
198
  if attributes.key?(:'id')
148
199
  self.id = attributes[:'id']
149
200
  end
@@ -180,6 +231,14 @@ module MxPlatformRuby
180
231
  self.is_payroll_advance = attributes[:'is_payroll_advance']
181
232
  end
182
233
 
234
+ if attributes.key?(:'is_subscription')
235
+ self.is_subscription = attributes[:'is_subscription']
236
+ end
237
+
238
+ if attributes.key?(:'memo')
239
+ self.memo = attributes[:'memo']
240
+ end
241
+
183
242
  if attributes.key?(:'merchant_category_code')
184
243
  self.merchant_category_code = attributes[:'merchant_category_code']
185
244
  end
@@ -188,6 +247,10 @@ module MxPlatformRuby
188
247
  self.merchant_guid = attributes[:'merchant_guid']
189
248
  end
190
249
 
250
+ if attributes.key?(:'merchant_location_guid')
251
+ self.merchant_location_guid = attributes[:'merchant_location_guid']
252
+ end
253
+
191
254
  if attributes.key?(:'original_description')
192
255
  self.original_description = attributes[:'original_description']
193
256
  end
@@ -216,8 +279,12 @@ module MxPlatformRuby
216
279
  return true if self.equal?(o)
217
280
  self.class == o.class &&
218
281
  amount == o.amount &&
282
+ categorized_by == o.categorized_by &&
219
283
  category == o.category &&
284
+ category_guid == o.category_guid &&
285
+ described_by == o.described_by &&
220
286
  description == o.description &&
287
+ extended_transaction_type == o.extended_transaction_type &&
221
288
  id == o.id &&
222
289
  is_bill_pay == o.is_bill_pay &&
223
290
  is_direct_deposit == o.is_direct_deposit &&
@@ -227,8 +294,11 @@ module MxPlatformRuby
227
294
  is_international == o.is_international &&
228
295
  is_overdraft_fee == o.is_overdraft_fee &&
229
296
  is_payroll_advance == o.is_payroll_advance &&
297
+ is_subscription == o.is_subscription &&
298
+ memo == o.memo &&
230
299
  merchant_category_code == o.merchant_category_code &&
231
300
  merchant_guid == o.merchant_guid &&
301
+ merchant_location_guid == o.merchant_location_guid &&
232
302
  original_description == o.original_description &&
233
303
  type == o.type
234
304
  end
@@ -242,7 +312,7 @@ module MxPlatformRuby
242
312
  # Calculates hash code according to all attributes.
243
313
  # @return [Integer] Hash code
244
314
  def hash
245
- [amount, category, description, id, is_bill_pay, is_direct_deposit, is_expense, is_fee, is_income, is_international, is_overdraft_fee, is_payroll_advance, merchant_category_code, merchant_guid, original_description, type].hash
315
+ [amount, categorized_by, category, category_guid, described_by, description, extended_transaction_type, id, is_bill_pay, is_direct_deposit, is_expense, is_fee, is_income, is_international, is_overdraft_fee, is_payroll_advance, is_subscription, memo, merchant_category_code, merchant_guid, merchant_location_guid, original_description, type].hash
246
316
  end
247
317
 
248
318
  # Builds the object from hash
@@ -19,8 +19,12 @@ module MxPlatformRuby
19
19
 
20
20
  attr_accessor :description
21
21
 
22
+ attr_accessor :extended_transaction_type
23
+
22
24
  attr_accessor :id
23
25
 
26
+ attr_accessor :memo
27
+
24
28
  attr_accessor :merchant_category_code
25
29
 
26
30
  attr_accessor :type
@@ -30,7 +34,9 @@ module MxPlatformRuby
30
34
  {
31
35
  :'amount' => :'amount',
32
36
  :'description' => :'description',
37
+ :'extended_transaction_type' => :'extended_transaction_type',
33
38
  :'id' => :'id',
39
+ :'memo' => :'memo',
34
40
  :'merchant_category_code' => :'merchant_category_code',
35
41
  :'type' => :'type'
36
42
  }
@@ -46,7 +52,9 @@ module MxPlatformRuby
46
52
  {
47
53
  :'amount' => :'Float',
48
54
  :'description' => :'String',
55
+ :'extended_transaction_type' => :'String',
49
56
  :'id' => :'String',
57
+ :'memo' => :'String',
50
58
  :'merchant_category_code' => :'Integer',
51
59
  :'type' => :'String'
52
60
  }
@@ -81,10 +89,18 @@ module MxPlatformRuby
81
89
  self.description = attributes[:'description']
82
90
  end
83
91
 
92
+ if attributes.key?(:'extended_transaction_type')
93
+ self.extended_transaction_type = attributes[:'extended_transaction_type']
94
+ end
95
+
84
96
  if attributes.key?(:'id')
85
97
  self.id = attributes[:'id']
86
98
  end
87
99
 
100
+ if attributes.key?(:'memo')
101
+ self.memo = attributes[:'memo']
102
+ end
103
+
88
104
  if attributes.key?(:'merchant_category_code')
89
105
  self.merchant_category_code = attributes[:'merchant_category_code']
90
106
  end
@@ -124,7 +140,9 @@ module MxPlatformRuby
124
140
  self.class == o.class &&
125
141
  amount == o.amount &&
126
142
  description == o.description &&
143
+ extended_transaction_type == o.extended_transaction_type &&
127
144
  id == o.id &&
145
+ memo == o.memo &&
128
146
  merchant_category_code == o.merchant_category_code &&
129
147
  type == o.type
130
148
  end
@@ -138,7 +156,7 @@ module MxPlatformRuby
138
156
  # Calculates hash code according to all attributes.
139
157
  # @return [Integer] Hash code
140
158
  def hash
141
- [amount, description, id, merchant_category_code, type].hash
159
+ [amount, description, extended_transaction_type, id, memo, merchant_category_code, type].hash
142
160
  end
143
161
 
144
162
  # Builds the object from hash
@@ -23,6 +23,8 @@ module MxPlatformRuby
23
23
 
24
24
  attr_accessor :category
25
25
 
26
+ attr_accessor :category_guid
27
+
26
28
  attr_accessor :check_number_string
27
29
 
28
30
  attr_accessor :created_at
@@ -33,6 +35,8 @@ module MxPlatformRuby
33
35
 
34
36
  attr_accessor :description
35
37
 
38
+ attr_accessor :extended_transaction_type
39
+
36
40
  attr_accessor :guid
37
41
 
38
42
  attr_accessor :id
@@ -104,11 +108,13 @@ module MxPlatformRuby
104
108
  :'account_id' => :'account_id',
105
109
  :'amount' => :'amount',
106
110
  :'category' => :'category',
111
+ :'category_guid' => :'category_guid',
107
112
  :'check_number_string' => :'check_number_string',
108
113
  :'created_at' => :'created_at',
109
114
  :'currency_code' => :'currency_code',
110
115
  :'date' => :'date',
111
116
  :'description' => :'description',
117
+ :'extended_transaction_type' => :'extended_transaction_type',
112
118
  :'guid' => :'guid',
113
119
  :'id' => :'id',
114
120
  :'is_bill_pay' => :'is_bill_pay',
@@ -156,11 +162,13 @@ module MxPlatformRuby
156
162
  :'account_id' => :'String',
157
163
  :'amount' => :'Float',
158
164
  :'category' => :'String',
165
+ :'category_guid' => :'String',
159
166
  :'check_number_string' => :'String',
160
167
  :'created_at' => :'String',
161
168
  :'currency_code' => :'String',
162
169
  :'date' => :'String',
163
170
  :'description' => :'String',
171
+ :'extended_transaction_type' => :'String',
164
172
  :'guid' => :'String',
165
173
  :'id' => :'String',
166
174
  :'is_bill_pay' => :'Boolean',
@@ -202,11 +210,13 @@ module MxPlatformRuby
202
210
  :'account_id',
203
211
  :'amount',
204
212
  :'category',
213
+ :'category_guid',
205
214
  :'check_number_string',
206
215
  :'created_at',
207
216
  :'currency_code',
208
217
  :'date',
209
218
  :'description',
219
+ :'extended_transaction_type',
210
220
  :'id',
211
221
  :'is_bill_pay',
212
222
  :'is_direct_deposit',
@@ -268,6 +278,10 @@ module MxPlatformRuby
268
278
  self.category = attributes[:'category']
269
279
  end
270
280
 
281
+ if attributes.key?(:'category_guid')
282
+ self.category_guid = attributes[:'category_guid']
283
+ end
284
+
271
285
  if attributes.key?(:'check_number_string')
272
286
  self.check_number_string = attributes[:'check_number_string']
273
287
  end
@@ -288,6 +302,10 @@ module MxPlatformRuby
288
302
  self.description = attributes[:'description']
289
303
  end
290
304
 
305
+ if attributes.key?(:'extended_transaction_type')
306
+ self.extended_transaction_type = attributes[:'extended_transaction_type']
307
+ end
308
+
291
309
  if attributes.key?(:'guid')
292
310
  self.guid = attributes[:'guid']
293
311
  end
@@ -439,11 +457,13 @@ module MxPlatformRuby
439
457
  account_id == o.account_id &&
440
458
  amount == o.amount &&
441
459
  category == o.category &&
460
+ category_guid == o.category_guid &&
442
461
  check_number_string == o.check_number_string &&
443
462
  created_at == o.created_at &&
444
463
  currency_code == o.currency_code &&
445
464
  date == o.date &&
446
465
  description == o.description &&
466
+ extended_transaction_type == o.extended_transaction_type &&
447
467
  guid == o.guid &&
448
468
  id == o.id &&
449
469
  is_bill_pay == o.is_bill_pay &&
@@ -487,7 +507,7 @@ module MxPlatformRuby
487
507
  # Calculates hash code according to all attributes.
488
508
  # @return [Integer] Hash code
489
509
  def hash
490
- [account_guid, account_id, amount, category, check_number_string, created_at, currency_code, date, description, guid, id, is_bill_pay, is_direct_deposit, is_expense, is_fee, is_income, is_international, is_overdraft_fee, is_payroll_advance, is_recurring, is_subscription, latitude, localized_description, localized_memo, longitude, member_guid, member_is_managed_by_user, memo, merchant_category_code, merchant_guid, merchant_location_guid, metadata, original_description, posted_at, status, top_level_category, transacted_at, type, updated_at, user_guid, user_id].hash
510
+ [account_guid, account_id, amount, category, category_guid, check_number_string, created_at, currency_code, date, description, extended_transaction_type, guid, id, is_bill_pay, is_direct_deposit, is_expense, is_fee, is_income, is_international, is_overdraft_fee, is_payroll_advance, is_recurring, is_subscription, latitude, localized_description, localized_memo, longitude, member_guid, member_is_managed_by_user, memo, merchant_category_code, merchant_guid, merchant_location_guid, metadata, original_description, posted_at, status, top_level_category, transacted_at, type, updated_at, user_guid, user_id].hash
491
511
  end
492
512
 
493
513
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.3.0
11
11
  =end
12
12
 
13
13
  module MxPlatformRuby
14
- VERSION = '0.6.2'
14
+ VERSION = '0.6.3'
15
15
  end
data/openapi/config.yml CHANGED
@@ -6,6 +6,6 @@ gemHomepage: "https://github.com/mxenabled/mx-platform-ruby"
6
6
  gemLicense: "MIT"
7
7
  gemName: "mx-platform-ruby"
8
8
  gemRequiredRubyVersion: ">= 2.6"
9
- gemVersion: "0.6.2"
9
+ gemVersion: "0.6.3"
10
10
  library: "faraday"
11
11
  moduleName: "MxPlatformRuby"
@@ -1,14 +1,16 @@
1
- *This project is currently in **Beta**. Please open up an issue [here](https://github.com/mxenabled/mx-platform-ruby/issues) to report issues using the MX Platform API Ruby Library.*
1
+ *This project is currently in **Beta**. Please open up an issue [here](https://github.com/mxenabled/mx-platform-ruby/issues) to report issues using the MX Platform Ruby library.*
2
2
 
3
- *This project was automatically generated by the [OpenAPI Generator](https://openapi-generator.tech).*
3
+ # MX Platform Ruby
4
4
 
5
- # MX Platform Ruby - v{{gemVersion}}
5
+ The [MX Platform API](https://www.mx.com/products/platform-api) is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.
6
6
 
7
- The Ruby gem for the {{appName}}.
7
+ ## Documentation
8
+
9
+ Examples for the API endpoints can be found [here.](https://docs.mx.com/api)
10
+
11
+ ## Requirements
8
12
 
9
- {{#appDescriptionWithNewLines}}
10
- {{{.}}}
11
- {{/appDescriptionWithNewLines}}
13
+ - Ruby >= 2.6
12
14
 
13
15
  ## Installation
14
16
 
@@ -20,31 +22,28 @@ gem 'mx-platform-ruby'
20
22
 
21
23
  And then execute:
22
24
  ```shell
23
- $ bundle
25
+ bundle
24
26
  ```
25
27
 
26
28
  Or install it yourself with:
27
29
  ```shell
28
- $ gem install mx-platform-ruby
30
+ gem install mx-platform-ruby
29
31
  ```
30
32
 
31
33
  ## Getting Started
32
34
 
33
35
  In order to make requests, you will need to [sign up](https://dashboard.mx.com/sign_up) for the MX Platform API and get a `Client ID` and `API Key`.
34
36
 
35
- Please follow the [installation](#installation) procedure and then run the following code:
36
-
37
+ Please follow the [installation](#installation) procedure and then run the following code to create your first User:
37
38
  ```ruby
38
- # Load the gem
39
39
  require 'mx-platform-ruby'
40
40
 
41
- # setup authorization
42
41
  MxPlatformRuby.configure do |config|
43
- # Configure HTTP basic authorization
44
- config.username = 'Your Client ID from https://dashboard.mx.com'
45
- config.password = 'Your API Key from https://dashboard.mx.com'
42
+ # Configure with your Client ID/API Key from https://dashboard.mx.com
43
+ config.username = 'Your Client ID'
44
+ config.password = 'Your API Key'
46
45
 
47
- # Configure server. 0 for production, 1 for development
46
+ # Configure environment. 0 for production, 1 for development
48
47
  config.server_index = 1
49
48
  end
50
49
 
@@ -56,7 +55,6 @@ user_create_request_body = MxPlatformRuby::UserCreateRequestBody.new(
56
55
  )
57
56
 
58
57
  begin
59
- # Create user
60
58
  result = api_instance.create_user(user_create_request_body)
61
59
  p result
62
60
  rescue MxPlatformRuby::ApiError => e
@@ -64,6 +62,19 @@ rescue MxPlatformRuby::ApiError => e
64
62
  end
65
63
  ```
66
64
 
67
- ## Documentation
65
+ ## Development
66
+
67
+ This project was generated by the [OpenAPI Generator](https://openapi-generator.tech). To generate this library, verify you have the latest version of the `openapi-generator-cli` found [here.](https://github.com/OpenAPITools/openapi-generator#17---npm)
68
+
69
+ Running the following command in this repo's directory will generate this library using the [MX Platform API OpenAPI spec](https://github.com/mxenabled/openapi/blob/master/openapi/mx_platform_api_beta.yml) with our [configuration and templates.](https://github.com/mxenabled/mx-platform-ruby/tree/master/openapi)
70
+ ```shell
71
+ openapi-generator-cli generate \
72
+ -i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/mx_platform_api_beta.yml \
73
+ -g ruby \
74
+ -c ./openapi/config.yml \
75
+ -t ./openapi/templates
76
+ ```
77
+
78
+ ## Contributing
68
79
 
69
- Additional examples for the API endpoints can be found [here](docs/MxPlatformApi.md).
80
+ Please [open an issue](https://github.com/mxenabled/mx-platform-java/issues) or [submit a pull request.](https://github.com/mxenabled/mx-platform-java/pulls)
@@ -31,18 +31,42 @@ describe MxPlatformRuby::EnhanceTransactionResponse do
31
31
  end
32
32
  end
33
33
 
34
+ describe 'test attribute "categorized_by"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
34
40
  describe 'test attribute "category"' do
35
41
  it 'should work' do
36
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
43
  end
38
44
  end
39
45
 
46
+ describe 'test attribute "category_guid"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "described_by"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
40
58
  describe 'test attribute "description"' do
41
59
  it 'should work' do
42
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
61
  end
44
62
  end
45
63
 
64
+ describe 'test attribute "extended_transaction_type"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
46
70
  describe 'test attribute "id"' do
47
71
  it 'should work' do
48
72
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -97,6 +121,18 @@ describe MxPlatformRuby::EnhanceTransactionResponse do
97
121
  end
98
122
  end
99
123
 
124
+ describe 'test attribute "is_subscription"' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
+ end
128
+ end
129
+
130
+ describe 'test attribute "memo"' do
131
+ it 'should work' do
132
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
133
+ end
134
+ end
135
+
100
136
  describe 'test attribute "merchant_category_code"' do
101
137
  it 'should work' do
102
138
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -109,6 +145,12 @@ describe MxPlatformRuby::EnhanceTransactionResponse do
109
145
  end
110
146
  end
111
147
 
148
+ describe 'test attribute "merchant_location_guid"' do
149
+ it 'should work' do
150
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
151
+ end
152
+ end
153
+
112
154
  describe 'test attribute "original_description"' do
113
155
  it 'should work' do
114
156
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -37,12 +37,24 @@ describe MxPlatformRuby::EnhanceTransactionsRequest do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "extended_transaction_type"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  describe 'test attribute "id"' do
41
47
  it 'should work' do
42
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
49
  end
44
50
  end
45
51
 
52
+ describe 'test attribute "memo"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
46
58
  describe 'test attribute "merchant_category_code"' do
47
59
  it 'should work' do
48
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -49,6 +49,12 @@ describe MxPlatformRuby::TransactionResponse do
49
49
  end
50
50
  end
51
51
 
52
+ describe 'test attribute "category_guid"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
52
58
  describe 'test attribute "check_number_string"' do
53
59
  it 'should work' do
54
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -79,6 +85,12 @@ describe MxPlatformRuby::TransactionResponse do
79
85
  end
80
86
  end
81
87
 
88
+ describe 'test attribute "extended_transaction_type"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
82
94
  describe 'test attribute "guid"' do
83
95
  it 'should work' do
84
96
  # 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.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-05 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -427,112 +427,112 @@ test_files:
427
427
  - spec/api/mx_platform_api_spec.rb
428
428
  - spec/api_client_spec.rb
429
429
  - spec/configuration_spec.rb
430
+ - spec/models/tag_update_request_body_spec.rb
431
+ - spec/models/enhance_transaction_response_spec.rb
432
+ - spec/models/enhance_transactions_response_body_spec.rb
433
+ - spec/models/user_response_body_spec.rb
434
+ - spec/models/account_update_request_spec.rb
435
+ - spec/models/tagging_create_request_spec.rb
436
+ - spec/models/member_update_request_spec.rb
437
+ - spec/models/user_update_request_body_spec.rb
438
+ - spec/models/transaction_update_request_spec.rb
439
+ - spec/models/institutions_response_body_spec.rb
440
+ - spec/models/transactions_response_body_spec.rb
441
+ - spec/models/transaction_update_request_body_spec.rb
442
+ - spec/models/member_status_response_body_spec.rb
443
+ - spec/models/category_response_spec.rb
444
+ - spec/models/option_response_spec.rb
445
+ - spec/models/tag_response_body_spec.rb
446
+ - spec/models/pagination_response_spec.rb
430
447
  - spec/models/transaction_rule_response_body_spec.rb
431
- - spec/models/merchant_response_body_spec.rb
432
- - spec/models/managed_transaction_create_request_body_spec.rb
433
- - spec/models/tag_create_request_spec.rb
448
+ - spec/models/categories_response_body_spec.rb
449
+ - spec/models/members_response_body_spec.rb
434
450
  - spec/models/member_create_request_body_spec.rb
435
- - spec/models/category_response_body_spec.rb
436
- - spec/models/transaction_rule_update_request_spec.rb
437
- - spec/models/account_response_body_spec.rb
438
- - spec/models/connect_widget_response_body_spec.rb
439
- - spec/models/user_update_request_spec.rb
440
- - spec/models/merchant_location_response_body_spec.rb
441
- - spec/models/connect_widget_response_spec.rb
442
- - spec/models/widget_request_spec.rb
443
- - spec/models/tag_response_spec.rb
444
- - spec/models/managed_member_create_request_spec.rb
445
- - spec/models/account_numbers_response_body_spec.rb
446
- - spec/models/member_response_body_spec.rb
447
- - spec/models/managed_member_update_request_spec.rb
448
- - spec/models/transaction_rule_update_request_body_spec.rb
449
- - spec/models/transaction_rules_response_body_spec.rb
450
- - spec/models/institutions_response_body_spec.rb
451
- - spec/models/member_status_response_spec.rb
452
- - spec/models/category_update_request_spec.rb
451
+ - spec/models/credential_request_spec.rb
453
452
  - spec/models/category_create_request_spec.rb
454
- - spec/models/transaction_update_request_spec.rb
455
453
  - spec/models/statement_response_spec.rb
456
- - spec/models/tags_response_body_spec.rb
457
- - spec/models/managed_transaction_update_request_body_spec.rb
458
- - spec/models/tagging_response_spec.rb
459
- - spec/models/member_resume_request_spec.rb
460
- - spec/models/managed_account_update_request_spec.rb
461
- - spec/models/widget_response_body_spec.rb
462
- - spec/models/widget_response_spec.rb
463
- - spec/models/holding_response_body_spec.rb
464
- - spec/models/tagging_create_request_spec.rb
465
- - spec/models/o_auth_window_response_body_spec.rb
466
- - spec/models/institution_response_body_spec.rb
467
454
  - spec/models/managed_member_create_request_body_spec.rb
468
- - spec/models/user_update_request_body_spec.rb
455
+ - spec/models/credential_response_spec.rb
456
+ - spec/models/merchant_response_body_spec.rb
457
+ - spec/models/credentials_response_body_spec.rb
458
+ - spec/models/category_update_request_spec.rb
459
+ - spec/models/connect_widget_request_body_spec.rb
460
+ - spec/models/account_numbers_response_body_spec.rb
461
+ - spec/models/member_status_response_spec.rb
469
462
  - spec/models/holdings_response_body_spec.rb
470
- - spec/models/enhance_transaction_response_spec.rb
463
+ - spec/models/holding_response_body_spec.rb
464
+ - spec/models/account_number_response_spec.rb
465
+ - spec/models/managed_member_update_request_spec.rb
466
+ - spec/models/user_create_request_body_spec.rb
467
+ - spec/models/transaction_rule_create_request_spec.rb
468
+ - spec/models/statements_response_body_spec.rb
469
+ - spec/models/tag_update_request_spec.rb
470
+ - spec/models/managed_member_update_request_body_spec.rb
471
+ - spec/models/member_response_spec.rb
472
+ - spec/models/enhance_transactions_request_spec.rb
473
+ - spec/models/managed_account_update_request_body_spec.rb
474
+ - spec/models/institution_response_body_spec.rb
475
+ - spec/models/tagging_update_request_spec.rb
476
+ - spec/models/statement_response_body_spec.rb
477
+ - spec/models/accounts_response_body_spec.rb
478
+ - spec/models/tag_create_request_body_spec.rb
479
+ - spec/models/connect_widget_request_spec.rb
471
480
  - spec/models/managed_account_create_request_body_spec.rb
472
- - spec/models/user_response_spec.rb
473
481
  - spec/models/merchant_response_spec.rb
474
- - spec/models/tagging_create_request_body_spec.rb
475
- - spec/models/transaction_update_request_body_spec.rb
482
+ - spec/models/widget_response_body_spec.rb
483
+ - spec/models/widget_request_spec.rb
484
+ - spec/models/category_update_request_body_spec.rb
476
485
  - spec/models/image_option_response_spec.rb
477
- - spec/models/enhance_transactions_response_body_spec.rb
478
- - spec/models/credentials_response_body_spec.rb
479
- - spec/models/accounts_response_body_spec.rb
480
- - spec/models/members_response_body_spec.rb
486
+ - spec/models/managed_transaction_create_request_body_spec.rb
487
+ - spec/models/challenge_response_spec.rb
488
+ - spec/models/account_owner_response_spec.rb
489
+ - spec/models/tagging_update_request_body_spec.rb
481
490
  - spec/models/transaction_rule_create_request_body_spec.rb
482
- - spec/models/taggings_response_body_spec.rb
483
- - spec/models/option_response_spec.rb
484
- - spec/models/category_create_request_body_spec.rb
485
- - spec/models/account_update_request_spec.rb
491
+ - spec/models/merchants_response_body_spec.rb
492
+ - spec/models/managed_member_create_request_spec.rb
493
+ - spec/models/transaction_response_spec.rb
494
+ - spec/models/tag_create_request_spec.rb
495
+ - spec/models/holding_response_spec.rb
496
+ - spec/models/user_update_request_spec.rb
486
497
  - spec/models/o_auth_window_response_spec.rb
487
- - spec/models/connect_widget_request_spec.rb
488
- - spec/models/user_create_request_body_spec.rb
489
- - spec/models/account_owners_response_body_spec.rb
490
- - spec/models/tagging_update_request_spec.rb
491
- - spec/models/tagging_response_body_spec.rb
492
- - spec/models/challenges_response_body_spec.rb
493
- - spec/models/challenge_response_spec.rb
494
- - spec/models/member_resume_request_body_spec.rb
495
- - spec/models/tag_response_body_spec.rb
498
+ - spec/models/users_response_body_spec.rb
499
+ - spec/models/managed_transaction_update_request_body_spec.rb
496
500
  - spec/models/member_update_request_body_spec.rb
497
- - spec/models/category_response_spec.rb
501
+ - spec/models/challenges_response_body_spec.rb
502
+ - spec/models/tag_response_spec.rb
503
+ - spec/models/account_owners_response_body_spec.rb
498
504
  - spec/models/merchant_location_response_spec.rb
499
- - spec/models/managed_account_create_request_spec.rb
500
- - spec/models/connect_widget_request_body_spec.rb
501
- - spec/models/transactions_response_body_spec.rb
502
- - spec/models/account_response_spec.rb
503
- - spec/models/managed_member_update_request_body_spec.rb
504
- - spec/models/user_create_request_spec.rb
505
- - spec/models/transaction_response_spec.rb
506
- - spec/models/account_owner_response_spec.rb
507
- - spec/models/merchants_response_body_spec.rb
508
- - spec/models/statements_response_body_spec.rb
509
- - spec/models/account_update_request_body_spec.rb
510
- - spec/models/tagging_update_request_body_spec.rb
505
+ - spec/models/connect_widget_response_body_spec.rb
506
+ - spec/models/widget_response_spec.rb
511
507
  - spec/models/managed_transaction_create_request_spec.rb
512
- - spec/models/tag_update_request_body_spec.rb
513
- - spec/models/holding_response_spec.rb
514
- - spec/models/widget_request_body_spec.rb
515
- - spec/models/member_response_spec.rb
516
- - spec/models/statement_response_body_spec.rb
517
- - spec/models/account_number_response_spec.rb
508
+ - spec/models/account_response_body_spec.rb
509
+ - spec/models/transaction_rule_update_request_body_spec.rb
510
+ - spec/models/transaction_rules_response_body_spec.rb
511
+ - spec/models/managed_account_update_request_spec.rb
512
+ - spec/models/taggings_response_body_spec.rb
513
+ - spec/models/managed_account_create_request_spec.rb
514
+ - spec/models/member_response_body_spec.rb
515
+ - spec/models/tagging_response_body_spec.rb
518
516
  - spec/models/transaction_response_body_spec.rb
519
- - spec/models/institution_response_spec.rb
520
- - spec/models/transaction_rule_create_request_spec.rb
521
- - spec/models/categories_response_body_spec.rb
522
- - spec/models/enhance_transactions_request_spec.rb
523
- - spec/models/credential_response_spec.rb
524
- - spec/models/transaction_rule_response_spec.rb
525
517
  - spec/models/managed_transaction_update_request_spec.rb
518
+ - spec/models/tags_response_body_spec.rb
519
+ - spec/models/o_auth_window_response_body_spec.rb
526
520
  - spec/models/member_create_request_spec.rb
527
- - spec/models/user_response_body_spec.rb
528
- - spec/models/category_update_request_body_spec.rb
521
+ - spec/models/tagging_create_request_body_spec.rb
522
+ - spec/models/user_create_request_spec.rb
523
+ - spec/models/transaction_rule_response_spec.rb
524
+ - spec/models/transaction_rule_update_request_spec.rb
525
+ - spec/models/merchant_location_response_body_spec.rb
526
+ - spec/models/member_resume_request_body_spec.rb
527
+ - spec/models/user_response_spec.rb
528
+ - spec/models/member_resume_request_spec.rb
529
+ - spec/models/category_create_request_body_spec.rb
530
+ - spec/models/account_response_spec.rb
531
+ - spec/models/account_update_request_body_spec.rb
532
+ - spec/models/institution_response_spec.rb
533
+ - spec/models/connect_widget_response_spec.rb
529
534
  - spec/models/enhance_transactions_request_body_spec.rb
530
- - spec/models/managed_account_update_request_body_spec.rb
531
- - spec/models/credential_request_spec.rb
532
- - spec/models/member_update_request_spec.rb
533
- - spec/models/tag_create_request_body_spec.rb
534
- - spec/models/member_status_response_body_spec.rb
535
- - spec/models/users_response_body_spec.rb
536
- - spec/models/pagination_response_spec.rb
537
- - spec/models/tag_update_request_spec.rb
535
+ - spec/models/widget_request_body_spec.rb
536
+ - spec/models/tagging_response_spec.rb
537
+ - spec/models/category_response_body_spec.rb
538
538
  - spec/spec_helper.rb