moneykit 0.1.5 → 0.1.6
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/AccountBalances.md +3 -1
- data/docs/LinkCommon.md +3 -1
- data/docs/LinkResponse.md +2 -0
- data/lib/moneykit/models/account_balances.rb +14 -4
- data/lib/moneykit/models/link_common.rb +22 -4
- data/lib/moneykit/models/link_response.rb +19 -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 +112 -112
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b58e851a3e57d16e10765fc1c5d02498d681f7eec264f210aa12218971e66bb5
|
4
|
+
data.tar.gz: '09170391b76249ff26a5dc38690e3dad30d2e606a5f1af90074370236414e5e4'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec0d3b7baca97c2e2c3d950687149ca9c01e364871d05c42301c70d2b1f46e4f434a804017730062fa5893c362870296f2e509271028af30c58464e2d041c452
|
7
|
+
data.tar.gz: 454e763418c961943846b634eed790e182f64e4ff5e6ce47924577dfd0ae6c6101dc8d968ca2fedafcc38e11e993245c93a6f1d7dd0b36220a71a2363c9a7e7d
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/docs/AccountBalances.md
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
| **available** | **Float** | The amount of funds available for use. Not all institutions report the available balance. <p>Note that the available balance typically does not include overdraft limits. | [optional] |
|
9
9
|
| **current** | **Float** | The total amount of funds in the account. <p>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. <p>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. <p>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
|
|
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<String>** | | [optional] |
|
15
15
|
| **products** | [**LinkProducts**](LinkProducts.md) | | |
|
16
|
+
| **available_products** | [**Array<Product>**](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<String>** | | [optional] |
|
15
15
|
| **products** | [**LinkProducts**](LinkProducts.md) | | |
|
16
|
+
| **available_products** | [**Array<Product>**](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
|
)
|
@@ -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
|
@@ -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
|
@@ -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
|
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.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.
|
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.
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
26
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
24
|
-
/usr/bin/install -c -m 0755 psych.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
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.
|
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.
|
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.
|
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.
|
15
|
-
/usr/bin/install -c -m 0755 stringio.so ./.gem.
|
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.
|
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
|
+
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-
|
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/
|
2324
|
+
- spec/api/link_session_api_spec.rb
|
2325
2325
|
- spec/api/links_api_spec.rb
|
2326
|
-
- spec/api/
|
2326
|
+
- spec/api/webhooks_api_spec.rb
|
2327
|
+
- spec/api/investments_api_spec.rb
|
2328
|
+
- spec/api/transactions_api_spec.rb
|
2327
2329
|
- spec/api/identity_api_spec.rb
|
2330
|
+
- spec/api/users_api_spec.rb
|
2328
2331
|
- spec/api/accounts_api_spec.rb
|
2329
2332
|
- spec/api/products_api_spec.rb
|
2330
|
-
- spec/api/transactions_api_spec.rb
|
2331
|
-
- spec/api/users_api_spec.rb
|
2332
|
-
- spec/api/account_numbers_api_spec.rb
|
2333
2333
|
- spec/api/access_token_api_spec.rb
|
2334
|
-
- spec/api/
|
2335
|
-
- spec/api/
|
2334
|
+
- spec/api/institutions_api_spec.rb
|
2335
|
+
- spec/api/account_numbers_api_spec.rb
|
2336
2336
|
- spec/api_client_spec.rb
|
2337
2337
|
- spec/configuration_spec.rb
|
2338
|
-
- spec/models/
|
2339
|
-
- spec/models/
|
2340
|
-
- spec/models/
|
2341
|
-
- spec/models/
|
2342
|
-
- spec/models/
|
2343
|
-
- spec/models/
|
2344
|
-
- spec/models/
|
2345
|
-
- spec/models/link_error_deleted_response_spec.rb
|
2346
|
-
- spec/models/get_accounts_response_spec.rb
|
2347
|
-
- spec/models/account_with_account_numbers_spec.rb
|
2348
|
-
- spec/models/response401_get_transactions_spec.rb
|
2349
|
-
- spec/models/link_session_customer_user_phone_spec.rb
|
2350
|
-
- spec/models/get_user_transactions_response_spec.rb
|
2351
|
-
- spec/models/create_link_session_response_spec.rb
|
2352
|
-
- spec/models/transactions_link_product_spec.rb
|
2353
|
-
- spec/models/country_spec.rb
|
2354
|
-
- spec/models/holding_response_spec.rb
|
2355
|
-
- spec/models/validation_error_spec.rb
|
2356
|
-
- spec/models/response401_get_user_accounts_users_id_accounts_get_spec.rb
|
2357
|
-
- spec/models/security_response_spec.rb
|
2358
|
-
- spec/models/link_session_error_invalid_token_exchange_spec.rb
|
2359
|
-
- spec/models/ach_number_spec.rb
|
2360
|
-
- spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
|
2361
|
-
- spec/models/response401_get_account_numbers_links_id_accounts_numbers_get_spec.rb
|
2362
|
-
- spec/models/introspect_client_response_spec.rb
|
2363
|
-
- spec/models/transaction_sync_response_spec.rb
|
2364
|
-
- spec/models/create_link_session_request_spec.rb
|
2365
|
-
- spec/models/investments_link_product_spec.rb
|
2366
|
-
- spec/models/account_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
|
2341
|
+
- spec/models/bacs_number_spec.rb
|
2342
|
+
- spec/models/products_settings_spec.rb
|
2343
|
+
- spec/models/get_account_numbers_response_spec.rb
|
2344
|
+
- spec/models/institution_spec.rb
|
2367
2345
|
- spec/models/account_balances_spec.rb
|
2368
|
-
- spec/models/
|
2369
|
-
- spec/models/get_investment_transactions_response_spec.rb
|
2370
|
-
- spec/models/identity_product_settings_spec.rb
|
2371
|
-
- spec/models/response401_get_user_links_users_id_links_get_spec.rb
|
2372
|
-
- spec/models/link_product_state_spec.rb
|
2373
|
-
- spec/models/link_product_refresh_webhook_spec.rb
|
2346
|
+
- spec/models/provider_spec.rb
|
2374
2347
|
- spec/models/account_group_spec.rb
|
2375
|
-
- spec/models/
|
2376
|
-
- spec/models/
|
2377
|
-
- spec/models/
|
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
|
2378
2351
|
- spec/models/validation_error_location_inner_spec.rb
|
2379
|
-
- spec/models/response401_get_identities_links_id_identity_get_spec.rb
|
2380
|
-
- spec/models/link_response_spec.rb
|
2381
|
-
- spec/models/eft_number_spec.rb
|
2382
|
-
- spec/models/webhook_test_link_request_spec.rb
|
2383
|
-
- spec/models/get_account_response_spec.rb
|
2384
|
-
- spec/models/products_settings_spec.rb
|
2385
|
-
- spec/models/link_error_unauthorized_access_response_spec.rb
|
2386
|
-
- spec/models/transaction_type_spec.rb
|
2387
|
-
- spec/models/email_spec.rb
|
2388
|
-
- spec/models/get_account_numbers_response_spec.rb
|
2389
|
-
- spec/models/transaction_diff_spec.rb
|
2390
2352
|
- spec/models/link_session_customer_user_email_spec.rb
|
2391
|
-
- spec/models/response401_instrospect_client_auth_introspect_get_spec.rb
|
2392
2353
|
- spec/models/account_numbers_spec.rb
|
2393
|
-
- spec/models/
|
2394
|
-
- spec/models/
|
2395
|
-
- spec/models/
|
2396
|
-
- spec/models/get_institutions_response_spec.rb
|
2397
|
-
- spec/models/get_user_accounts_response_spec.rb
|
2398
|
-
- spec/models/identity_response_spec.rb
|
2399
|
-
- spec/models/phone_number_spec.rb
|
2400
|
-
- spec/models/requested_link_permission_spec.rb
|
2401
|
-
- spec/models/account_numbers_link_product_spec.rb
|
2402
|
-
- spec/models/exchange_token_response_spec.rb
|
2403
|
-
- spec/models/transaction_spec.rb
|
2404
|
-
- spec/models/transaction_type_filter_spec.rb
|
2405
|
-
- spec/models/link_error_spec.rb
|
2406
|
-
- spec/models/response401_get_accounts_links_id_accounts_get_spec.rb
|
2354
|
+
- spec/models/transaction_updates_available_webhook_spec.rb
|
2355
|
+
- spec/models/link_session_setting_overrides_spec.rb
|
2356
|
+
- spec/models/introspect_client_response_spec.rb
|
2407
2357
|
- spec/models/http_validation_error_spec.rb
|
2408
|
-
- spec/models/
|
2358
|
+
- spec/models/generate_access_token_response_spec.rb
|
2359
|
+
- spec/models/phone_number_type_spec.rb
|
2360
|
+
- spec/models/international_number_spec.rb
|
2361
|
+
- spec/models/link_error_bad_config_response_spec.rb
|
2362
|
+
- spec/models/response401_get_account_links_id_accounts_account_id_get_spec.rb
|
2409
2363
|
- spec/models/link_session_customer_user_spec.rb
|
2410
|
-
- spec/models/
|
2411
|
-
- spec/models/investments_product_settings_spec.rb
|
2412
|
-
- spec/models/customer_app_spec.rb
|
2413
|
-
- spec/models/api_error_rate_limit_exceeded_response_spec.rb
|
2414
|
-
- spec/models/response401_get_investment_transactions_links_id_investments_transactions_get_spec.rb
|
2364
|
+
- spec/models/response401_instrospect_client_auth_introspect_get_spec.rb
|
2415
2365
|
- spec/models/response401_update_link_links_id_patch_spec.rb
|
2416
|
-
- spec/models/
|
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
|
2371
|
+
- spec/models/identity_link_product_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
|
2377
|
+
- spec/models/link_session_error_invalid_token_exchange_spec.rb
|
2378
|
+
- spec/models/validation_error_spec.rb
|
2379
|
+
- spec/models/link_error_spec.rb
|
2380
|
+
- spec/models/exchange_token_request_spec.rb
|
2417
2381
|
- spec/models/account_identity_spec.rb
|
2418
|
-
- spec/models/
|
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
|
2419
2391
|
- spec/models/institution_error_not_found_response_spec.rb
|
2420
|
-
- spec/models/
|
2392
|
+
- spec/models/create_link_session_response_spec.rb
|
2393
|
+
- spec/models/get_transactions_response_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
|
2421
2397
|
- spec/models/investment_transaction_response_spec.rb
|
2422
|
-
- spec/models/
|
2423
|
-
- spec/models/
|
2424
|
-
- spec/models/
|
2398
|
+
- spec/models/webhook_test_link_request_spec.rb
|
2399
|
+
- spec/models/security_response_spec.rb
|
2400
|
+
- spec/models/get_accounts_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
|
2407
|
+
- spec/models/response401_get_institutions_institutions_get_spec.rb
|
2408
|
+
- spec/models/create_link_session_request_spec.rb
|
2409
|
+
- spec/models/get_account_response_spec.rb
|
2410
|
+
- spec/models/link_permissions_spec.rb
|
2425
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
|
2414
|
+
- spec/models/get_investment_transactions_response_spec.rb
|
2426
2415
|
- spec/models/response401_disconnect_links_id_delete_spec.rb
|
2427
|
-
- spec/models/
|
2428
|
-
- spec/models/
|
2429
|
-
- spec/models/
|
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
|
2430
2423
|
- spec/models/currency_spec.rb
|
2424
|
+
- spec/models/body_spec.rb
|
2431
2425
|
- spec/models/refresh_products_request_spec.rb
|
2432
|
-
- spec/models/
|
2433
|
-
- spec/models/
|
2434
|
-
- spec/models/link_session_setting_overrides_spec.rb
|
2435
|
-
- spec/models/response401_get_user_transactions_spec.rb
|
2436
|
-
- spec/models/jwk_set_spec.rb
|
2437
|
-
- spec/models/link_products_spec.rb
|
2438
|
-
- spec/models/product_spec.rb
|
2439
|
-
- spec/models/cursor_pagination_spec.rb
|
2440
|
-
- spec/models/response401_get_well_known_jwks_well_known_jwks_json_get_spec.rb
|
2441
|
-
- spec/models/identity_link_product_spec.rb
|
2442
|
-
- spec/models/response401_refresh_products_links_id_products_post_spec.rb
|
2443
|
-
- spec/models/generate_access_token_response_spec.rb
|
2444
|
-
- spec/models/response401_get_institution_institutions_institution_id_get_spec.rb
|
2445
|
-
- spec/models/webhook_link_test_event_spec.rb
|
2446
|
-
- spec/models/link_session_error_forbidden_config_response_spec.rb
|
2447
|
-
- spec/models/transaction_updates_available_webhook_spec.rb
|
2448
|
-
- spec/models/link_permission_scope_spec.rb
|
2449
|
-
- spec/models/bacs_number_spec.rb
|
2450
|
-
- spec/models/response_handle_link_webhook_event_request_body_webhook_post_spec.rb
|
2451
|
-
- spec/models/link_product_failure_reasons_spec.rb
|
2452
|
-
- spec/models/link_error_bad_state_response_spec.rb
|
2426
|
+
- spec/models/link_state_spec.rb
|
2427
|
+
- spec/models/link_product_refresh_webhook_spec.rb
|
2453
2428
|
- spec/models/response401_reset_login_links_id_reset_post_spec.rb
|
2454
|
-
- spec/models/
|
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
|
2455
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
|
2456
2446
|
- spec/models/address_spec.rb
|
2457
|
-
- spec/models/
|
2458
|
-
- spec/models/
|
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
|
2454
|
+
- spec/models/link_product_failure_reasons_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
|