increase 1.352.0 → 1.353.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 (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/increase/models/beneficial_owner_create_params.rb +3 -0
  4. data/lib/increase/models/beneficial_owner_update_params.rb +3 -0
  5. data/lib/increase/models/card_payment.rb +1174 -2
  6. data/lib/increase/models/check_transfer.rb +15 -9
  7. data/lib/increase/models/entity.rb +18 -0
  8. data/lib/increase/models/entity_beneficial_owner.rb +3 -0
  9. data/lib/increase/models/entity_create_params.rb +3 -0
  10. data/lib/increase/models/transaction.rb +1174 -2
  11. data/lib/increase/models/wire_drawdown_request.rb +3 -3
  12. data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
  13. data/lib/increase/version.rb +1 -1
  14. data/rbi/increase/models/beneficial_owner_create_params.rbi +7 -0
  15. data/rbi/increase/models/beneficial_owner_update_params.rbi +7 -0
  16. data/rbi/increase/models/card_payment.rbi +5276 -2964
  17. data/rbi/increase/models/check_transfer.rbi +15 -9
  18. data/rbi/increase/models/entity.rbi +42 -0
  19. data/rbi/increase/models/entity_beneficial_owner.rbi +7 -0
  20. data/rbi/increase/models/entity_create_params.rbi +7 -0
  21. data/rbi/increase/models/transaction.rbi +4647 -2335
  22. data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
  23. data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
  24. data/sig/increase/models/beneficial_owner_create_params.rbs +4 -0
  25. data/sig/increase/models/beneficial_owner_update_params.rbs +4 -0
  26. data/sig/increase/models/card_payment.rbs +1186 -0
  27. data/sig/increase/models/entity.rbs +24 -0
  28. data/sig/increase/models/entity_beneficial_owner.rbs +4 -0
  29. data/sig/increase/models/entity_create_params.rbs +4 -0
  30. data/sig/increase/models/transaction.rbs +1186 -0
  31. data/sig/increase/models/wire_drawdown_request.rbs +4 -4
  32. data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
  33. metadata +2 -2
@@ -423,10 +423,6 @@ module Increase
423
423
  Increase::WireDrawdownRequest::Status::TaggedSymbol
424
424
  )
425
425
 
426
- # The drawdown request has been fulfilled by the recipient.
427
- FULFILLED =
428
- T.let(:fulfilled, Increase::WireDrawdownRequest::Status::TaggedSymbol)
429
-
430
426
  # The drawdown request has been sent and the recipient should respond in some way.
431
427
  PENDING_RESPONSE =
432
428
  T.let(
@@ -434,6 +430,10 @@ module Increase
434
430
  Increase::WireDrawdownRequest::Status::TaggedSymbol
435
431
  )
436
432
 
433
+ # The drawdown request has been fulfilled by the recipient.
434
+ FULFILLED =
435
+ T.let(:fulfilled, Increase::WireDrawdownRequest::Status::TaggedSymbol)
436
+
437
437
  # The drawdown request has been refused by the recipient.
438
438
  REFUSED =
439
439
  T.let(:refused, Increase::WireDrawdownRequest::Status::TaggedSymbol)
@@ -172,17 +172,17 @@ module Increase
172
172
  Increase::WireDrawdownRequestListParams::Status::In::TaggedSymbol
173
173
  )
174
174
 
175
- # The drawdown request has been fulfilled by the recipient.
176
- FULFILLED =
175
+ # The drawdown request has been sent and the recipient should respond in some way.
176
+ PENDING_RESPONSE =
177
177
  T.let(
178
- :fulfilled,
178
+ :pending_response,
179
179
  Increase::WireDrawdownRequestListParams::Status::In::TaggedSymbol
180
180
  )
181
181
 
182
- # The drawdown request has been sent and the recipient should respond in some way.
183
- PENDING_RESPONSE =
182
+ # The drawdown request has been fulfilled by the recipient.
183
+ FULFILLED =
184
184
  T.let(
185
- :pending_response,
185
+ :fulfilled,
186
186
  Increase::WireDrawdownRequestListParams::Status::In::TaggedSymbol
187
187
  )
188
188
 
@@ -175,6 +175,7 @@ module Increase
175
175
 
176
176
  type method_ =
177
177
  :social_security_number
178
+ | :social_security_number_last4
178
179
  | :individual_taxpayer_identification_number
179
180
  | :passport
180
181
  | :drivers_license
@@ -186,6 +187,9 @@ module Increase
186
187
  # A social security number.
187
188
  SOCIAL_SECURITY_NUMBER: :social_security_number
188
189
 
190
+ # The last four digits of a social security number.
191
+ SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
192
+
189
193
  # An individual taxpayer identification number (ITIN).
190
194
  INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER: :individual_taxpayer_identification_number
191
195
 
@@ -168,6 +168,7 @@ module Increase
168
168
 
169
169
  type method_ =
170
170
  :social_security_number
171
+ | :social_security_number_last4
171
172
  | :individual_taxpayer_identification_number
172
173
  | :passport
173
174
  | :drivers_license
@@ -179,6 +180,9 @@ module Increase
179
180
  # A social security number.
180
181
  SOCIAL_SECURITY_NUMBER: :social_security_number
181
182
 
183
+ # The last four digits of a social security number.
184
+ SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
185
+
182
186
  # An individual taxpayer identification number (ITIN).
183
187
  INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER: :individual_taxpayer_identification_number
184
188