moneykit 0.1.9 → 0.1.10

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: 49038e39b339500c639e79d4ea24595bc8af5610f1e24ce0f374dfcb7e4bd633
4
- data.tar.gz: 766803455444f9a8369637af7e6575e1a8645f44927a62dad245305edeb3ef57
3
+ metadata.gz: 5afca1dd60b379ce0f21f500e6b9a3e3fcc5bc53f63ee1ab3ee4dc40952be7c2
4
+ data.tar.gz: b5c76a9a2dd0cf1c3429f4b1811bf27c9ee1f789917b458d09c48499d59b44c9
5
5
  SHA512:
6
- metadata.gz: 28609532bcb8518a01f52da21d2e1aff029f543ffd69f61e45ae3f9026398e021043c5024472c5987681e660d30d20f5258b02d08a39bc888701636688bfe64a
7
- data.tar.gz: d6ae452acbff24cb002645f00add14ef778a624114cc968c8e779301b7298a826a1021564673798e6394a2934277438211f5f7d0aa6b1bb04c35d184749ae5cb
6
+ metadata.gz: f9450f64d78ee6db74677e68a88ba1097bb772bf5d08eee13c639c08750008771465bb0e1528228c3842392a457a9906d354eb044cbcea600e61c65d6f0bfc9f
7
+ data.tar.gz: b8336ebebcd09b1fa43579aec9f76232888ad24290d751e6b94cc61492f2f2c2ec0eab3a5bb54dd045395d5ba38b84df61995303c7e696a91efa1d9ea457f5dc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- moneykit (0.1.9)
4
+ moneykit (0.1.10)
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.9'
19
+ gem 'moneykit', '~> 0.1.10'
20
20
  ```
21
21
 
22
22
  ## Getting Started
@@ -4,12 +4,12 @@ All URIs are relative to *https://api.moneykit.com*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**get_account_numbers_legacy20230218**](AccountNumbersApi.md#get_account_numbers_legacy20230218) | **GET** /links/{id}/accounts/numbers | /links/{id}/accounts/numbers |
7
+ | [**get_account_numbers**](AccountNumbersApi.md#get_account_numbers) | **GET** /links/{id}/accounts/numbers | /links/{id}/accounts/numbers |
8
8
 
9
9
 
10
- ## get_account_numbers_legacy20230218
10
+ ## get_account_numbers
11
11
 
12
- > <GetAccountNumbersResponseLegacy20230218> get_account_numbers_legacy20230218(id)
12
+ > <GetAccountNumbersResponseLegacy20230218> get_account_numbers(id)
13
13
 
14
14
  /links/{id}/accounts/numbers
15
15
 
@@ -31,28 +31,28 @@ id = 'id_example' # String | The unique ID for this link.
31
31
 
32
32
  begin
33
33
  # /links/{id}/accounts/numbers
34
- result = api_instance.get_account_numbers_legacy20230218(id)
34
+ result = api_instance.get_account_numbers(id)
35
35
  p result
36
36
  rescue MoneyKit::ApiError => e
37
- puts "Error when calling AccountNumbersApi->get_account_numbers_legacy20230218: #{e}"
37
+ puts "Error when calling AccountNumbersApi->get_account_numbers: #{e}"
38
38
  end
39
39
  ```
40
40
 
41
- #### Using the get_account_numbers_legacy20230218_with_http_info variant
41
+ #### Using the get_account_numbers_with_http_info variant
42
42
 
43
43
  This returns an Array which contains the response data, status code and headers.
44
44
 
45
- > <Array(<GetAccountNumbersResponseLegacy20230218>, Integer, Hash)> get_account_numbers_legacy20230218_with_http_info(id)
45
+ > <Array(<GetAccountNumbersResponseLegacy20230218>, Integer, Hash)> get_account_numbers_with_http_info(id)
46
46
 
47
47
  ```ruby
48
48
  begin
49
49
  # /links/{id}/accounts/numbers
50
- data, status_code, headers = api_instance.get_account_numbers_legacy20230218_with_http_info(id)
50
+ data, status_code, headers = api_instance.get_account_numbers_with_http_info(id)
51
51
  p status_code # => 2xx
52
52
  p headers # => { ... }
53
53
  p data # => <GetAccountNumbersResponseLegacy20230218>
54
54
  rescue MoneyKit::ApiError => e
55
- puts "Error when calling AccountNumbersApi->get_account_numbers_legacy20230218_with_http_info: #{e}"
55
+ puts "Error when calling AccountNumbersApi->get_account_numbers_with_http_info: #{e}"
56
56
  end
57
57
  ```
58
58
 
data/docs/AccountsApi.md CHANGED
@@ -5,7 +5,7 @@ All URIs are relative to *https://api.moneykit.com*
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
7
  | [**get_account**](AccountsApi.md#get_account) | **GET** /links/{id}/accounts/{account_id} | /links/{id}/accounts/{account_id} |
8
- | [**get_account_numbers_legacy20230218**](AccountsApi.md#get_account_numbers_legacy20230218) | **GET** /links/{id}/accounts/numbers | /links/{id}/accounts/numbers |
8
+ | [**get_account_numbers**](AccountsApi.md#get_account_numbers) | **GET** /links/{id}/accounts/numbers | /links/{id}/accounts/numbers |
9
9
  | [**get_accounts**](AccountsApi.md#get_accounts) | **GET** /links/{id}/accounts | /links/{id}/accounts |
10
10
  | [**get_user_accounts**](AccountsApi.md#get_user_accounts) | **GET** /users/{id}/accounts | /users/{id}/accounts |
11
11
 
@@ -81,9 +81,9 @@ end
81
81
  - **Accept**: application/json
82
82
 
83
83
 
84
- ## get_account_numbers_legacy20230218
84
+ ## get_account_numbers
85
85
 
86
- > <GetAccountNumbersResponseLegacy20230218> get_account_numbers_legacy20230218(id)
86
+ > <GetAccountNumbersResponseLegacy20230218> get_account_numbers(id)
87
87
 
88
88
  /links/{id}/accounts/numbers
89
89
 
@@ -105,28 +105,28 @@ id = 'id_example' # String | The unique ID for this link.
105
105
 
106
106
  begin
107
107
  # /links/{id}/accounts/numbers
108
- result = api_instance.get_account_numbers_legacy20230218(id)
108
+ result = api_instance.get_account_numbers(id)
109
109
  p result
110
110
  rescue MoneyKit::ApiError => e
111
- puts "Error when calling AccountsApi->get_account_numbers_legacy20230218: #{e}"
111
+ puts "Error when calling AccountsApi->get_account_numbers: #{e}"
112
112
  end
113
113
  ```
114
114
 
115
- #### Using the get_account_numbers_legacy20230218_with_http_info variant
115
+ #### Using the get_account_numbers_with_http_info variant
116
116
 
117
117
  This returns an Array which contains the response data, status code and headers.
118
118
 
119
- > <Array(<GetAccountNumbersResponseLegacy20230218>, Integer, Hash)> get_account_numbers_legacy20230218_with_http_info(id)
119
+ > <Array(<GetAccountNumbersResponseLegacy20230218>, Integer, Hash)> get_account_numbers_with_http_info(id)
120
120
 
121
121
  ```ruby
122
122
  begin
123
123
  # /links/{id}/accounts/numbers
124
- data, status_code, headers = api_instance.get_account_numbers_legacy20230218_with_http_info(id)
124
+ data, status_code, headers = api_instance.get_account_numbers_with_http_info(id)
125
125
  p status_code # => 2xx
126
126
  p headers # => { ... }
127
127
  p data # => <GetAccountNumbersResponseLegacy20230218>
128
128
  rescue MoneyKit::ApiError => e
129
- puts "Error when calling AccountsApi->get_account_numbers_legacy20230218_with_http_info: #{e}"
129
+ puts "Error when calling AccountsApi->get_account_numbers_with_http_info: #{e}"
130
130
  end
131
131
  ```
132
132
 
@@ -0,0 +1,22 @@
1
+ # MoneyKit::Response401GetAccountNumbers
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error_code** | **Object** | | [optional] |
8
+ | **error_message** | **Object** | | |
9
+ | **documentation_url** | **Object** | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'moneykit'
15
+
16
+ instance = MoneyKit::Response401GetAccountNumbers.new(
17
+ error_code: null,
18
+ error_message: null,
19
+ documentation_url: null
20
+ )
21
+ ```
22
+
@@ -24,8 +24,8 @@ module MoneyKit
24
24
  # @param id [String] The unique ID for this link.
25
25
  # @param [Hash] opts the optional parameters
26
26
  # @return [GetAccountNumbersResponseLegacy20230218]
27
- def get_account_numbers_legacy20230218(id, opts = {})
28
- data, _status_code, _headers = get_account_numbers_legacy20230218_with_http_info(id, opts)
27
+ def get_account_numbers(id, opts = {})
28
+ data, _status_code, _headers = get_account_numbers_with_http_info(id, opts)
29
29
  data
30
30
  end
31
31
 
@@ -34,13 +34,13 @@ module MoneyKit
34
34
  # @param id [String] The unique ID for this link.
35
35
  # @param [Hash] opts the optional parameters
36
36
  # @return [Array<(GetAccountNumbersResponseLegacy20230218, Integer, Hash)>] GetAccountNumbersResponseLegacy20230218 data, response status code and response headers
37
- def get_account_numbers_legacy20230218_with_http_info(id, opts = {})
37
+ def get_account_numbers_with_http_info(id, opts = {})
38
38
  if @api_client.config.debugging
39
- @api_client.config.logger.debug 'Calling API: AccountNumbersApi.get_account_numbers_legacy20230218 ...'
39
+ @api_client.config.logger.debug 'Calling API: AccountNumbersApi.get_account_numbers ...'
40
40
  end
41
41
  # verify the required parameter 'id' is set
42
42
  if @api_client.config.client_side_validation && id.nil?
43
- fail ArgumentError, "Missing the required parameter 'id' when calling AccountNumbersApi.get_account_numbers_legacy20230218"
43
+ fail ArgumentError, "Missing the required parameter 'id' when calling AccountNumbersApi.get_account_numbers"
44
44
  end
45
45
  # resource path
46
46
  local_var_path = '/links/{id}/accounts/numbers'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
@@ -66,7 +66,7 @@ module MoneyKit
66
66
  auth_names = opts[:debug_auth_names] || ['OAuth2ClientCredentials']
67
67
 
68
68
  new_options = opts.merge(
69
- :operation => :"AccountNumbersApi.get_account_numbers_legacy20230218",
69
+ :operation => :"AccountNumbersApi.get_account_numbers",
70
70
  :header_params => header_params,
71
71
  :query_params => query_params,
72
72
  :form_params => form_params,
@@ -77,7 +77,7 @@ module MoneyKit
77
77
 
78
78
  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
79
79
  if @api_client.config.debugging
80
- @api_client.config.logger.debug "API called: AccountNumbersApi#get_account_numbers_legacy20230218\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
80
+ @api_client.config.logger.debug "API called: AccountNumbersApi#get_account_numbers\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
81
81
  end
82
82
  return data, status_code, headers
83
83
  end
@@ -93,8 +93,8 @@ module MoneyKit
93
93
  # @param id [String] The unique ID for this link.
94
94
  # @param [Hash] opts the optional parameters
95
95
  # @return [GetAccountNumbersResponseLegacy20230218]
96
- def get_account_numbers_legacy20230218(id, opts = {})
97
- data, _status_code, _headers = get_account_numbers_legacy20230218_with_http_info(id, opts)
96
+ def get_account_numbers(id, opts = {})
97
+ data, _status_code, _headers = get_account_numbers_with_http_info(id, opts)
98
98
  data
99
99
  end
100
100
 
@@ -103,13 +103,13 @@ module MoneyKit
103
103
  # @param id [String] The unique ID for this link.
104
104
  # @param [Hash] opts the optional parameters
105
105
  # @return [Array<(GetAccountNumbersResponseLegacy20230218, Integer, Hash)>] GetAccountNumbersResponseLegacy20230218 data, response status code and response headers
106
- def get_account_numbers_legacy20230218_with_http_info(id, opts = {})
106
+ def get_account_numbers_with_http_info(id, opts = {})
107
107
  if @api_client.config.debugging
108
- @api_client.config.logger.debug 'Calling API: AccountsApi.get_account_numbers_legacy20230218 ...'
108
+ @api_client.config.logger.debug 'Calling API: AccountsApi.get_account_numbers ...'
109
109
  end
110
110
  # verify the required parameter 'id' is set
111
111
  if @api_client.config.client_side_validation && id.nil?
112
- fail ArgumentError, "Missing the required parameter 'id' when calling AccountsApi.get_account_numbers_legacy20230218"
112
+ fail ArgumentError, "Missing the required parameter 'id' when calling AccountsApi.get_account_numbers"
113
113
  end
114
114
  # resource path
115
115
  local_var_path = '/links/{id}/accounts/numbers'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
@@ -135,7 +135,7 @@ module MoneyKit
135
135
  auth_names = opts[:debug_auth_names] || ['OAuth2ClientCredentials']
136
136
 
137
137
  new_options = opts.merge(
138
- :operation => :"AccountsApi.get_account_numbers_legacy20230218",
138
+ :operation => :"AccountsApi.get_account_numbers",
139
139
  :header_params => header_params,
140
140
  :query_params => query_params,
141
141
  :form_params => form_params,
@@ -146,7 +146,7 @@ module MoneyKit
146
146
 
147
147
  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
148
148
  if @api_client.config.debugging
149
- @api_client.config.logger.debug "API called: AccountsApi#get_account_numbers_legacy20230218\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
149
+ @api_client.config.logger.debug "API called: AccountsApi#get_account_numbers\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
150
150
  end
151
151
  return data, status_code, headers
152
152
  end
@@ -0,0 +1,104 @@
1
+ =begin
2
+ #MoneyKit API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 2023-02-18
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.1.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module MoneyKit
17
+ module Response401GetAccountNumbers
18
+ class << self
19
+ # List of class defined in anyOf (OpenAPI v3)
20
+ def openapi_any_of
21
+ [
22
+ :'APIErrorAuthExpiredAccessTokenResponse',
23
+ :'APIErrorAuthUnauthorizedResponse',
24
+ :'LinkErrorUnauthorizedAccessResponse'
25
+ ]
26
+ end
27
+
28
+ # Builds the object
29
+ # @param [Mixed] Data to be matched against the list of anyOf items
30
+ # @return [Object] Returns the model or the data itself
31
+ def build(data)
32
+ # Go through the list of anyOf items and attempt to identify the appropriate one.
33
+ # Note:
34
+ # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
35
+ # due to the way the deserialization is made in the base_object template (it just casts without verifying).
36
+ # - TODO: scalar values are de facto behaving as if they were nullable.
37
+ # - TODO: logging when debugging is set.
38
+ openapi_any_of.each do |klass|
39
+ begin
40
+ next if klass == :AnyType # "nullable: true"
41
+ typed_data = find_and_cast_into_type(klass, data)
42
+ return typed_data if typed_data
43
+ rescue # rescue all errors so we keep iterating even if the current item lookup raises
44
+ end
45
+ end
46
+
47
+ openapi_any_of.include?(:AnyType) ? data : nil
48
+ end
49
+
50
+ private
51
+
52
+ SchemaMismatchError = Class.new(StandardError)
53
+
54
+ # Note: 'File' is missing here because in the regular case we get the data _after_ a call to JSON.parse.
55
+ def find_and_cast_into_type(klass, data)
56
+ return if data.nil?
57
+
58
+ case klass.to_s
59
+ when 'Boolean'
60
+ return data if data.instance_of?(TrueClass) || data.instance_of?(FalseClass)
61
+ when 'Float'
62
+ return data if data.instance_of?(Float)
63
+ when 'Integer'
64
+ return data if data.instance_of?(Integer)
65
+ when 'Time'
66
+ return Time.parse(data)
67
+ when 'Date'
68
+ return Date.parse(data)
69
+ when 'String'
70
+ return data if data.instance_of?(String)
71
+ when 'Object' # "type: object"
72
+ return data if data.instance_of?(Hash)
73
+ when /\AArray<(?<sub_type>.+)>\z/ # "type: array"
74
+ if data.instance_of?(Array)
75
+ sub_type = Regexp.last_match[:sub_type]
76
+ return data.map { |item| find_and_cast_into_type(sub_type, item) }
77
+ end
78
+ when /\AHash<String, (?<sub_type>.+)>\z/ # "type: object" with "additionalProperties: { ... }"
79
+ if data.instance_of?(Hash) && data.keys.all? { |k| k.instance_of?(Symbol) || k.instance_of?(String) }
80
+ sub_type = Regexp.last_match[:sub_type]
81
+ return data.each_with_object({}) { |(k, v), hsh| hsh[k] = find_and_cast_into_type(sub_type, v) }
82
+ end
83
+ else # model
84
+ const = MoneyKit.const_get(klass)
85
+ if const
86
+ if const.respond_to?(:openapi_any_of) # nested anyOf model
87
+ model = const.build(data)
88
+ return model if model
89
+ else
90
+ # raise if data contains keys that are not known to the model
91
+ raise unless (data.keys - const.acceptable_attributes).empty?
92
+ model = const.build_from_hash(data)
93
+ return model if model
94
+ end
95
+ end
96
+ end
97
+
98
+ raise # if no match by now, raise
99
+ rescue
100
+ raise SchemaMismatchError, "#{data} doesn't match the #{klass} type"
101
+ end
102
+ end
103
+ end
104
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 7.1.0
11
11
  =end
12
12
 
13
13
  module MoneyKit
14
- VERSION = '0.1.9'
14
+ VERSION = '0.1.10'
15
15
  end
data/lib/moneykit.rb CHANGED
@@ -97,7 +97,7 @@ require 'moneykit/models/requested_link_permission'
97
97
  require 'moneykit/models/response401_disconnect_links_id_delete'
98
98
  require 'moneykit/models/response401_exchange_token_link_session_exchange_token_post'
99
99
  require 'moneykit/models/response401_get_account_links_id_accounts_account_id_get'
100
- require 'moneykit/models/response401_get_account_numbers_legacy20230218_links_id_accounts_numbers_get'
100
+ require 'moneykit/models/response401_get_account_numbers'
101
101
  require 'moneykit/models/response401_get_accounts_links_id_accounts_get'
102
102
  require 'moneykit/models/response401_get_holdings_links_id_investments_holdings_get'
103
103
  require 'moneykit/models/response401_get_identities_links_id_identity_get'
@@ -0,0 +1,21 @@
1
+ =begin
2
+ #MoneyKit API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 2023-02-18
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.1.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for MoneyKit::Response401GetAccountNumbers
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MoneyKit::Response401GetAccountNumbers do
21
+ 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.20240430-1748-tpunxj sitelibdir\=./.gem.20240430-1748-tpunxj clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-le2hj6 sitelibdir\=./.gem.20240502-1835-le2hj6 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.20240430-1748-tpunxj sitelibdir\=./.gem.20240430-1748-tpunxj
9
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-le2hj6 sitelibdir\=./.gem.20240502-1835-le2hj6
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.20240430-1748-tpunxj sitelibdir\=./.gem.20240430-1748-tpunxj install
39
- /usr/bin/install -c -m 0755 byebug.so ./.gem.20240430-1748-tpunxj/byebug
38
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-le2hj6 sitelibdir\=./.gem.20240502-1835-le2hj6 install
39
+ /usr/bin/install -c -m 0755 byebug.so ./.gem.20240502-1835-le2hj6/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.20240430-1748-tpunxj sitelibdir\=./.gem.20240430-1748-tpunxj clean
42
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-le2hj6 sitelibdir\=./.gem.20240502-1835-le2hj6 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.20240430-1748-9f9x4i sitelibdir\=./.gem.20240430-1748-9f9x4i clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-1fp6da sitelibdir\=./.gem.20240502-1835-1fp6da 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.20240430-1748-9f9x4i sitelibdir\=./.gem.20240430-1748-9f9x4i
9
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-1fp6da sitelibdir\=./.gem.20240502-1835-1fp6da
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.20240430-1748-9f9x4i sitelibdir\=./.gem.20240430-1748-9f9x4i install
26
- /usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20240430-1748-9f9x4i/jaro_winkler
25
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-1fp6da sitelibdir\=./.gem.20240502-1835-1fp6da install
26
+ /usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20240502-1835-1fp6da/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.20240430-1748-9f9x4i sitelibdir\=./.gem.20240430-1748-9f9x4i clean
29
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-1fp6da sitelibdir\=./.gem.20240502-1835-1fp6da 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.20240430-1748-ascblc sitelibdir\=./.gem.20240430-1748-ascblc clean
8
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-elu5e2 sitelibdir\=./.gem.20240502-1835-elu5e2 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.20240430-1748-ascblc sitelibdir\=./.gem.20240430-1748-ascblc
14
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-elu5e2 sitelibdir\=./.gem.20240502-1835-elu5e2
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.20240430-1748-ascblc sitelibdir\=./.gem.20240430-1748-ascblc install
24
- /usr/bin/install -c -m 0755 psych.so ./.gem.20240430-1748-ascblc
23
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-elu5e2 sitelibdir\=./.gem.20240502-1835-elu5e2 install
24
+ /usr/bin/install -c -m 0755 psych.so ./.gem.20240502-1835-elu5e2
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.20240430-1748-ascblc sitelibdir\=./.gem.20240430-1748-ascblc clean
27
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-elu5e2 sitelibdir\=./.gem.20240502-1835-elu5e2 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.20240430-1748-70git0 sitelibdir\=./.gem.20240430-1748-70git0 clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-7fyimn sitelibdir\=./.gem.20240502-1835-7fyimn 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.20240430-1748-70git0 sitelibdir\=./.gem.20240430-1748-70git0
9
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-7fyimn sitelibdir\=./.gem.20240502-1835-7fyimn
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.20240430-1748-70git0 sitelibdir\=./.gem.20240430-1748-70git0 install
15
- /usr/bin/install -c -m 0755 cparse.so ./.gem.20240430-1748-70git0/racc
14
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-7fyimn sitelibdir\=./.gem.20240502-1835-7fyimn install
15
+ /usr/bin/install -c -m 0755 cparse.so ./.gem.20240502-1835-7fyimn/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.20240430-1748-70git0 sitelibdir\=./.gem.20240430-1748-70git0 clean
18
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-7fyimn sitelibdir\=./.gem.20240502-1835-7fyimn 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.20240430-1748-k24eti sitelibdir\=./.gem.20240430-1748-k24eti clean
6
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-u0pxjb sitelibdir\=./.gem.20240502-1835-u0pxjb 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.20240430-1748-k24eti sitelibdir\=./.gem.20240430-1748-k24eti
9
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-u0pxjb sitelibdir\=./.gem.20240502-1835-u0pxjb
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.20240430-1748-k24eti sitelibdir\=./.gem.20240430-1748-k24eti install
15
- /usr/bin/install -c -m 0755 stringio.so ./.gem.20240430-1748-k24eti
14
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-u0pxjb sitelibdir\=./.gem.20240502-1835-u0pxjb install
15
+ /usr/bin/install -c -m 0755 stringio.so ./.gem.20240502-1835-u0pxjb
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.20240430-1748-k24eti sitelibdir\=./.gem.20240430-1748-k24eti clean
18
+ make DESTDIR\= sitearchdir\=./.gem.20240502-1835-u0pxjb sitelibdir\=./.gem.20240502-1835-u0pxjb 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.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - MoneyKit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-30 00:00:00.000000000 Z
11
+ date: 2024-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -178,6 +178,7 @@ files:
178
178
  - docs/Response401DisconnectLinksIdDelete.md
179
179
  - docs/Response401ExchangeTokenLinkSessionExchangeTokenPost.md
180
180
  - docs/Response401GetAccountLinksIdAccountsAccountIdGet.md
181
+ - docs/Response401GetAccountNumbers.md
181
182
  - docs/Response401GetAccountNumbersLegacy20230218LinksIdAccountsNumbersGet.md
182
183
  - docs/Response401GetAccountNumbersLinksIdAccountsNumbersGet.md
183
184
  - docs/Response401GetAccountsLinksIdAccountsGet.md
@@ -329,6 +330,7 @@ files:
329
330
  - lib/moneykit/models/response401_disconnect_links_id_delete.rb
330
331
  - lib/moneykit/models/response401_exchange_token_link_session_exchange_token_post.rb
331
332
  - lib/moneykit/models/response401_get_account_links_id_accounts_account_id_get.rb
333
+ - lib/moneykit/models/response401_get_account_numbers.rb
332
334
  - lib/moneykit/models/response401_get_account_numbers_legacy20230218_links_id_accounts_numbers_get.rb
333
335
  - lib/moneykit/models/response401_get_account_numbers_links_id_accounts_numbers_get.rb
334
336
  - lib/moneykit/models/response401_get_accounts_links_id_accounts_get.rb
@@ -476,6 +478,7 @@ files:
476
478
  - spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
477
479
  - spec/models/response401_get_account_numbers_legacy20230218_links_id_accounts_numbers_get_spec.rb
478
480
  - spec/models/response401_get_account_numbers_links_id_accounts_numbers_get_spec.rb
481
+ - spec/models/response401_get_account_numbers_spec.rb
479
482
  - spec/models/response401_get_accounts_links_id_accounts_get_spec.rb
480
483
  - spec/models/response401_get_holdings_links_id_investments_holdings_get_spec.rb
481
484
  - spec/models/response401_get_identities_links_id_identity_get_spec.rb
@@ -2429,6 +2432,7 @@ test_files:
2429
2432
  - spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
2430
2433
  - spec/models/account_with_account_numbers_spec.rb
2431
2434
  - spec/models/investments_link_product_spec.rb
2435
+ - spec/models/response401_get_account_numbers_spec.rb
2432
2436
  - spec/models/link_error_forbidden_action_response_spec.rb
2433
2437
  - spec/models/transaction_sync_response_spec.rb
2434
2438
  - spec/models/product_settings_spec.rb