moneykit 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/docs/LinkCommon.md +2 -0
- data/docs/LinkResponse.md +2 -0
- data/lib/moneykit/models/link_common.rb +18 -1
- data/lib/moneykit/models/link_response.rb +18 -1
- data/lib/moneykit/version.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.1.1.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.1.0/gem_make.out +5 -5
- metadata +101 -101
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6c97743c18c78cbd3a320726d8e18197e0ec16b3f0deed8cba12cc25d69bfcc
|
4
|
+
data.tar.gz: 80ed442aabffd11cae68daeee7116f74fb4c48dd9c26fdf4912ddb845e409688
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5831715e5c9b0f4d707778170d1eba44f485816a68fe842d4af97bad4bbc62f6640b025c100e87900ed30530c3e6cb826cfd3aee8af1840242c517ec0800fea
|
7
|
+
data.tar.gz: 1facd7a1a15ca4268f84e1472609ea9487b6cd8c8fe2b6e68cde742084dfb2644cc1353bc059bf553ed47d6e80c94406c882870624b78c3513db71ba6f51510d
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/docs/LinkCommon.md
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
| **link_id** | **String** | The unique ID for this link. | |
|
8
8
|
| **institution_id** | **String** | The unique ID for the institution this link is connected to. | |
|
9
9
|
| **institution_name** | **String** | The institution name this link is connected to. | |
|
10
|
+
| **institution_avatar** | **String** | An avatar image for the link's institution. | |
|
10
11
|
| **state** | [**LinkState**](LinkState.md) | | |
|
11
12
|
| **error_code** | [**PublicLinkError**](PublicLinkError.md) | | [optional] |
|
12
13
|
| **last_synced_at** | **Time** | An ISO-8601 timestamp indicating the last time that the account was updated. | [optional] |
|
@@ -22,6 +23,7 @@ instance = MoneyKit::LinkCommon.new(
|
|
22
23
|
link_id: mk_eqkWN34UEoa2NxyALG8pcV,
|
23
24
|
institution_id: chase,
|
24
25
|
institution_name: Chase,
|
26
|
+
institution_avatar: https://example.com/avatar.png,
|
25
27
|
state: null,
|
26
28
|
error_code: null,
|
27
29
|
last_synced_at: 2023-02-16T09:14:11,
|
data/docs/LinkResponse.md
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
| **link_id** | **String** | The unique ID for this link. | |
|
8
8
|
| **institution_id** | **String** | The unique ID for the institution this link is connected to. | |
|
9
9
|
| **institution_name** | **String** | The institution name this link is connected to. | |
|
10
|
+
| **institution_avatar** | **String** | An avatar image for the link's institution. | |
|
10
11
|
| **state** | [**LinkState**](LinkState.md) | | |
|
11
12
|
| **error_code** | [**PublicLinkError**](PublicLinkError.md) | | [optional] |
|
12
13
|
| **last_synced_at** | **Time** | An ISO-8601 timestamp indicating the last time that the account was updated. | [optional] |
|
@@ -24,6 +25,7 @@ instance = MoneyKit::LinkResponse.new(
|
|
24
25
|
link_id: mk_eqkWN34UEoa2NxyALG8pcV,
|
25
26
|
institution_id: chase,
|
26
27
|
institution_name: Chase,
|
28
|
+
institution_avatar: https://example.com/avatar.png,
|
27
29
|
state: null,
|
28
30
|
error_code: null,
|
29
31
|
last_synced_at: 2023-02-16T09:14:11,
|
@@ -24,6 +24,9 @@ module MoneyKit
|
|
24
24
|
# The institution name this link is connected to.
|
25
25
|
attr_accessor :institution_name
|
26
26
|
|
27
|
+
# An avatar image for the link's institution.
|
28
|
+
attr_accessor :institution_avatar
|
29
|
+
|
27
30
|
attr_accessor :state
|
28
31
|
|
29
32
|
attr_accessor :error_code
|
@@ -63,6 +66,7 @@ module MoneyKit
|
|
63
66
|
:'link_id' => :'link_id',
|
64
67
|
:'institution_id' => :'institution_id',
|
65
68
|
:'institution_name' => :'institution_name',
|
69
|
+
:'institution_avatar' => :'institution_avatar',
|
66
70
|
:'state' => :'state',
|
67
71
|
:'error_code' => :'error_code',
|
68
72
|
:'last_synced_at' => :'last_synced_at',
|
@@ -82,6 +86,7 @@ module MoneyKit
|
|
82
86
|
:'link_id' => :'String',
|
83
87
|
:'institution_id' => :'String',
|
84
88
|
:'institution_name' => :'String',
|
89
|
+
:'institution_avatar' => :'String',
|
85
90
|
:'state' => :'LinkState',
|
86
91
|
:'error_code' => :'PublicLinkError',
|
87
92
|
:'last_synced_at' => :'Time',
|
@@ -129,6 +134,12 @@ module MoneyKit
|
|
129
134
|
self.institution_name = nil
|
130
135
|
end
|
131
136
|
|
137
|
+
if attributes.key?(:'institution_avatar')
|
138
|
+
self.institution_avatar = attributes[:'institution_avatar']
|
139
|
+
else
|
140
|
+
self.institution_avatar = nil
|
141
|
+
end
|
142
|
+
|
132
143
|
if attributes.key?(:'state')
|
133
144
|
self.state = attributes[:'state']
|
134
145
|
else
|
@@ -173,6 +184,10 @@ module MoneyKit
|
|
173
184
|
invalid_properties.push('invalid value for "institution_name", institution_name cannot be nil.')
|
174
185
|
end
|
175
186
|
|
187
|
+
if @institution_avatar.nil?
|
188
|
+
invalid_properties.push('invalid value for "institution_avatar", institution_avatar cannot be nil.')
|
189
|
+
end
|
190
|
+
|
176
191
|
if @state.nil?
|
177
192
|
invalid_properties.push('invalid value for "state", state cannot be nil.')
|
178
193
|
end
|
@@ -191,6 +206,7 @@ module MoneyKit
|
|
191
206
|
return false if @link_id.nil?
|
192
207
|
return false if @institution_id.nil?
|
193
208
|
return false if @institution_name.nil?
|
209
|
+
return false if @institution_avatar.nil?
|
194
210
|
return false if @state.nil?
|
195
211
|
return false if @products.nil?
|
196
212
|
true
|
@@ -204,6 +220,7 @@ module MoneyKit
|
|
204
220
|
link_id == o.link_id &&
|
205
221
|
institution_id == o.institution_id &&
|
206
222
|
institution_name == o.institution_name &&
|
223
|
+
institution_avatar == o.institution_avatar &&
|
207
224
|
state == o.state &&
|
208
225
|
error_code == o.error_code &&
|
209
226
|
last_synced_at == o.last_synced_at &&
|
@@ -220,7 +237,7 @@ module MoneyKit
|
|
220
237
|
# Calculates hash code according to all attributes.
|
221
238
|
# @return [Integer] Hash code
|
222
239
|
def hash
|
223
|
-
[link_id, institution_id, institution_name, state, error_code, last_synced_at, tags, products].hash
|
240
|
+
[link_id, institution_id, institution_name, institution_avatar, state, error_code, last_synced_at, tags, products].hash
|
224
241
|
end
|
225
242
|
|
226
243
|
# Builds the object from hash
|
@@ -24,6 +24,9 @@ module MoneyKit
|
|
24
24
|
# The institution name this link is connected to.
|
25
25
|
attr_accessor :institution_name
|
26
26
|
|
27
|
+
# An avatar image for the link's institution.
|
28
|
+
attr_accessor :institution_avatar
|
29
|
+
|
27
30
|
attr_accessor :state
|
28
31
|
|
29
32
|
attr_accessor :error_code
|
@@ -68,6 +71,7 @@ module MoneyKit
|
|
68
71
|
:'link_id' => :'link_id',
|
69
72
|
:'institution_id' => :'institution_id',
|
70
73
|
:'institution_name' => :'institution_name',
|
74
|
+
:'institution_avatar' => :'institution_avatar',
|
71
75
|
:'state' => :'state',
|
72
76
|
:'error_code' => :'error_code',
|
73
77
|
:'last_synced_at' => :'last_synced_at',
|
@@ -89,6 +93,7 @@ module MoneyKit
|
|
89
93
|
:'link_id' => :'String',
|
90
94
|
:'institution_id' => :'String',
|
91
95
|
:'institution_name' => :'String',
|
96
|
+
:'institution_avatar' => :'String',
|
92
97
|
:'state' => :'LinkState',
|
93
98
|
:'error_code' => :'PublicLinkError',
|
94
99
|
:'last_synced_at' => :'Time',
|
@@ -138,6 +143,12 @@ module MoneyKit
|
|
138
143
|
self.institution_name = nil
|
139
144
|
end
|
140
145
|
|
146
|
+
if attributes.key?(:'institution_avatar')
|
147
|
+
self.institution_avatar = attributes[:'institution_avatar']
|
148
|
+
else
|
149
|
+
self.institution_avatar = nil
|
150
|
+
end
|
151
|
+
|
141
152
|
if attributes.key?(:'state')
|
142
153
|
self.state = attributes[:'state']
|
143
154
|
else
|
@@ -192,6 +203,10 @@ module MoneyKit
|
|
192
203
|
invalid_properties.push('invalid value for "institution_name", institution_name cannot be nil.')
|
193
204
|
end
|
194
205
|
|
206
|
+
if @institution_avatar.nil?
|
207
|
+
invalid_properties.push('invalid value for "institution_avatar", institution_avatar cannot be nil.')
|
208
|
+
end
|
209
|
+
|
195
210
|
if @state.nil?
|
196
211
|
invalid_properties.push('invalid value for "state", state cannot be nil.')
|
197
212
|
end
|
@@ -214,6 +229,7 @@ module MoneyKit
|
|
214
229
|
return false if @link_id.nil?
|
215
230
|
return false if @institution_id.nil?
|
216
231
|
return false if @institution_name.nil?
|
232
|
+
return false if @institution_avatar.nil?
|
217
233
|
return false if @state.nil?
|
218
234
|
return false if @products.nil?
|
219
235
|
return false if @provider.nil?
|
@@ -228,6 +244,7 @@ module MoneyKit
|
|
228
244
|
link_id == o.link_id &&
|
229
245
|
institution_id == o.institution_id &&
|
230
246
|
institution_name == o.institution_name &&
|
247
|
+
institution_avatar == o.institution_avatar &&
|
231
248
|
state == o.state &&
|
232
249
|
error_code == o.error_code &&
|
233
250
|
last_synced_at == o.last_synced_at &&
|
@@ -246,7 +263,7 @@ module MoneyKit
|
|
246
263
|
# Calculates hash code according to all attributes.
|
247
264
|
# @return [Integer] Hash code
|
248
265
|
def hash
|
249
|
-
[link_id, institution_id, institution_name, state, error_code, last_synced_at, tags, products, provider, webhook].hash
|
266
|
+
[link_id, institution_id, institution_name, institution_avatar, state, error_code, last_synced_at, tags, products, provider, webhook].hash
|
250
267
|
end
|
251
268
|
|
252
269
|
# Builds the object from hash
|
data/lib/moneykit/version.rb
CHANGED
@@ -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.
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-nguxwb sitelibdir\=./.gem.20231220-1852-nguxwb 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.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-nguxwb sitelibdir\=./.gem.20231220-1852-nguxwb
|
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.
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
38
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-nguxwb sitelibdir\=./.gem.20231220-1852-nguxwb install
|
39
|
+
/usr/bin/install -c -m 0755 byebug.so ./.gem.20231220-1852-nguxwb/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.
|
42
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-nguxwb sitelibdir\=./.gem.20231220-1852-nguxwb 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.
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-5rjpox sitelibdir\=./.gem.20231220-1852-5rjpox 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.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-5rjpox sitelibdir\=./.gem.20231220-1852-5rjpox
|
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.
|
26
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
25
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-5rjpox sitelibdir\=./.gem.20231220-1852-5rjpox install
|
26
|
+
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20231220-1852-5rjpox/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.
|
29
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-5rjpox sitelibdir\=./.gem.20231220-1852-5rjpox 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.
|
8
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-xs0h5r sitelibdir\=./.gem.20231220-1852-xs0h5r 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.
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-xs0h5r sitelibdir\=./.gem.20231220-1852-xs0h5r
|
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.
|
24
|
-
/usr/bin/install -c -m 0755 psych.so ./.gem.
|
23
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-xs0h5r sitelibdir\=./.gem.20231220-1852-xs0h5r install
|
24
|
+
/usr/bin/install -c -m 0755 psych.so ./.gem.20231220-1852-xs0h5r
|
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.
|
27
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-xs0h5r sitelibdir\=./.gem.20231220-1852-xs0h5r 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.
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-oeh4pi sitelibdir\=./.gem.20231220-1852-oeh4pi 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.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-oeh4pi sitelibdir\=./.gem.20231220-1852-oeh4pi
|
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.
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-oeh4pi sitelibdir\=./.gem.20231220-1852-oeh4pi install
|
15
|
+
/usr/bin/install -c -m 0755 cparse.so ./.gem.20231220-1852-oeh4pi/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.
|
18
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-oeh4pi sitelibdir\=./.gem.20231220-1852-oeh4pi 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.
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-aaan38 sitelibdir\=./.gem.20231220-1852-aaan38 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.
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-aaan38 sitelibdir\=./.gem.20231220-1852-aaan38
|
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.
|
15
|
-
/usr/bin/install -c -m 0755 stringio.so ./.gem.
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-aaan38 sitelibdir\=./.gem.20231220-1852-aaan38 install
|
15
|
+
/usr/bin/install -c -m 0755 stringio.so ./.gem.20231220-1852-aaan38
|
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.
|
18
|
+
make DESTDIR\= sitearchdir\=./.gem.20231220-1852-aaan38 sitelibdir\=./.gem.20231220-1852-aaan38 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
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MoneyKit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -2289,127 +2289,127 @@ summary: MoneyKit API Ruby Gem
|
|
2289
2289
|
test_files:
|
2290
2290
|
- spec/api/users_api_spec.rb
|
2291
2291
|
- spec/api/transactions_api_spec.rb
|
2292
|
-
- spec/api/account_numbers_api_spec.rb
|
2293
|
-
- spec/api/links_api_spec.rb
|
2294
|
-
- spec/api/institutions_api_spec.rb
|
2295
|
-
- spec/api/webhooks_api_spec.rb
|
2296
2292
|
- spec/api/identity_api_spec.rb
|
2297
|
-
- spec/api/link_session_api_spec.rb
|
2298
|
-
- spec/api/accounts_api_spec.rb
|
2299
2293
|
- spec/api/products_api_spec.rb
|
2294
|
+
- spec/api/institutions_api_spec.rb
|
2300
2295
|
- spec/api/access_token_api_spec.rb
|
2296
|
+
- spec/api/accounts_api_spec.rb
|
2297
|
+
- spec/api/link_session_api_spec.rb
|
2298
|
+
- spec/api/links_api_spec.rb
|
2299
|
+
- spec/api/webhooks_api_spec.rb
|
2300
|
+
- spec/api/account_numbers_api_spec.rb
|
2301
2301
|
- spec/api_client_spec.rb
|
2302
2302
|
- spec/configuration_spec.rb
|
2303
|
-
- spec/models/response401_get_link_links_id_get_spec.rb
|
2304
|
-
- spec/models/validation_error_location_inner_spec.rb
|
2305
|
-
- spec/models/account_numbers_product_settings_spec.rb
|
2306
|
-
- spec/models/refresh_products_request_spec.rb
|
2307
|
-
- spec/models/response_handle_link_webhook_event_request_body_webhook_post_spec.rb
|
2308
|
-
- spec/models/api_error_rate_limit_exceeded_response_spec.rb
|
2309
|
-
- spec/models/http_validation_error_spec.rb
|
2310
|
-
- spec/models/transactions_link_product_spec.rb
|
2311
|
-
- spec/models/account_numbers_spec.rb
|
2312
|
-
- spec/models/response401_get_transactions_diff_links_id_transactions_sync_get_spec.rb
|
2313
|
-
- spec/models/link_error_forbidden_action_response_spec.rb
|
2314
|
-
- spec/models/owner_spec.rb
|
2315
|
-
- spec/models/link_common_spec.rb
|
2316
|
-
- spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
|
2317
|
-
- spec/models/link_error_deleted_response_spec.rb
|
2318
|
-
- spec/models/link_products_spec.rb
|
2319
|
-
- spec/models/ach_number_spec.rb
|
2320
|
-
- spec/models/get_user_links_response_spec.rb
|
2321
|
-
- spec/models/institution_spec.rb
|
2322
|
-
- spec/models/response401_exchange_token_link_session_exchange_token_post_spec.rb
|
2323
|
-
- spec/models/api_error_auth_expired_access_token_response_spec.rb
|
2324
|
-
- spec/models/address_spec.rb
|
2325
|
-
- spec/models/get_transactions_response_spec.rb
|
2326
|
-
- spec/models/link_error_bad_state_response_spec.rb
|
2327
|
-
- spec/models/introspect_client_response_spec.rb
|
2328
|
-
- spec/models/link_error_bad_config_response_spec.rb
|
2329
|
-
- spec/models/link_product_refresh_webhook_spec.rb
|
2330
|
-
- spec/models/account_group_spec.rb
|
2331
|
-
- spec/models/requested_link_permission_spec.rb
|
2332
|
-
- spec/models/response401_get_institutions_institutions_get_spec.rb
|
2333
2303
|
- spec/models/response401_get_transactions_links_id_transactions_get_spec.rb
|
2334
|
-
- spec/models/
|
2335
|
-
- spec/models/
|
2336
|
-
- spec/models/validation_error_spec.rb
|
2337
|
-
- spec/models/api_error_auth_unauthorized_response_spec.rb
|
2304
|
+
- spec/models/transaction_updates_available_webhook_spec.rb
|
2305
|
+
- spec/models/link_permission_scope_spec.rb
|
2338
2306
|
- spec/models/response401_refresh_products_links_id_products_post_spec.rb
|
2307
|
+
- spec/models/link_product_refresh_webhook_spec.rb
|
2308
|
+
- spec/models/body_spec.rb
|
2309
|
+
- spec/models/eft_number_spec.rb
|
2310
|
+
- spec/models/institution_error_not_found_response_spec.rb
|
2311
|
+
- spec/models/account_identity_spec.rb
|
2312
|
+
- spec/models/requested_link_permission_spec.rb
|
2313
|
+
- spec/models/response401_disconnect_links_id_delete_spec.rb
|
2314
|
+
- spec/models/provider_spec.rb
|
2315
|
+
- spec/models/money_kit_connect_features_spec.rb
|
2316
|
+
- spec/models/cursor_pagination_spec.rb
|
2339
2317
|
- spec/models/identity_response_spec.rb
|
2340
|
-
- spec/models/link_session_error_forbidden_config_response_spec.rb
|
2341
2318
|
- spec/models/investments_product_settings_spec.rb
|
2342
|
-
- spec/models/
|
2343
|
-
- spec/models/
|
2344
|
-
- spec/models/response401_update_link_links_id_patch_spec.rb
|
2345
|
-
- spec/models/country_spec.rb
|
2346
|
-
- spec/models/accounts_link_product_spec.rb
|
2347
|
-
- spec/models/transaction_type_filter_spec.rb
|
2348
|
-
- spec/models/exchange_token_response_spec.rb
|
2349
|
-
- spec/models/transaction_diff_spec.rb
|
2319
|
+
- spec/models/api_error_auth_unauthorized_response_spec.rb
|
2320
|
+
- spec/models/identity_product_settings_spec.rb
|
2350
2321
|
- spec/models/public_link_error_spec.rb
|
2351
|
-
- spec/models/
|
2352
|
-
- spec/models/get_user_transactions_response_spec.rb
|
2353
|
-
- spec/models/basic_account_details_spec.rb
|
2322
|
+
- spec/models/bacs_number_spec.rb
|
2354
2323
|
- spec/models/phone_number_spec.rb
|
2355
|
-
- spec/models/
|
2356
|
-
- spec/models/
|
2357
|
-
- spec/models/
|
2324
|
+
- spec/models/transactions_link_product_spec.rb
|
2325
|
+
- spec/models/institution_spec.rb
|
2326
|
+
- spec/models/generate_access_token_response_spec.rb
|
2327
|
+
- spec/models/currency_spec.rb
|
2328
|
+
- spec/models/get_user_accounts_response_spec.rb
|
2329
|
+
- spec/models/accounts_link_product_spec.rb
|
2330
|
+
- spec/models/introspect_client_response_spec.rb
|
2358
2331
|
- spec/models/get_institutions_response_spec.rb
|
2359
|
-
- spec/models/provider_spec.rb
|
2360
2332
|
- spec/models/response401_get_user_transactions_users_id_transactions_get_spec.rb
|
2333
|
+
- spec/models/owner_spec.rb
|
2334
|
+
- spec/models/international_number_spec.rb
|
2335
|
+
- spec/models/transaction_diff_spec.rb
|
2336
|
+
- spec/models/phone_number_type_spec.rb
|
2337
|
+
- spec/models/response401_get_user_links_users_id_links_get_spec.rb
|
2361
2338
|
- spec/models/create_link_session_response_spec.rb
|
2362
|
-
- spec/models/
|
2363
|
-
- spec/models/
|
2364
|
-
- spec/models/link_error_not_found_response_spec.rb
|
2365
|
-
- spec/models/account_identity_spec.rb
|
2366
|
-
- spec/models/response401_get_institution_institutions_institution_id_get_spec.rb
|
2367
|
-
- spec/models/link_state_changed_webhook_spec.rb
|
2339
|
+
- spec/models/response401_get_transactions_diff_links_id_transactions_sync_get_spec.rb
|
2340
|
+
- spec/models/country_spec.rb
|
2368
2341
|
- spec/models/response401_get_identities_links_id_identity_get_spec.rb
|
2369
|
-
- spec/models/
|
2370
|
-
- spec/models/
|
2371
|
-
- spec/models/identity_product_settings_spec.rb
|
2372
|
-
- spec/models/bacs_number_spec.rb
|
2373
|
-
- spec/models/response401_get_well_known_jwks_well_known_jwks_json_get_spec.rb
|
2342
|
+
- spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
|
2343
|
+
- spec/models/link_error_bad_state_response_spec.rb
|
2374
2344
|
- spec/models/account_spec.rb
|
2375
|
-
- spec/models/
|
2376
|
-
- spec/models/
|
2377
|
-
- spec/models/
|
2378
|
-
- spec/models/get_accounts_response_spec.rb
|
2379
|
-
- spec/models/product_spec.rb
|
2380
|
-
- spec/models/link_error_unauthorized_access_response_spec.rb
|
2345
|
+
- spec/models/webhook_test_link_response_spec.rb
|
2346
|
+
- spec/models/api_error_rate_limit_exceeded_response_spec.rb
|
2347
|
+
- spec/models/account_group_spec.rb
|
2381
2348
|
- spec/models/transaction_spec.rb
|
2349
|
+
- spec/models/ach_number_spec.rb
|
2350
|
+
- spec/models/link_session_customer_user_spec.rb
|
2351
|
+
- spec/models/response401_get_user_accounts_users_id_accounts_get_spec.rb
|
2382
2352
|
- spec/models/response401_trigger_test_link_webhook_event_webhooks_test_link_id_post_spec.rb
|
2383
|
-
- spec/models/
|
2384
|
-
- spec/models/create_link_session_request_spec.rb
|
2385
|
-
- spec/models/transactions_product_settings_spec.rb
|
2386
|
-
- spec/models/phone_number_type_spec.rb
|
2387
|
-
- spec/models/response401_instrospect_client_auth_introspect_get_spec.rb
|
2388
|
-
- spec/models/money_kit_connect_features_spec.rb
|
2389
|
-
- spec/models/link_response_spec.rb
|
2390
|
-
- spec/models/institution_error_not_found_response_spec.rb
|
2391
|
-
- spec/models/email_spec.rb
|
2353
|
+
- spec/models/response401_get_institution_institutions_institution_id_get_spec.rb
|
2392
2354
|
- spec/models/link_session_customer_user_email_spec.rb
|
2393
|
-
- spec/models/get_user_accounts_response_spec.rb
|
2394
|
-
- spec/models/get_account_response_spec.rb
|
2395
|
-
- spec/models/international_number_spec.rb
|
2396
|
-
- spec/models/link_state_spec.rb
|
2397
2355
|
- spec/models/response401_get_accounts_links_id_accounts_get_spec.rb
|
2398
|
-
- spec/models/
|
2399
|
-
- spec/models/eft_number_spec.rb
|
2400
|
-
- spec/models/body_spec.rb
|
2401
|
-
- spec/models/cursor_pagination_spec.rb
|
2402
|
-
- spec/models/link_session_customer_user_spec.rb
|
2403
|
-
- spec/models/link_session_customer_user_phone_spec.rb
|
2404
|
-
- spec/models/transaction_type_spec.rb
|
2405
|
-
- spec/models/currency_spec.rb
|
2406
|
-
- spec/models/response401_disconnect_links_id_delete_spec.rb
|
2356
|
+
- spec/models/identity_link_product_spec.rb
|
2407
2357
|
- spec/models/account_balances_spec.rb
|
2358
|
+
- spec/models/response401_get_account_numbers_links_id_accounts_numbers_get_spec.rb
|
2359
|
+
- spec/models/email_spec.rb
|
2360
|
+
- spec/models/transaction_type_filter_spec.rb
|
2361
|
+
- spec/models/transaction_type_spec.rb
|
2362
|
+
- spec/models/link_error_forbidden_action_response_spec.rb
|
2363
|
+
- spec/models/validation_error_location_inner_spec.rb
|
2364
|
+
- spec/models/account_numbers_product_settings_spec.rb
|
2365
|
+
- spec/models/link_session_error_invalid_token_exchange_spec.rb
|
2366
|
+
- spec/models/link_state_spec.rb
|
2367
|
+
- spec/models/transactions_product_settings_spec.rb
|
2368
|
+
- spec/models/exchange_token_request_spec.rb
|
2369
|
+
- spec/models/link_error_bad_config_response_spec.rb
|
2370
|
+
- spec/models/refresh_products_request_spec.rb
|
2371
|
+
- spec/models/transaction_sync_response_spec.rb
|
2372
|
+
- spec/models/link_products_spec.rb
|
2373
|
+
- spec/models/address_spec.rb
|
2374
|
+
- spec/models/get_transactions_response_spec.rb
|
2375
|
+
- spec/models/response401_instrospect_client_auth_introspect_get_spec.rb
|
2376
|
+
- spec/models/link_error_deleted_response_spec.rb
|
2377
|
+
- spec/models/response401_get_well_known_jwks_well_known_jwks_json_get_spec.rb
|
2378
|
+
- spec/models/link_session_customer_user_phone_spec.rb
|
2379
|
+
- spec/models/link_common_spec.rb
|
2380
|
+
- spec/models/webhook_test_link_request_spec.rb
|
2381
|
+
- spec/models/basic_account_details_spec.rb
|
2382
|
+
- spec/models/products_settings_spec.rb
|
2383
|
+
- spec/models/get_accounts_response_spec.rb
|
2384
|
+
- spec/models/link_error_not_found_response_spec.rb
|
2385
|
+
- spec/models/response401_get_institutions_institutions_get_spec.rb
|
2386
|
+
- spec/models/exchange_token_response_spec.rb
|
2387
|
+
- spec/models/response401_reset_login_links_id_reset_post_spec.rb
|
2388
|
+
- spec/models/response401_exchange_token_link_session_exchange_token_post_spec.rb
|
2389
|
+
- spec/models/link_session_error_forbidden_config_response_spec.rb
|
2390
|
+
- spec/models/update_link_request_spec.rb
|
2391
|
+
- spec/models/webhook_link_test_event_spec.rb
|
2392
|
+
- spec/models/link_product_state_spec.rb
|
2393
|
+
- spec/models/response_handle_link_webhook_event_request_body_webhook_post_spec.rb
|
2394
|
+
- spec/models/jwk_set_spec.rb
|
2395
|
+
- spec/models/get_user_links_response_spec.rb
|
2408
2396
|
- spec/models/account_with_account_numbers_spec.rb
|
2409
|
-
- spec/models/
|
2410
|
-
- spec/models/
|
2397
|
+
- spec/models/response401_get_link_links_id_get_spec.rb
|
2398
|
+
- spec/models/link_session_setting_overrides_spec.rb
|
2399
|
+
- spec/models/get_account_response_spec.rb
|
2400
|
+
- spec/models/api_error_auth_expired_access_token_response_spec.rb
|
2401
|
+
- spec/models/response401_update_link_links_id_patch_spec.rb
|
2402
|
+
- spec/models/product_spec.rb
|
2403
|
+
- spec/models/get_user_transactions_response_spec.rb
|
2411
2404
|
- spec/models/link_permissions_spec.rb
|
2412
|
-
- spec/models/link_product_state_spec.rb
|
2413
2405
|
- spec/models/customer_app_spec.rb
|
2414
|
-
- spec/models/
|
2406
|
+
- spec/models/link_response_spec.rb
|
2407
|
+
- spec/models/link_state_changed_webhook_spec.rb
|
2408
|
+
- spec/models/account_numbers_spec.rb
|
2409
|
+
- spec/models/account_numbers_link_product_spec.rb
|
2410
|
+
- spec/models/link_error_unauthorized_access_response_spec.rb
|
2411
|
+
- spec/models/create_link_session_request_spec.rb
|
2412
|
+
- spec/models/get_account_numbers_response_spec.rb
|
2413
|
+
- spec/models/validation_error_spec.rb
|
2414
|
+
- spec/models/http_validation_error_spec.rb
|
2415
2415
|
- spec/spec_helper.rb
|