yodlee_wrap 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91be96e289ac0ed16b7bb328865c95c56b1e64e3
4
- data.tar.gz: 6a39f206131d80dcc265bc1e86aded6606c299e5
3
+ metadata.gz: d9a5280d8bfdebab954e60428ddaf22dd055166f
4
+ data.tar.gz: 3df7e5b9ab0c40cbe801ce98aeb4bca51efac017
5
5
  SHA512:
6
- metadata.gz: 8d05e183c36aabe3ba06fb028f276d4916a9cb1a3663f95d3335878f3b158e5cd818bcfceaa4654d504ccc78762fc482a00ec0b41a99a74bb9dcde7165e47168
7
- data.tar.gz: e582b194c5a90822fd4e5ebb6c9ec37194b0b37c014ea11e13b73ca2e5cc52ae94325d284dd2db8a9d67a03b52903a0d840392c42dcc9c65ee325a3bf24aa9b2
6
+ metadata.gz: 15180567237aa05b6a4947ae855da3355adc4767c6563c7eaff00b93ba9d7b152958d43db7801f4aa7d0802e7e9ed46f57a780939f7152737ab65d0b047ec1c6
7
+ data.tar.gz: 383e40aa990c06abfc08f4b18fdce489fe78452ec5404db6c8e385956f14d33b7bae9400f5d32debd7b4ab8f029b91d68b8097dc5213db962779cac2f02dfd4c
@@ -1,3 +1,3 @@
1
1
  module YodleeWrap
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -107,12 +107,17 @@ module YodleeWrap
107
107
  user_session_execute_api(:get, "/v1/transactions")
108
108
  end
109
109
 
110
- def get_accounts_for(provider_account_id, container_name)
111
- user_session_execute_api(:get, "/v1/accounts?providerAccountId=#{provider_account_id}&container=&#{container_name}")
110
+ def get_accounts_for(provider_account_id)
111
+ user_session_execute_api(:get, "/v1/accounts?providerAccountId=#{provider_account_id}")
112
112
  end
113
113
 
114
- def get_account(account_id)
115
- user_session_execute_api(:get, "v1/accounts/#{account_id}")
114
+ def get_all_accounts
115
+ user_session_execute_api(:get, "/v1/accounts/")
116
+ end
117
+
118
+ # the get account endpoint requires that the user provide the container type. Not sure why.
119
+ def get_account(account_id, container_name)
120
+ user_session_execute_api(:get, "/v1/accounts/#{account_id}?container=#{container_name}")
116
121
  end
117
122
 
118
123
  def get_provider_details(provider_id)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yodlee_wrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shannon Byrne