increase 0.1.3 → 0.2.0

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.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/OPENAPI_VERSION +1 -0
  3. data/README.md +132 -46
  4. data/bin/generate +152 -0
  5. data/bin/setup +8 -0
  6. data/generate/resource.rb.erb +18 -0
  7. data/lib/increase/client.rb +2 -0
  8. data/lib/increase/configuration.rb +1 -1
  9. data/lib/increase/resource.rb +85 -119
  10. data/lib/increase/resources/account_numbers.rb +7 -0
  11. data/lib/increase/resources/account_statements.rb +15 -0
  12. data/lib/increase/resources/account_transfers.rb +10 -2
  13. data/lib/increase/resources/accounts.rb +9 -1
  14. data/lib/increase/resources/ach_prenotifications.rb +17 -0
  15. data/lib/increase/resources/ach_transfers.rb +10 -2
  16. data/lib/increase/resources/card_disputes.rb +17 -0
  17. data/lib/increase/resources/card_profiles.rb +17 -0
  18. data/lib/increase/resources/cards.rb +9 -1
  19. data/lib/increase/resources/check_deposits.rb +17 -0
  20. data/lib/increase/resources/check_transfers.rb +12 -3
  21. data/lib/increase/resources/declined_transactions.rb +15 -0
  22. data/lib/increase/resources/digital_wallet_tokens.rb +15 -0
  23. data/lib/increase/resources/documents.rb +15 -0
  24. data/lib/increase/resources/entities.rb +19 -0
  25. data/lib/increase/resources/event_subscriptions.rb +19 -0
  26. data/lib/increase/resources/events.rb +5 -0
  27. data/lib/increase/resources/external_accounts.rb +19 -0
  28. data/lib/increase/resources/files.rb +17 -0
  29. data/lib/increase/resources/groups.rb +13 -0
  30. data/lib/increase/resources/inbound_ach_transfer_returns.rb +17 -0
  31. data/lib/increase/resources/inbound_wire_drawdown_requests.rb +15 -0
  32. data/lib/increase/resources/limits.rb +7 -0
  33. data/lib/increase/resources/oauth_connections.rb +15 -0
  34. data/lib/increase/resources/pending_transactions.rb +5 -0
  35. data/lib/increase/resources/real_time_decisions.rb +15 -0
  36. data/lib/increase/resources/routing_numbers.rb +4 -0
  37. data/lib/increase/resources/transactions.rb +5 -0
  38. data/lib/increase/resources/wire_drawdown_requests.rb +17 -0
  39. data/lib/increase/resources/wire_transfers.rb +21 -0
  40. data/lib/increase/response_array.rb +19 -0
  41. data/lib/increase/version.rb +1 -1
  42. data/lib/increase/webhook/signature.rb +9 -1
  43. data/openapi.json +32098 -0
  44. metadata +59 -6
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gary Tou
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-20 00:00:00.000000000 Z
11
+ date: 2023-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.3.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: faraday-multipart
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rake
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -98,16 +112,30 @@ dependencies:
98
112
  name: pry
99
113
  requirement: !ruby/object:Gem::Requirement
100
114
  requirements:
101
- - - "~>"
115
+ - - ">="
102
116
  - !ruby/object:Gem::Version
103
- version: '0.13'
117
+ version: '0'
104
118
  type: :development
105
119
  prerelease: false
106
120
  version_requirements: !ruby/object:Gem::Requirement
107
121
  requirements:
108
- - - "~>"
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: erb
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
109
137
  - !ruby/object:Gem::Version
110
- version: '0.13'
138
+ version: '0'
111
139
  description: Ruby API client for Increase, a platform for Bare-Metal Banking APIs
112
140
  email:
113
141
  - gary@garytou.com
@@ -119,8 +147,12 @@ files:
119
147
  - ".standard.yml"
120
148
  - Gemfile
121
149
  - LICENSE.txt
150
+ - OPENAPI_VERSION
122
151
  - README.md
123
152
  - Rakefile
153
+ - bin/generate
154
+ - bin/setup
155
+ - generate/resource.rb.erb
124
156
  - lib/faraday/raise_increase_api_error.rb
125
157
  - lib/increase.rb
126
158
  - lib/increase/client.rb
@@ -129,20 +161,41 @@ files:
129
161
  - lib/increase/resource.rb
130
162
  - lib/increase/resources.rb
131
163
  - lib/increase/resources/account_numbers.rb
164
+ - lib/increase/resources/account_statements.rb
132
165
  - lib/increase/resources/account_transfers.rb
133
166
  - lib/increase/resources/accounts.rb
167
+ - lib/increase/resources/ach_prenotifications.rb
134
168
  - lib/increase/resources/ach_transfers.rb
169
+ - lib/increase/resources/card_disputes.rb
170
+ - lib/increase/resources/card_profiles.rb
135
171
  - lib/increase/resources/cards.rb
172
+ - lib/increase/resources/check_deposits.rb
136
173
  - lib/increase/resources/check_transfers.rb
174
+ - lib/increase/resources/declined_transactions.rb
175
+ - lib/increase/resources/digital_wallet_tokens.rb
176
+ - lib/increase/resources/documents.rb
177
+ - lib/increase/resources/entities.rb
178
+ - lib/increase/resources/event_subscriptions.rb
137
179
  - lib/increase/resources/events.rb
180
+ - lib/increase/resources/external_accounts.rb
181
+ - lib/increase/resources/files.rb
182
+ - lib/increase/resources/groups.rb
183
+ - lib/increase/resources/inbound_ach_transfer_returns.rb
184
+ - lib/increase/resources/inbound_wire_drawdown_requests.rb
138
185
  - lib/increase/resources/limits.rb
186
+ - lib/increase/resources/oauth_connections.rb
139
187
  - lib/increase/resources/pending_transactions.rb
188
+ - lib/increase/resources/real_time_decisions.rb
140
189
  - lib/increase/resources/routing_numbers.rb
141
190
  - lib/increase/resources/transactions.rb
191
+ - lib/increase/resources/wire_drawdown_requests.rb
192
+ - lib/increase/resources/wire_transfers.rb
193
+ - lib/increase/response_array.rb
142
194
  - lib/increase/response_hash.rb
143
195
  - lib/increase/util.rb
144
196
  - lib/increase/version.rb
145
197
  - lib/increase/webhook/signature.rb
198
+ - openapi.json
146
199
  - sig/increase.rbs
147
200
  homepage: https://github.com/garyhtou/increase-ruby
148
201
  licenses: