dwolla_swagger 1.0.10 → 1.0.11
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/README.md +5 -2
- data/lib/dwolla_swagger/api/.DS_Store +0 -0
- data/lib/dwolla_swagger/api/fundingsources_api.rb +4 -0
- data/lib/dwolla_swagger/swagger/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1cac73571db0dd40566d588c24d0bf68fc0e2ea
|
4
|
+
data.tar.gz: ab8c3703633aef0dcc6c2ada3e918d37a95724f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da243dfb40c134253f869c22ae455f7a9d400fda55b202e9f783dd15dc2e7c91d84ac853206ad5267756a5d3b44a87ac9b3a24ca006dd77de1bf121887a7ea3c
|
7
|
+
data.tar.gz: feb4040b1c8d3405a11d34056e4045258175b286754f7f80ed4b30b431d57c5dcc108b79b678cabd2fd98cbf4ea44202e1f53f5c162b6976110e823d123d3df4
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ The new Dwolla API V2 SDK, as generated by [this fork of swagger-codegen](https:
|
|
5
5
|
|
6
6
|
## Version
|
7
7
|
|
8
|
-
1.0.
|
8
|
+
1.0.11
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
@@ -146,6 +146,9 @@ Each model represents the different kinds of requests and responses that can be
|
|
146
146
|
|
147
147
|
## Changelog
|
148
148
|
|
149
|
+
1.0.11
|
150
|
+
* Fix `FundingsourcesApi` to support optional `removed` querystring parameter.
|
151
|
+
|
149
152
|
1.0.10
|
150
153
|
* Fix transfer failure to support deserialization with new transfer failure model.
|
151
154
|
|
@@ -160,7 +163,7 @@ Each model represents the different kinds of requests and responses that can be
|
|
160
163
|
* Ensure DateTime is loaded
|
161
164
|
|
162
165
|
1.0.6
|
163
|
-
* Fix micro deposit methods in `
|
166
|
+
* Fix micro deposit methods in `FundingsourcesApi` to fix issue where requests weren't being sent.
|
164
167
|
|
165
168
|
1.0.5
|
166
169
|
* API schema error fixed, `FundingSource` object now has `_embedded` key to fix serialization issues.
|
Binary file
|
@@ -11,6 +11,7 @@ module DwollaSwagger
|
|
11
11
|
#
|
12
12
|
# @param id Account id to get funding sources for.
|
13
13
|
# @param [Hash] opts the optional parameters
|
14
|
+
# @option opts [boolean] :removed Filter funding sources by this value.
|
14
15
|
# @return [FundingSourceListResponse]
|
15
16
|
def self.get_account_funding_sources(id, opts = {})
|
16
17
|
|
@@ -28,6 +29,7 @@ module DwollaSwagger
|
|
28
29
|
|
29
30
|
# query parameters
|
30
31
|
query_params = {}
|
32
|
+
query_params[:'removed'] = opts[:'removed'] if opts[:'removed']
|
31
33
|
|
32
34
|
# header parameters
|
33
35
|
header_params = {}
|
@@ -57,6 +59,7 @@ module DwollaSwagger
|
|
57
59
|
#
|
58
60
|
# @param id Customer id to get funding sources for.
|
59
61
|
# @param [Hash] opts the optional parameters
|
62
|
+
# @option opts [boolean] :removed Filter funding sources by this value.
|
60
63
|
# @return [FundingSourceListResponse]
|
61
64
|
def self.get_customer_funding_sources(id, opts = {})
|
62
65
|
|
@@ -74,6 +77,7 @@ module DwollaSwagger
|
|
74
77
|
|
75
78
|
# query parameters
|
76
79
|
query_params = {}
|
80
|
+
query_params[:'removed'] = opts[:'removed'] if opts[:'removed']
|
77
81
|
|
78
82
|
# header parameters
|
79
83
|
header_params = {}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dwolla_swagger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zeke Sikelianos
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-
|
13
|
+
date: 2016-07-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: typhoeus
|
@@ -255,6 +255,7 @@ files:
|
|
255
255
|
- Rakefile
|
256
256
|
- dwolla_swagger.gemspec
|
257
257
|
- lib/dwolla_swagger.rb
|
258
|
+
- lib/dwolla_swagger/api/.DS_Store
|
258
259
|
- lib/dwolla_swagger/api/accounts_api.rb
|
259
260
|
- lib/dwolla_swagger/api/businessclassifications_api.rb
|
260
261
|
- lib/dwolla_swagger/api/customers_api.rb
|