quovo 1.0.9 → 1.0.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 +4 -4
- data/lib/quovo/models/account.rb +6 -0
- data/lib/quovo/models/brokerage.rb +1 -0
- data/lib/quovo/models/portfolio.rb +15 -5
- data/lib/quovo/models/position.rb +1 -0
- data/lib/quovo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 09a8cfc538c8e460996dc322c7b8b4f5e1efb0ad
|
|
4
|
+
data.tar.gz: 936f507f4b0adf1b7d0072a57b3820336cb6834a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 618dada8fe0248c21e33b07a80e8c82b073ef58bdd57c2846fb8c1b84a5e4528d65d6ca59fde82a43841ec0eaae26769e242c98b1701457a8179c62ac85964a2
|
|
7
|
+
data.tar.gz: fcd3a88ad9e0c90368cb54afb2baf5bb16062ec8f9724b0f3d5887e9541b04e7e1032851bb8270ff937997d59831963435466245b0622c726da515560baa1f78
|
data/lib/quovo/models/account.rb
CHANGED
|
@@ -18,6 +18,7 @@ module Quovo
|
|
|
18
18
|
update_count
|
|
19
19
|
opened
|
|
20
20
|
updated
|
|
21
|
+
last_good_sync
|
|
21
22
|
)
|
|
22
23
|
|
|
23
24
|
undef :opened
|
|
@@ -29,6 +30,11 @@ module Quovo
|
|
|
29
30
|
def updated
|
|
30
31
|
@updated.to_time
|
|
31
32
|
end
|
|
33
|
+
|
|
34
|
+
undef :last_good_sync
|
|
35
|
+
def last_good_sync
|
|
36
|
+
@last_good_sync.to_time
|
|
37
|
+
end
|
|
32
38
|
end
|
|
33
39
|
end
|
|
34
40
|
end
|
|
@@ -7,19 +7,28 @@ module Quovo
|
|
|
7
7
|
401a 401k 403b 457b 529
|
|
8
8
|
Brokerage\ Account
|
|
9
9
|
Education\ Savings\ Account
|
|
10
|
+
Health\ Reimbursement\ Arrangement
|
|
10
11
|
Health\ Savings\ Account
|
|
11
12
|
IRA
|
|
13
|
+
Minor\ Custodial\ Account
|
|
12
14
|
Non-Taxable\ Brokerage\ Account
|
|
13
15
|
Pension
|
|
14
|
-
Roth\ IRA Roth\ 401k Simple\ IRA SEP\ IRA
|
|
15
|
-
Thrift\ Savings\ Plan
|
|
16
16
|
Profit\ Sharing\ Plan
|
|
17
|
+
Roth\ 401k Roth\ IRA SEP\ IRA Simple\ IRA
|
|
17
18
|
Stock\ Plan
|
|
18
|
-
|
|
19
|
+
Thrift\ Savings\ Plan
|
|
20
|
+
Variable\ Annuity
|
|
19
21
|
),
|
|
20
22
|
'Banking' => %w(Checking Credit\ Card Savings),
|
|
21
|
-
'Insurance' => %w(
|
|
22
|
-
|
|
23
|
+
'Insurance' => %w(
|
|
24
|
+
Annuity Fixed\ Annuity Insurance
|
|
25
|
+
Term\ Life\ Insurance
|
|
26
|
+
Universal\ Life\ Insurance
|
|
27
|
+
Variable\ Life\ Insurance
|
|
28
|
+
Whole\ Life\ Insurance
|
|
29
|
+
),
|
|
30
|
+
'Loan' => %w(Auto\ Loan Loan Mortgage Student\ Loan),
|
|
31
|
+
'Other' => %w(Alternative Limited\ Partnership Misc Real\ Estate),
|
|
23
32
|
'Unknown' => %w(Unknown)
|
|
24
33
|
}.freeze
|
|
25
34
|
|
|
@@ -41,6 +50,7 @@ module Quovo
|
|
|
41
50
|
user
|
|
42
51
|
username
|
|
43
52
|
value
|
|
53
|
+
portfolio_type_confidence
|
|
44
54
|
)
|
|
45
55
|
|
|
46
56
|
undef :last_change
|
data/lib/quovo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quovo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Gorkunov
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-
|
|
12
|
+
date: 2017-08-18 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Quovo RESTful API client, configurable, thread-safe and well-tested
|
|
15
15
|
email:
|