moneykit 0.1.4 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a44b7a55df7d698f1dbdecba4ae6a4ebfb67169246ace2815f6c1bb850b15336
4
- data.tar.gz: 439283c5f6f3501b341504555fd5d0961dd5f78ed93b11c4faa90f40fb8a5315
3
+ metadata.gz: b58e851a3e57d16e10765fc1c5d02498d681f7eec264f210aa12218971e66bb5
4
+ data.tar.gz: '09170391b76249ff26a5dc38690e3dad30d2e606a5f1af90074370236414e5e4'
5
5
  SHA512:
6
- metadata.gz: 52a4ace77390a71738eb7de3ba54e89ef37a35a65601dfca47e07c6e3597c9cf2ce494843f2511060024e50bc45fb3bbf01e0eeac0b1851ff8e73c67dfa8c318
7
- data.tar.gz: '08d3a1875c915c5dfa642160a3db6ee79092698f44086c76df4b413efd6ced6a53044aa8b8b3fd803db4ee93099e67fe68e4e06c016ca62ed12d6d1948a8ab10'
6
+ metadata.gz: ec0d3b7baca97c2e2c3d950687149ca9c01e364871d05c42301c70d2b1f46e4f434a804017730062fa5893c362870296f2e509271028af30c58464e2d041c452
7
+ data.tar.gz: 454e763418c961943846b634eed790e182f64e4ff5e6ce47924577dfd0ae6c6101dc8d968ca2fedafcc38e11e993245c93a6f1d7dd0b36220a71a2363c9a7e7d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- moneykit (0.1.4)
4
+ moneykit (0.1.6)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart
7
7
 
data/README.md CHANGED
@@ -16,7 +16,7 @@ bundle add moneykit.gemspec
16
16
  or add the following to your `Gemfile`
17
17
 
18
18
  ```
19
- gem 'moneykit', '~> 0.1.4'
19
+ gem 'moneykit', '~> 0.1.6'
20
20
  ```
21
21
 
22
22
  ## Getting Started
@@ -8,6 +8,7 @@
8
8
  | **available** | **Float** | The amount of funds available for use. Not all institutions report the available balance. &lt;p&gt;Note that the available balance typically does not include overdraft limits. | [optional] |
9
9
  | **current** | **Float** | The total amount of funds in the account. &lt;p&gt;For credit or loan accounts, a positive number indicates the amount owed by the account holder. If the balance is negative (this is rare), this indicates an amount owed **to** the account holder. &lt;p&gt;For depository or investment accounts, a positive number is the asset value of the account. If the balance is negative (this is rare), this indicates an overdraft or margin condition. | [optional] |
10
10
  | **limit** | **Float** | The credit limit on the account. Typically this exists only for credit-type accounts. &lt;p&gt;In some cases, this may represent the overdraft limit for depository accounts. | [optional] |
11
+ | **balance_date** | **Time** | The date that the balance was captured at. This may not include a time. When this field is null, the balance was captured at an unknown time. | [optional] |
11
12
 
12
13
  ## Example
13
14
 
@@ -18,7 +19,8 @@ instance = MoneyKit::AccountBalances.new(
18
19
  currency: null,
19
20
  available: 340.12,
20
21
  current: 445.89,
21
- limit: 500
22
+ limit: 500,
23
+ balance_date: 2021-08-12T15:23:00Z
22
24
  )
23
25
  ```
24
26
 
@@ -6,8 +6,8 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **settings** | [**LinkSessionSettingOverrides**](LinkSessionSettingOverrides.md) | | [optional] |
8
8
  | **customer_user** | [**LinkSessionCustomerUser**](LinkSessionCustomerUser.md) | | |
9
- | **existing_link_id** | **String** | Supply the existing &#x60;link_id&#x60; if you are asking the user to reconnect this link. | [optional] |
10
- | **institution_id** | **String** | The ID of the institution you want to link to. Providing this will skip the institution selection step. &#x60;existing_link_id&#x60; will take precedence over this field if both are provided. | [optional] |
9
+ | **existing_link_id** | **String** | Supply the existing &#x60;link_id&#x60; if you are asking the user to reconnect this link. &lt;p&gt;When reconnecting, if new accounts are discovered they will be presented to the user so permission to access them can be granted (or denied). Access to previously permitted accounts is not revokable at this point. &lt;p&gt;If necessary, MoneyKit may attempt to reconnect the account using a different provider than the link was originally connected through. The change in provider is generally seamless. MoneyKit normalizes incoming data to minimize provider-specific differences, and we deduplicate new transactions, so data continuity is generally assured; however, small discrepancies can still occur. &lt;p&gt;A reconnection cannot change the institution, the customer_user.id, the products, or the country for an existing link. These parameters will be silently ignored if &#x60;existing_link_id&#x60; is supplied. &lt;p&gt;The &#x60;webhook&#x60; for an existing link **can** be changed, and the existing webhook will be **removed** if the &#x60;webhook&#x60; parameter is omitted, so you should supply the &#x60;webhook&#x60; URL if you want to receive webhook events for the reconnected link. &lt;p&gt;Similarly, a reconnected link will be assigned whatever &#x60;link_tags&#x60; are supplied, and existing tags will be removed if &#x60;link_tags&#x60; is omitted, so you should supply the &#x60;link_tags&#x60; you want the link to have, if any. | [optional] |
10
+ | **institution_id** | **String** | The ID of the institution you want to link to. Providing this will skip the institution selection step. This field is ignored if &#x60;existing_link_id&#x60; is provided. | [optional] |
11
11
  | **redirect_uri** | **String** | For Oauth linking, a URI indicating the destination, in your application, where the user should be sent after authenticating with the institution. The &#x60;redirect_uri&#x60; should not contain any query parameters, and it must be pre-approved by MoneyKit during the customer setup process. | |
12
12
  | **webhook** | **String** | The destination URL to which any webhooks should be sent. | [optional] |
13
13
  | **link_tags** | **Array&lt;String&gt;** | | [optional] |
data/docs/LinkCommon.md CHANGED
@@ -13,6 +13,7 @@
13
13
  | **last_synced_at** | **Time** | An ISO-8601 timestamp indicating the last time that the account was updated. | [optional] |
14
14
  | **tags** | **Array&lt;String&gt;** | | [optional] |
15
15
  | **products** | [**LinkProducts**](LinkProducts.md) | | |
16
+ | **available_products** | [**Array&lt;Product&gt;**](Product.md) | | |
16
17
 
17
18
  ## Example
18
19
 
@@ -28,7 +29,8 @@ instance = MoneyKit::LinkCommon.new(
28
29
  error_code: null,
29
30
  last_synced_at: 2023-02-16T09:14:11,
30
31
  tags: null,
31
- products: null
32
+ products: null,
33
+ available_products: null
32
34
  )
33
35
  ```
34
36
 
data/docs/LinkResponse.md CHANGED
@@ -13,6 +13,7 @@
13
13
  | **last_synced_at** | **Time** | An ISO-8601 timestamp indicating the last time that the account was updated. | [optional] |
14
14
  | **tags** | **Array&lt;String&gt;** | | [optional] |
15
15
  | **products** | [**LinkProducts**](LinkProducts.md) | | |
16
+ | **available_products** | [**Array&lt;Product&gt;**](Product.md) | | |
16
17
  | **provider** | [**Provider**](Provider.md) | | |
17
18
  | **webhook** | **String** | The webhook url assigned to this link. | [optional] |
18
19
 
@@ -31,6 +32,7 @@ instance = MoneyKit::LinkResponse.new(
31
32
  last_synced_at: 2023-02-16T09:14:11,
32
33
  tags: null,
33
34
  products: null,
35
+ available_products: null,
34
36
  provider: null,
35
37
  webhook: https://example.com/webhook
36
38
  )
data/docs/ProductsApi.md CHANGED
@@ -9,7 +9,7 @@ All URIs are relative to *https://api.moneykit.com*
9
9
 
10
10
  ## refresh_products
11
11
 
12
- > refresh_products(id, refresh_products_request)
12
+ > <LinkCommon> refresh_products(id, refresh_products_request)
13
13
 
14
14
  /links/{id}/products
15
15
 
@@ -32,7 +32,8 @@ refresh_products_request = MoneyKit::RefreshProductsRequest.new({products: [Mone
32
32
 
33
33
  begin
34
34
  # /links/{id}/products
35
- api_instance.refresh_products(id, refresh_products_request)
35
+ result = api_instance.refresh_products(id, refresh_products_request)
36
+ p result
36
37
  rescue MoneyKit::ApiError => e
37
38
  puts "Error when calling ProductsApi->refresh_products: #{e}"
38
39
  end
@@ -40,9 +41,9 @@ end
40
41
 
41
42
  #### Using the refresh_products_with_http_info variant
42
43
 
43
- This returns an Array which contains the response data (`nil` in this case), status code and headers.
44
+ This returns an Array which contains the response data, status code and headers.
44
45
 
45
- > <Array(nil, Integer, Hash)> refresh_products_with_http_info(id, refresh_products_request)
46
+ > <Array(<LinkCommon>, Integer, Hash)> refresh_products_with_http_info(id, refresh_products_request)
46
47
 
47
48
  ```ruby
48
49
  begin
@@ -50,7 +51,7 @@ begin
50
51
  data, status_code, headers = api_instance.refresh_products_with_http_info(id, refresh_products_request)
51
52
  p status_code # => 2xx
52
53
  p headers # => { ... }
53
- p data # => nil
54
+ p data # => <LinkCommon>
54
55
  rescue MoneyKit::ApiError => e
55
56
  puts "Error when calling ProductsApi->refresh_products_with_http_info: #{e}"
56
57
  end
@@ -65,7 +66,7 @@ end
65
66
 
66
67
  ### Return type
67
68
 
68
- nil (empty response body)
69
+ [**LinkCommon**](LinkCommon.md)
69
70
 
70
71
  ### Authorization
71
72
 
@@ -8,6 +8,7 @@
8
8
  | **last_attempted_at** | **Time** | An ISO-8601 timestamp indicating the last time that the product was attempted. | [optional] |
9
9
  | **error_code** | [**LinkProductFailureReasons**](LinkProductFailureReasons.md) | | [optional] |
10
10
  | **error_message** | **String** | The error message, if the last attempt to refresh the product failed. | [optional] |
11
+ | **has_history** | **Boolean** | | |
11
12
  | **settings** | [**TransactionsProductSettings**](TransactionsProductSettings.md) | | |
12
13
 
13
14
  ## Example
@@ -20,6 +21,7 @@ instance = MoneyKit::TransactionsLinkProduct.new(
20
21
  last_attempted_at: 2023-02-16T09:14:11,
21
22
  error_code: null,
22
23
  error_message: null,
24
+ has_history: null,
23
25
  settings: null
24
26
  )
25
27
  ```
@@ -24,10 +24,10 @@ module MoneyKit
24
24
  # @param id [String] The unique ID for this link.
25
25
  # @param refresh_products_request [RefreshProductsRequest]
26
26
  # @param [Hash] opts the optional parameters
27
- # @return [nil]
27
+ # @return [LinkCommon]
28
28
  def refresh_products(id, refresh_products_request, opts = {})
29
- refresh_products_with_http_info(id, refresh_products_request, opts)
30
- nil
29
+ data, _status_code, _headers = refresh_products_with_http_info(id, refresh_products_request, opts)
30
+ data
31
31
  end
32
32
 
33
33
  # /links/{id}/products
@@ -35,7 +35,7 @@ module MoneyKit
35
35
  # @param id [String] The unique ID for this link.
36
36
  # @param refresh_products_request [RefreshProductsRequest]
37
37
  # @param [Hash] opts the optional parameters
38
- # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
38
+ # @return [Array<(LinkCommon, Integer, Hash)>] LinkCommon data, response status code and response headers
39
39
  def refresh_products_with_http_info(id, refresh_products_request, opts = {})
40
40
  if @api_client.config.debugging
41
41
  @api_client.config.logger.debug 'Calling API: ProductsApi.refresh_products ...'
@@ -71,7 +71,7 @@ module MoneyKit
71
71
  post_body = opts[:debug_body] || @api_client.object_to_http_body(refresh_products_request)
72
72
 
73
73
  # return_type
74
- return_type = opts[:debug_return_type]
74
+ return_type = opts[:debug_return_type] || 'LinkCommon'
75
75
 
76
76
  # auth_names
77
77
  auth_names = opts[:debug_auth_names] || ['OAuth2ClientCredentials']
@@ -26,6 +26,9 @@ module MoneyKit
26
26
  # The credit limit on the account. Typically this exists only for credit-type accounts. <p>In some cases, this may represent the overdraft limit for depository accounts.
27
27
  attr_accessor :limit
28
28
 
29
+ # The date that the balance was captured at. This may not include a time. When this field is null, the balance was captured at an unknown time.
30
+ attr_accessor :balance_date
31
+
29
32
  class EnumAttributeValidator
30
33
  attr_reader :datatype
31
34
  attr_reader :allowable_values
@@ -54,7 +57,8 @@ module MoneyKit
54
57
  :'currency' => :'currency',
55
58
  :'available' => :'available',
56
59
  :'current' => :'current',
57
- :'limit' => :'limit'
60
+ :'limit' => :'limit',
61
+ :'balance_date' => :'balance_date'
58
62
  }
59
63
  end
60
64
 
@@ -69,7 +73,8 @@ module MoneyKit
69
73
  :'currency' => :'Currency',
70
74
  :'available' => :'Float',
71
75
  :'current' => :'Float',
72
- :'limit' => :'Float'
76
+ :'limit' => :'Float',
77
+ :'balance_date' => :'Time'
73
78
  }
74
79
  end
75
80
 
@@ -111,6 +116,10 @@ module MoneyKit
111
116
  if attributes.key?(:'limit')
112
117
  self.limit = attributes[:'limit']
113
118
  end
119
+
120
+ if attributes.key?(:'balance_date')
121
+ self.balance_date = attributes[:'balance_date']
122
+ end
114
123
  end
115
124
 
116
125
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -141,7 +150,8 @@ module MoneyKit
141
150
  currency == o.currency &&
142
151
  available == o.available &&
143
152
  current == o.current &&
144
- limit == o.limit
153
+ limit == o.limit &&
154
+ balance_date == o.balance_date
145
155
  end
146
156
 
147
157
  # @see the `==` method
@@ -153,7 +163,7 @@ module MoneyKit
153
163
  # Calculates hash code according to all attributes.
154
164
  # @return [Integer] Hash code
155
165
  def hash
156
- [currency, available, current, limit].hash
166
+ [currency, available, current, limit, balance_date].hash
157
167
  end
158
168
 
159
169
  # Builds the object from hash
@@ -19,10 +19,10 @@ module MoneyKit
19
19
 
20
20
  attr_accessor :customer_user
21
21
 
22
- # Supply the existing `link_id` if you are asking the user to reconnect this link.
22
+ # Supply the existing `link_id` if you are asking the user to reconnect this link. <p>When reconnecting, if new accounts are discovered they will be presented to the user so permission to access them can be granted (or denied). Access to previously permitted accounts is not revokable at this point. <p>If necessary, MoneyKit may attempt to reconnect the account using a different provider than the link was originally connected through. The change in provider is generally seamless. MoneyKit normalizes incoming data to minimize provider-specific differences, and we deduplicate new transactions, so data continuity is generally assured; however, small discrepancies can still occur. <p>A reconnection cannot change the institution, the customer_user.id, the products, or the country for an existing link. These parameters will be silently ignored if `existing_link_id` is supplied. <p>The `webhook` for an existing link **can** be changed, and the existing webhook will be **removed** if the `webhook` parameter is omitted, so you should supply the `webhook` URL if you want to receive webhook events for the reconnected link. <p>Similarly, a reconnected link will be assigned whatever `link_tags` are supplied, and existing tags will be removed if `link_tags` is omitted, so you should supply the `link_tags` you want the link to have, if any.
23
23
  attr_accessor :existing_link_id
24
24
 
25
- # The ID of the institution you want to link to. Providing this will skip the institution selection step. `existing_link_id` will take precedence over this field if both are provided.
25
+ # The ID of the institution you want to link to. Providing this will skip the institution selection step. This field is ignored if `existing_link_id` is provided.
26
26
  attr_accessor :institution_id
27
27
 
28
28
  # For Oauth linking, a URI indicating the destination, in your application, where the user should be sent after authenticating with the institution. The `redirect_uri` should not contain any query parameters, and it must be pre-approved by MoneyKit during the customer setup process.
@@ -38,6 +38,8 @@ module MoneyKit
38
38
 
39
39
  attr_accessor :products
40
40
 
41
+ attr_accessor :available_products
42
+
41
43
  class EnumAttributeValidator
42
44
  attr_reader :datatype
43
45
  attr_reader :allowable_values
@@ -71,7 +73,8 @@ module MoneyKit
71
73
  :'error_code' => :'error_code',
72
74
  :'last_synced_at' => :'last_synced_at',
73
75
  :'tags' => :'tags',
74
- :'products' => :'products'
76
+ :'products' => :'products',
77
+ :'available_products' => :'available_products'
75
78
  }
76
79
  end
77
80
 
@@ -91,7 +94,8 @@ module MoneyKit
91
94
  :'error_code' => :'LinkError',
92
95
  :'last_synced_at' => :'Time',
93
96
  :'tags' => :'Array<String>',
94
- :'products' => :'LinkProducts'
97
+ :'products' => :'LinkProducts',
98
+ :'available_products' => :'Array<Product>'
95
99
  }
96
100
  end
97
101
 
@@ -165,6 +169,14 @@ module MoneyKit
165
169
  else
166
170
  self.products = nil
167
171
  end
172
+
173
+ if attributes.key?(:'available_products')
174
+ if (value = attributes[:'available_products']).is_a?(Array)
175
+ self.available_products = value
176
+ end
177
+ else
178
+ self.available_products = nil
179
+ end
168
180
  end
169
181
 
170
182
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -196,6 +208,10 @@ module MoneyKit
196
208
  invalid_properties.push('invalid value for "products", products cannot be nil.')
197
209
  end
198
210
 
211
+ if @available_products.nil?
212
+ invalid_properties.push('invalid value for "available_products", available_products cannot be nil.')
213
+ end
214
+
199
215
  invalid_properties
200
216
  end
201
217
 
@@ -209,6 +225,7 @@ module MoneyKit
209
225
  return false if @institution_avatar.nil?
210
226
  return false if @state.nil?
211
227
  return false if @products.nil?
228
+ return false if @available_products.nil?
212
229
  true
213
230
  end
214
231
 
@@ -225,7 +242,8 @@ module MoneyKit
225
242
  error_code == o.error_code &&
226
243
  last_synced_at == o.last_synced_at &&
227
244
  tags == o.tags &&
228
- products == o.products
245
+ products == o.products &&
246
+ available_products == o.available_products
229
247
  end
230
248
 
231
249
  # @see the `==` method
@@ -237,7 +255,7 @@ module MoneyKit
237
255
  # Calculates hash code according to all attributes.
238
256
  # @return [Integer] Hash code
239
257
  def hash
240
- [link_id, institution_id, institution_name, institution_avatar, state, error_code, last_synced_at, tags, products].hash
258
+ [link_id, institution_id, institution_name, institution_avatar, state, error_code, last_synced_at, tags, products, available_products].hash
241
259
  end
242
260
 
243
261
  # Builds the object from hash
@@ -21,9 +21,10 @@ module MoneyKit
21
21
  NOT_SUPPORTED = "not_supported".freeze
22
22
  TIMEOUT = "timeout".freeze
23
23
  UNKNOWN = "unknown".freeze
24
+ NO_ACCOUNTS = "no_accounts".freeze
24
25
 
25
26
  def self.all_vars
26
- @all_vars ||= [RATE_LIMIT, AUTH_EXPIRED, INVALID_CREDENTIALS, NOT_SUPPORTED, TIMEOUT, UNKNOWN].freeze
27
+ @all_vars ||= [RATE_LIMIT, AUTH_EXPIRED, INVALID_CREDENTIALS, NOT_SUPPORTED, TIMEOUT, UNKNOWN, NO_ACCOUNTS].freeze
27
28
  end
28
29
 
29
30
  # Builds the enum from string
@@ -38,6 +38,8 @@ module MoneyKit
38
38
 
39
39
  attr_accessor :products
40
40
 
41
+ attr_accessor :available_products
42
+
41
43
  attr_accessor :provider
42
44
 
43
45
  # The webhook url assigned to this link.
@@ -77,6 +79,7 @@ module MoneyKit
77
79
  :'last_synced_at' => :'last_synced_at',
78
80
  :'tags' => :'tags',
79
81
  :'products' => :'products',
82
+ :'available_products' => :'available_products',
80
83
  :'provider' => :'provider',
81
84
  :'webhook' => :'webhook'
82
85
  }
@@ -99,6 +102,7 @@ module MoneyKit
99
102
  :'last_synced_at' => :'Time',
100
103
  :'tags' => :'Array<String>',
101
104
  :'products' => :'LinkProducts',
105
+ :'available_products' => :'Array<Product>',
102
106
  :'provider' => :'Provider',
103
107
  :'webhook' => :'String'
104
108
  }
@@ -175,6 +179,14 @@ module MoneyKit
175
179
  self.products = nil
176
180
  end
177
181
 
182
+ if attributes.key?(:'available_products')
183
+ if (value = attributes[:'available_products']).is_a?(Array)
184
+ self.available_products = value
185
+ end
186
+ else
187
+ self.available_products = nil
188
+ end
189
+
178
190
  if attributes.key?(:'provider')
179
191
  self.provider = attributes[:'provider']
180
192
  else
@@ -215,6 +227,10 @@ module MoneyKit
215
227
  invalid_properties.push('invalid value for "products", products cannot be nil.')
216
228
  end
217
229
 
230
+ if @available_products.nil?
231
+ invalid_properties.push('invalid value for "available_products", available_products cannot be nil.')
232
+ end
233
+
218
234
  if @provider.nil?
219
235
  invalid_properties.push('invalid value for "provider", provider cannot be nil.')
220
236
  end
@@ -232,6 +248,7 @@ module MoneyKit
232
248
  return false if @institution_avatar.nil?
233
249
  return false if @state.nil?
234
250
  return false if @products.nil?
251
+ return false if @available_products.nil?
235
252
  return false if @provider.nil?
236
253
  true
237
254
  end
@@ -250,6 +267,7 @@ module MoneyKit
250
267
  last_synced_at == o.last_synced_at &&
251
268
  tags == o.tags &&
252
269
  products == o.products &&
270
+ available_products == o.available_products &&
253
271
  provider == o.provider &&
254
272
  webhook == o.webhook
255
273
  end
@@ -263,7 +281,7 @@ module MoneyKit
263
281
  # Calculates hash code according to all attributes.
264
282
  # @return [Integer] Hash code
265
283
  def hash
266
- [link_id, institution_id, institution_name, institution_avatar, state, error_code, last_synced_at, tags, products, provider, webhook].hash
284
+ [link_id, institution_id, institution_name, institution_avatar, state, error_code, last_synced_at, tags, products, available_products, provider, webhook].hash
267
285
  end
268
286
 
269
287
  # Builds the object from hash
@@ -26,6 +26,8 @@ module MoneyKit
26
26
  # The error message, if the last attempt to refresh the product failed.
27
27
  attr_accessor :error_message
28
28
 
29
+ attr_accessor :has_history
30
+
29
31
  attr_accessor :settings
30
32
 
31
33
  class EnumAttributeValidator
@@ -57,6 +59,7 @@ module MoneyKit
57
59
  :'last_attempted_at' => :'last_attempted_at',
58
60
  :'error_code' => :'error_code',
59
61
  :'error_message' => :'error_message',
62
+ :'has_history' => :'has_history',
60
63
  :'settings' => :'settings'
61
64
  }
62
65
  end
@@ -73,6 +76,7 @@ module MoneyKit
73
76
  :'last_attempted_at' => :'Time',
74
77
  :'error_code' => :'LinkProductFailureReasons',
75
78
  :'error_message' => :'String',
79
+ :'has_history' => :'Boolean',
76
80
  :'settings' => :'TransactionsProductSettings'
77
81
  }
78
82
  end
@@ -114,6 +118,12 @@ module MoneyKit
114
118
  self.error_message = attributes[:'error_message']
115
119
  end
116
120
 
121
+ if attributes.key?(:'has_history')
122
+ self.has_history = attributes[:'has_history']
123
+ else
124
+ self.has_history = nil
125
+ end
126
+
117
127
  if attributes.key?(:'settings')
118
128
  self.settings = attributes[:'settings']
119
129
  else
@@ -126,6 +136,10 @@ module MoneyKit
126
136
  def list_invalid_properties
127
137
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
128
138
  invalid_properties = Array.new
139
+ if @has_history.nil?
140
+ invalid_properties.push('invalid value for "has_history", has_history cannot be nil.')
141
+ end
142
+
129
143
  if @settings.nil?
130
144
  invalid_properties.push('invalid value for "settings", settings cannot be nil.')
131
145
  end
@@ -137,6 +151,7 @@ module MoneyKit
137
151
  # @return true if the model is valid
138
152
  def valid?
139
153
  warn '[DEPRECATED] the `valid?` method is obsolete'
154
+ return false if @has_history.nil?
140
155
  return false if @settings.nil?
141
156
  true
142
157
  end
@@ -150,6 +165,7 @@ module MoneyKit
150
165
  last_attempted_at == o.last_attempted_at &&
151
166
  error_code == o.error_code &&
152
167
  error_message == o.error_message &&
168
+ has_history == o.has_history &&
153
169
  settings == o.settings
154
170
  end
155
171
 
@@ -162,7 +178,7 @@ module MoneyKit
162
178
  # Calculates hash code according to all attributes.
163
179
  # @return [Integer] Hash code
164
180
  def hash
165
- [refreshed_at, last_attempted_at, error_code, error_message, settings].hash
181
+ [refreshed_at, last_attempted_at, error_code, error_message, has_history, settings].hash
166
182
  end
167
183
 
168
184
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 7.1.0
11
11
  =end
12
12
 
13
13
  module MoneyKit
14
- VERSION = '0.1.4'
14
+ VERSION = '0.1.6'
15
15
  end
@@ -3,10 +3,10 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
6
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-ywqeqq sitelibdir\=./.gem.20240109-1740-ywqeqq clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-srxahi sitelibdir\=./.gem.20240214-1735-srxahi clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
9
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-ywqeqq sitelibdir\=./.gem.20240109-1740-ywqeqq
9
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-srxahi sitelibdir\=./.gem.20240214-1735-srxahi
10
10
  compiling breakpoint.c
11
11
  compiling byebug.c
12
12
  byebug.c: In function ‘check_started’:
@@ -35,8 +35,8 @@ compiling threads.c
35
35
  linking shared-object byebug/byebug.so
36
36
 
37
37
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
38
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-ywqeqq sitelibdir\=./.gem.20240109-1740-ywqeqq install
39
- /usr/bin/install -c -m 0755 byebug.so ./.gem.20240109-1740-ywqeqq/byebug
38
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-srxahi sitelibdir\=./.gem.20240214-1735-srxahi install
39
+ /usr/bin/install -c -m 0755 byebug.so ./.gem.20240214-1735-srxahi/byebug
40
40
 
41
41
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/byebug-11.1.3/ext/byebug
42
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-ywqeqq sitelibdir\=./.gem.20240109-1740-ywqeqq clean
42
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-srxahi sitelibdir\=./.gem.20240214-1735-srxahi clean
@@ -3,10 +3,10 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
6
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-mefpwc sitelibdir\=./.gem.20240109-1740-mefpwc clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-mle08n sitelibdir\=./.gem.20240214-1735-mle08n clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
9
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-mefpwc sitelibdir\=./.gem.20240109-1740-mefpwc
9
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-mle08n sitelibdir\=./.gem.20240214-1735-mle08n
10
10
  compiling adj_matrix.c
11
11
  adj_matrix.c: In function ‘adj_matrix_default’:
12
12
  adj_matrix.c:82:12: warning: old-style function definition [-Wold-style-definition]
@@ -22,8 +22,8 @@ compiling jaro_winkler.c
22
22
  linking shared-object jaro_winkler/jaro_winkler_ext.so
23
23
 
24
24
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
25
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-mefpwc sitelibdir\=./.gem.20240109-1740-mefpwc install
26
- /usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20240109-1740-mefpwc/jaro_winkler
25
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-mle08n sitelibdir\=./.gem.20240214-1735-mle08n install
26
+ /usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20240214-1735-mle08n/jaro_winkler
27
27
 
28
28
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
29
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-mefpwc sitelibdir\=./.gem.20240109-1740-mefpwc clean
29
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-mle08n sitelibdir\=./.gem.20240214-1735-mle08n clean
@@ -5,13 +5,13 @@ checking for yaml_get_version() in -lyaml... yes
5
5
  creating Makefile
6
6
 
7
7
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
8
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-9dck6q sitelibdir\=./.gem.20240109-1740-9dck6q clean
8
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-xnk1cg sitelibdir\=./.gem.20240214-1735-xnk1cg clean
9
9
  cd libyaml && make clean
10
10
  /bin/sh: 1: cd: can't cd to libyaml
11
11
  make: [Makefile:283: clean-so] Error 2 (ignored)
12
12
 
13
13
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
14
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-9dck6q sitelibdir\=./.gem.20240109-1740-9dck6q
14
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-xnk1cg sitelibdir\=./.gem.20240214-1735-xnk1cg
15
15
  compiling psych.c
16
16
  compiling psych_emitter.c
17
17
  compiling psych_parser.c
@@ -20,11 +20,11 @@ compiling psych_yaml_tree.c
20
20
  linking shared-object psych.so
21
21
 
22
22
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
23
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-9dck6q sitelibdir\=./.gem.20240109-1740-9dck6q install
24
- /usr/bin/install -c -m 0755 psych.so ./.gem.20240109-1740-9dck6q
23
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-xnk1cg sitelibdir\=./.gem.20240214-1735-xnk1cg install
24
+ /usr/bin/install -c -m 0755 psych.so ./.gem.20240214-1735-xnk1cg
25
25
 
26
26
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/psych-5.1.1.1/ext/psych
27
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-9dck6q sitelibdir\=./.gem.20240109-1740-9dck6q clean
27
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-xnk1cg sitelibdir\=./.gem.20240214-1735-xnk1cg clean
28
28
  cd libyaml && make clean
29
29
  /bin/sh: 1: cd: can't cd to libyaml
30
30
  make: [Makefile:283: clean-so] Error 2 (ignored)
@@ -3,16 +3,16 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
6
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-idqnig sitelibdir\=./.gem.20240109-1740-idqnig clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-dqf3yn sitelibdir\=./.gem.20240214-1735-dqf3yn clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
9
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-idqnig sitelibdir\=./.gem.20240109-1740-idqnig
9
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-dqf3yn sitelibdir\=./.gem.20240214-1735-dqf3yn
10
10
  compiling cparse.c
11
11
  linking shared-object racc/cparse.so
12
12
 
13
13
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
14
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-idqnig sitelibdir\=./.gem.20240109-1740-idqnig install
15
- /usr/bin/install -c -m 0755 cparse.so ./.gem.20240109-1740-idqnig/racc
14
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-dqf3yn sitelibdir\=./.gem.20240214-1735-dqf3yn install
15
+ /usr/bin/install -c -m 0755 cparse.so ./.gem.20240214-1735-dqf3yn/racc
16
16
 
17
17
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/racc-1.7.3/ext/racc/cparse
18
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-idqnig sitelibdir\=./.gem.20240109-1740-idqnig clean
18
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-dqf3yn sitelibdir\=./.gem.20240214-1735-dqf3yn clean
@@ -3,16 +3,16 @@ current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/r
3
3
  creating Makefile
4
4
 
5
5
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
6
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-wl6z5n sitelibdir\=./.gem.20240109-1740-wl6z5n clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-2h6uq9 sitelibdir\=./.gem.20240214-1735-2h6uq9 clean
7
7
 
8
8
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
9
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-wl6z5n sitelibdir\=./.gem.20240109-1740-wl6z5n
9
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-2h6uq9 sitelibdir\=./.gem.20240214-1735-2h6uq9
10
10
  compiling stringio.c
11
11
  linking shared-object stringio.so
12
12
 
13
13
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
14
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-wl6z5n sitelibdir\=./.gem.20240109-1740-wl6z5n install
15
- /usr/bin/install -c -m 0755 stringio.so ./.gem.20240109-1740-wl6z5n
14
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-2h6uq9 sitelibdir\=./.gem.20240214-1735-2h6uq9 install
15
+ /usr/bin/install -c -m 0755 stringio.so ./.gem.20240214-1735-2h6uq9
16
16
 
17
17
  current directory: /home/runner/work/moneykit-ruby/moneykit-ruby/vendor/bundle/ruby/3.2.0/gems/stringio-3.1.0/ext/stringio
18
- make DESTDIR\= sitearchdir\=./.gem.20240109-1740-wl6z5n sitelibdir\=./.gem.20240109-1740-wl6z5n clean
18
+ make DESTDIR\= sitearchdir\=./.gem.20240214-1735-2h6uq9 sitelibdir\=./.gem.20240214-1735-2h6uq9 clean
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moneykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - MoneyKit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-09 00:00:00.000000000 Z
11
+ date: 2024-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -2321,139 +2321,139 @@ signing_key:
2321
2321
  specification_version: 4
2322
2322
  summary: MoneyKit API Ruby Gem
2323
2323
  test_files:
2324
- - spec/api/users_api_spec.rb
2324
+ - spec/api/link_session_api_spec.rb
2325
+ - spec/api/links_api_spec.rb
2326
+ - spec/api/webhooks_api_spec.rb
2325
2327
  - spec/api/investments_api_spec.rb
2326
2328
  - spec/api/transactions_api_spec.rb
2327
2329
  - spec/api/identity_api_spec.rb
2330
+ - spec/api/users_api_spec.rb
2331
+ - spec/api/accounts_api_spec.rb
2328
2332
  - spec/api/products_api_spec.rb
2329
- - spec/api/institutions_api_spec.rb
2330
2333
  - spec/api/access_token_api_spec.rb
2331
- - spec/api/accounts_api_spec.rb
2332
- - spec/api/link_session_api_spec.rb
2333
- - spec/api/links_api_spec.rb
2334
- - spec/api/webhooks_api_spec.rb
2334
+ - spec/api/institutions_api_spec.rb
2335
2335
  - spec/api/account_numbers_api_spec.rb
2336
2336
  - spec/api_client_spec.rb
2337
2337
  - spec/configuration_spec.rb
2338
- - spec/models/transaction_updates_available_webhook_spec.rb
2339
- - spec/models/link_permission_scope_spec.rb
2340
- - spec/models/response401_refresh_products_links_id_products_post_spec.rb
2341
- - spec/models/link_product_refresh_webhook_spec.rb
2342
- - spec/models/body_spec.rb
2343
- - spec/models/eft_number_spec.rb
2344
- - spec/models/institution_error_not_found_response_spec.rb
2345
- - spec/models/account_identity_spec.rb
2346
- - spec/models/requested_link_permission_spec.rb
2347
- - spec/models/response401_disconnect_links_id_delete_spec.rb
2348
- - spec/models/provider_spec.rb
2349
- - spec/models/money_kit_connect_features_spec.rb
2350
- - spec/models/cursor_pagination_spec.rb
2351
- - spec/models/identity_response_spec.rb
2352
- - spec/models/investments_product_settings_spec.rb
2353
- - spec/models/api_error_auth_unauthorized_response_spec.rb
2354
- - spec/models/identity_product_settings_spec.rb
2338
+ - spec/models/response_handle_link_webhook_event_request_body_webhook_post_spec.rb
2339
+ - spec/models/account_numbers_link_product_spec.rb
2340
+ - spec/models/jwk_set_spec.rb
2355
2341
  - spec/models/bacs_number_spec.rb
2356
- - spec/models/phone_number_spec.rb
2357
- - spec/models/transactions_link_product_spec.rb
2342
+ - spec/models/products_settings_spec.rb
2343
+ - spec/models/get_account_numbers_response_spec.rb
2358
2344
  - spec/models/institution_spec.rb
2359
- - spec/models/generate_access_token_response_spec.rb
2360
- - spec/models/currency_spec.rb
2361
- - spec/models/get_user_accounts_response_spec.rb
2362
- - spec/models/accounts_link_product_spec.rb
2363
- - spec/models/response401_get_investment_transactions_links_id_investments_transactions_get_spec.rb
2345
+ - spec/models/account_balances_spec.rb
2346
+ - spec/models/provider_spec.rb
2347
+ - spec/models/account_group_spec.rb
2348
+ - spec/models/link_permission_scope_spec.rb
2349
+ - spec/models/response401_get_well_known_jwks_well_known_jwks_json_get_spec.rb
2350
+ - spec/models/identity_product_settings_spec.rb
2351
+ - spec/models/validation_error_location_inner_spec.rb
2352
+ - spec/models/link_session_customer_user_email_spec.rb
2353
+ - spec/models/account_numbers_spec.rb
2354
+ - spec/models/transaction_updates_available_webhook_spec.rb
2355
+ - spec/models/link_session_setting_overrides_spec.rb
2364
2356
  - spec/models/introspect_client_response_spec.rb
2365
- - spec/models/get_institutions_response_spec.rb
2366
- - spec/models/owner_spec.rb
2367
- - spec/models/international_number_spec.rb
2368
- - spec/models/transaction_diff_spec.rb
2357
+ - spec/models/http_validation_error_spec.rb
2358
+ - spec/models/generate_access_token_response_spec.rb
2369
2359
  - spec/models/phone_number_type_spec.rb
2370
- - spec/models/response401_get_user_links_users_id_links_get_spec.rb
2371
- - spec/models/create_link_session_response_spec.rb
2372
- - spec/models/response401_get_transactions_diff_links_id_transactions_sync_get_spec.rb
2373
- - spec/models/country_spec.rb
2374
- - spec/models/response401_get_identities_links_id_identity_get_spec.rb
2360
+ - spec/models/international_number_spec.rb
2361
+ - spec/models/link_error_bad_config_response_spec.rb
2375
2362
  - spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
2376
- - spec/models/link_error_bad_state_response_spec.rb
2377
- - spec/models/account_spec.rb
2378
- - spec/models/webhook_test_link_response_spec.rb
2379
- - spec/models/api_error_rate_limit_exceeded_response_spec.rb
2380
- - spec/models/account_group_spec.rb
2381
- - spec/models/response401_get_transactions_spec.rb
2382
- - spec/models/transaction_spec.rb
2383
- - spec/models/ach_number_spec.rb
2384
2363
  - spec/models/link_session_customer_user_spec.rb
2385
- - spec/models/response401_get_user_accounts_users_id_accounts_get_spec.rb
2386
- - spec/models/response401_get_user_transactions_spec.rb
2387
- - spec/models/response401_trigger_test_link_webhook_event_webhooks_test_link_id_post_spec.rb
2388
- - spec/models/holding_response_spec.rb
2389
- - spec/models/response401_get_institution_institutions_institution_id_get_spec.rb
2390
- - spec/models/link_session_customer_user_email_spec.rb
2391
- - spec/models/response401_get_accounts_links_id_accounts_get_spec.rb
2364
+ - spec/models/response401_instrospect_client_auth_introspect_get_spec.rb
2365
+ - spec/models/response401_update_link_links_id_patch_spec.rb
2366
+ - spec/models/link_error_not_found_response_spec.rb
2367
+ - spec/models/link_response_spec.rb
2368
+ - spec/models/get_user_transactions_response_spec.rb
2369
+ - spec/models/transaction_diff_spec.rb
2370
+ - spec/models/link_products_spec.rb
2392
2371
  - spec/models/identity_link_product_spec.rb
2393
- - spec/models/account_balances_spec.rb
2394
- - spec/models/response401_get_account_numbers_links_id_accounts_numbers_get_spec.rb
2395
- - spec/models/email_spec.rb
2396
- - spec/models/transaction_type_filter_spec.rb
2397
- - spec/models/transaction_type_spec.rb
2398
- - spec/models/link_error_forbidden_action_response_spec.rb
2399
- - spec/models/validation_error_location_inner_spec.rb
2400
- - spec/models/account_numbers_product_settings_spec.rb
2372
+ - spec/models/get_user_accounts_response_spec.rb
2373
+ - spec/models/basic_account_details_spec.rb
2374
+ - spec/models/link_session_error_forbidden_config_response_spec.rb
2375
+ - spec/models/response401_exchange_token_link_session_exchange_token_post_spec.rb
2376
+ - spec/models/account_with_account_numbers_spec.rb
2401
2377
  - spec/models/link_session_error_invalid_token_exchange_spec.rb
2402
- - spec/models/link_state_spec.rb
2403
- - spec/models/transactions_product_settings_spec.rb
2378
+ - spec/models/validation_error_spec.rb
2379
+ - spec/models/link_error_spec.rb
2404
2380
  - spec/models/exchange_token_request_spec.rb
2405
- - spec/models/link_error_bad_config_response_spec.rb
2406
- - spec/models/refresh_products_request_spec.rb
2407
- - spec/models/transaction_sync_response_spec.rb
2408
- - spec/models/link_products_spec.rb
2409
- - spec/models/address_spec.rb
2381
+ - spec/models/account_identity_spec.rb
2382
+ - spec/models/link_session_customer_user_phone_spec.rb
2383
+ - spec/models/requested_link_permission_spec.rb
2384
+ - spec/models/response401_get_user_accounts_users_id_accounts_get_spec.rb
2385
+ - spec/models/phone_number_spec.rb
2386
+ - spec/models/holding_response_spec.rb
2387
+ - spec/models/response401_get_link_links_id_get_spec.rb
2388
+ - spec/models/link_error_bad_state_response_spec.rb
2389
+ - spec/models/transactions_product_settings_spec.rb
2390
+ - spec/models/money_kit_connect_features_spec.rb
2391
+ - spec/models/institution_error_not_found_response_spec.rb
2392
+ - spec/models/create_link_session_response_spec.rb
2410
2393
  - spec/models/get_transactions_response_spec.rb
2411
- - spec/models/response401_instrospect_client_auth_introspect_get_spec.rb
2394
+ - spec/models/customer_app_spec.rb
2395
+ - spec/models/link_product_state_spec.rb
2396
+ - spec/models/get_holdings_response_spec.rb
2412
2397
  - spec/models/investment_transaction_response_spec.rb
2413
- - spec/models/link_error_deleted_response_spec.rb
2414
- - spec/models/response401_get_well_known_jwks_well_known_jwks_json_get_spec.rb
2415
- - spec/models/link_session_customer_user_phone_spec.rb
2416
- - spec/models/link_common_spec.rb
2417
2398
  - spec/models/webhook_test_link_request_spec.rb
2418
- - spec/models/response401_get_holdings_links_id_investments_holdings_get_spec.rb
2419
- - spec/models/basic_account_details_spec.rb
2420
- - spec/models/products_settings_spec.rb
2399
+ - spec/models/security_response_spec.rb
2421
2400
  - spec/models/get_accounts_response_spec.rb
2422
- - spec/models/link_error_not_found_response_spec.rb
2401
+ - spec/models/response401_get_transactions_spec.rb
2402
+ - spec/models/response401_trigger_test_link_webhook_event_webhooks_test_link_id_post_spec.rb
2403
+ - spec/models/link_error_unauthorized_access_response_spec.rb
2404
+ - spec/models/email_spec.rb
2405
+ - spec/models/response401_get_holdings_links_id_investments_holdings_get_spec.rb
2406
+ - spec/models/response401_get_user_links_users_id_links_get_spec.rb
2423
2407
  - spec/models/response401_get_institutions_institutions_get_spec.rb
2424
- - spec/models/exchange_token_response_spec.rb
2425
- - spec/models/link_error_spec.rb
2426
- - spec/models/response401_reset_login_links_id_reset_post_spec.rb
2427
- - spec/models/response401_exchange_token_link_session_exchange_token_post_spec.rb
2428
- - spec/models/link_session_error_forbidden_config_response_spec.rb
2429
- - spec/models/update_link_request_spec.rb
2430
- - spec/models/webhook_link_test_event_spec.rb
2431
- - spec/models/link_product_state_spec.rb
2432
- - spec/models/response_handle_link_webhook_event_request_body_webhook_post_spec.rb
2433
- - spec/models/jwk_set_spec.rb
2434
- - spec/models/get_user_links_response_spec.rb
2435
- - spec/models/account_with_account_numbers_spec.rb
2436
- - spec/models/response401_get_link_links_id_get_spec.rb
2437
- - spec/models/link_session_setting_overrides_spec.rb
2408
+ - spec/models/create_link_session_request_spec.rb
2438
2409
  - spec/models/get_account_response_spec.rb
2439
- - spec/models/api_error_auth_expired_access_token_response_spec.rb
2440
- - spec/models/response401_update_link_links_id_patch_spec.rb
2441
- - spec/models/product_spec.rb
2442
- - spec/models/get_user_transactions_response_spec.rb
2443
2410
  - spec/models/link_permissions_spec.rb
2444
- - spec/models/customer_app_spec.rb
2445
- - spec/models/link_response_spec.rb
2446
- - spec/models/link_state_changed_webhook_spec.rb
2447
- - spec/models/investments_link_product_spec.rb
2411
+ - spec/models/response401_get_transactions_diff_links_id_transactions_sync_get_spec.rb
2412
+ - spec/models/response401_get_account_numbers_links_id_accounts_numbers_get_spec.rb
2413
+ - spec/models/update_link_request_spec.rb
2448
2414
  - spec/models/get_investment_transactions_response_spec.rb
2415
+ - spec/models/response401_disconnect_links_id_delete_spec.rb
2416
+ - spec/models/response401_get_institution_institutions_institution_id_get_spec.rb
2417
+ - spec/models/response401_get_identities_links_id_identity_get_spec.rb
2418
+ - spec/models/link_common_spec.rb
2419
+ - spec/models/api_error_auth_unauthorized_response_spec.rb
2420
+ - spec/models/webhook_test_link_response_spec.rb
2421
+ - spec/models/link_error_deleted_response_spec.rb
2422
+ - spec/models/get_institutions_response_spec.rb
2423
+ - spec/models/currency_spec.rb
2424
+ - spec/models/body_spec.rb
2425
+ - spec/models/refresh_products_request_spec.rb
2426
+ - spec/models/link_state_spec.rb
2427
+ - spec/models/link_product_refresh_webhook_spec.rb
2428
+ - spec/models/response401_reset_login_links_id_reset_post_spec.rb
2429
+ - spec/models/transactions_link_product_spec.rb
2430
+ - spec/models/country_spec.rb
2431
+ - spec/models/investments_link_product_spec.rb
2432
+ - spec/models/transaction_sync_response_spec.rb
2433
+ - spec/models/api_error_rate_limit_exceeded_response_spec.rb
2434
+ - spec/models/ach_number_spec.rb
2435
+ - spec/models/link_error_forbidden_action_response_spec.rb
2436
+ - spec/models/link_state_changed_webhook_spec.rb
2437
+ - spec/models/investments_product_settings_spec.rb
2438
+ - spec/models/identity_response_spec.rb
2439
+ - spec/models/accounts_link_product_spec.rb
2440
+ - spec/models/get_user_links_response_spec.rb
2441
+ - spec/models/account_numbers_product_settings_spec.rb
2442
+ - spec/models/account_spec.rb
2443
+ - spec/models/response401_get_accounts_links_id_accounts_get_spec.rb
2444
+ - spec/models/transaction_type_spec.rb
2445
+ - spec/models/cursor_pagination_spec.rb
2446
+ - spec/models/address_spec.rb
2447
+ - spec/models/response401_get_investment_transactions_links_id_investments_transactions_get_spec.rb
2448
+ - spec/models/owner_spec.rb
2449
+ - spec/models/exchange_token_response_spec.rb
2450
+ - spec/models/webhook_link_test_event_spec.rb
2451
+ - spec/models/transaction_spec.rb
2452
+ - spec/models/eft_number_spec.rb
2453
+ - spec/models/response401_get_user_transactions_spec.rb
2449
2454
  - spec/models/link_product_failure_reasons_spec.rb
2450
- - spec/models/account_numbers_spec.rb
2451
- - spec/models/account_numbers_link_product_spec.rb
2452
- - spec/models/link_error_unauthorized_access_response_spec.rb
2453
- - spec/models/create_link_session_request_spec.rb
2454
- - spec/models/get_account_numbers_response_spec.rb
2455
- - spec/models/validation_error_spec.rb
2456
- - spec/models/http_validation_error_spec.rb
2457
- - spec/models/security_response_spec.rb
2458
- - spec/models/get_holdings_response_spec.rb
2455
+ - spec/models/api_error_auth_expired_access_token_response_spec.rb
2456
+ - spec/models/response401_refresh_products_links_id_products_post_spec.rb
2457
+ - spec/models/transaction_type_filter_spec.rb
2458
+ - spec/models/product_spec.rb
2459
2459
  - spec/spec_helper.rb