increase 1.353.0 → 1.354.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 (58) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/increase/models/ach_transfer.rb +3 -3
  4. data/lib/increase/models/beneficial_owner_create_params.rb +1 -1
  5. data/lib/increase/models/beneficial_owner_update_params.rb +1 -1
  6. data/lib/increase/models/card_payment.rb +3 -0
  7. data/lib/increase/models/declined_transaction.rb +3 -0
  8. data/lib/increase/models/digital_wallet_token.rb +15 -0
  9. data/lib/increase/models/entity.rb +35 -7
  10. data/lib/increase/models/entity_beneficial_owner.rb +1 -1
  11. data/lib/increase/models/entity_create_params.rb +1 -1
  12. data/lib/increase/models/export.rb +19 -19
  13. data/lib/increase/models/export_create_params.rb +15 -15
  14. data/lib/increase/models/export_list_params.rb +19 -19
  15. data/lib/increase/models/inbound_wire_transfer.rb +10 -1
  16. data/lib/increase/models/real_time_decision.rb +3 -0
  17. data/lib/increase/models/real_time_decision_action_params.rb +3 -0
  18. data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +9 -0
  19. data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -0
  20. data/lib/increase/models/transaction.rb +10 -1
  21. data/lib/increase/version.rb +1 -1
  22. data/rbi/increase/models/ach_transfer.rbi +3 -3
  23. data/rbi/increase/models/beneficial_owner_create_params.rbi +1 -1
  24. data/rbi/increase/models/beneficial_owner_update_params.rbi +1 -1
  25. data/rbi/increase/models/card_payment.rbi +7 -0
  26. data/rbi/increase/models/declined_transaction.rbi +7 -0
  27. data/rbi/increase/models/digital_wallet_token.rbi +35 -0
  28. data/rbi/increase/models/entity.rbi +71 -6
  29. data/rbi/increase/models/entity_beneficial_owner.rbi +1 -1
  30. data/rbi/increase/models/entity_create_params.rbi +1 -1
  31. data/rbi/increase/models/export.rbi +32 -32
  32. data/rbi/increase/models/export_create_params.rbi +29 -29
  33. data/rbi/increase/models/export_list_params.rbi +37 -37
  34. data/rbi/increase/models/inbound_wire_transfer.rbi +8 -0
  35. data/rbi/increase/models/real_time_decision.rbi +7 -0
  36. data/rbi/increase/models/real_time_decision_action_params.rbi +7 -0
  37. data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +21 -0
  38. data/rbi/increase/models/simulations/entity_update_validation_params.rbi +7 -0
  39. data/rbi/increase/models/transaction.rbi +8 -0
  40. data/sig/increase/models/ach_transfer.rbs +4 -4
  41. data/sig/increase/models/beneficial_owner_create_params.rbs +1 -1
  42. data/sig/increase/models/beneficial_owner_update_params.rbs +1 -1
  43. data/sig/increase/models/card_payment.rbs +4 -0
  44. data/sig/increase/models/declined_transaction.rbs +4 -0
  45. data/sig/increase/models/digital_wallet_token.rbs +31 -2
  46. data/sig/increase/models/entity.rbs +25 -6
  47. data/sig/increase/models/entity_beneficial_owner.rbs +1 -1
  48. data/sig/increase/models/entity_create_params.rbs +1 -1
  49. data/sig/increase/models/export.rbs +28 -28
  50. data/sig/increase/models/export_create_params.rbs +22 -22
  51. data/sig/increase/models/export_list_params.rbs +28 -28
  52. data/sig/increase/models/inbound_wire_transfer.rbs +5 -0
  53. data/sig/increase/models/real_time_decision.rbs +4 -0
  54. data/sig/increase/models/real_time_decision_action_params.rbs +4 -0
  55. data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +12 -0
  56. data/sig/increase/models/simulations/entity_update_validation_params.rbs +4 -0
  57. data/sig/increase/models/transaction.rbs +5 -0
  58. metadata +2 -2
@@ -134,6 +134,27 @@ module Increase
134
134
  Increase::Models::Simulations::DigitalWalletTokenRequestCreateResponse::DeclineReason::TaggedSymbol
135
135
  )
136
136
 
137
+ # The group was locked.
138
+ GROUP_LOCKED =
139
+ T.let(
140
+ :group_locked,
141
+ Increase::Models::Simulations::DigitalWalletTokenRequestCreateResponse::DeclineReason::TaggedSymbol
142
+ )
143
+
144
+ # The account has been closed.
145
+ ACCOUNT_CLOSED =
146
+ T.let(
147
+ :account_closed,
148
+ Increase::Models::Simulations::DigitalWalletTokenRequestCreateResponse::DeclineReason::TaggedSymbol
149
+ )
150
+
151
+ # The account's entity was not active.
152
+ ENTITY_NOT_ACTIVE =
153
+ T.let(
154
+ :entity_not_active,
155
+ Increase::Models::Simulations::DigitalWalletTokenRequestCreateResponse::DeclineReason::TaggedSymbol
156
+ )
157
+
137
158
  sig do
138
159
  override.returns(
139
160
  T::Array[
@@ -151,6 +151,13 @@ module Increase
151
151
  Increase::Simulations::EntityUpdateValidationParams::Issue::Category::TaggedSymbol
152
152
  )
153
153
 
154
+ # A beneficial owner's full tax identifier is required. A non-US person can submit a passport or driver's license. Make changes via the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
155
+ BENEFICIAL_OWNER_TAX_IDENTIFIER =
156
+ T.let(
157
+ :beneficial_owner_tax_identifier,
158
+ Increase::Simulations::EntityUpdateValidationParams::Issue::Category::TaggedSymbol
159
+ )
160
+
154
161
  sig do
155
162
  override.returns(
156
163
  T::Array[
@@ -16003,6 +16003,10 @@ module Increase
16003
16003
  sig { returns(T.nilable(String)) }
16004
16004
  attr_accessor :instructing_agent_routing_number
16005
16005
 
16006
+ # A free-form instruction for the receiving bank set by the sender.
16007
+ sig { returns(T.nilable(String)) }
16008
+ attr_accessor :instruction_for_creditor_agent
16009
+
16006
16010
  # The sending bank's identifier for the wire transfer.
16007
16011
  sig { returns(T.nilable(String)) }
16008
16012
  attr_accessor :instruction_identification
@@ -16044,6 +16048,7 @@ module Increase
16044
16048
  end_to_end_identification: T.nilable(String),
16045
16049
  input_message_accountability_data: T.nilable(String),
16046
16050
  instructing_agent_routing_number: T.nilable(String),
16051
+ instruction_for_creditor_agent: T.nilable(String),
16047
16052
  instruction_identification: T.nilable(String),
16048
16053
  purpose: T.nilable(String),
16049
16054
  transfer_id: String,
@@ -16081,6 +16086,8 @@ module Increase
16081
16086
  # The American Bankers' Association (ABA) routing number of the bank that sent the
16082
16087
  # wire.
16083
16088
  instructing_agent_routing_number:,
16089
+ # A free-form instruction for the receiving bank set by the sender.
16090
+ instruction_for_creditor_agent:,
16084
16091
  # The sending bank's identifier for the wire transfer.
16085
16092
  instruction_identification:,
16086
16093
  # The reason for the wire transfer, as set by the sender.
@@ -16112,6 +16119,7 @@ module Increase
16112
16119
  end_to_end_identification: T.nilable(String),
16113
16120
  input_message_accountability_data: T.nilable(String),
16114
16121
  instructing_agent_routing_number: T.nilable(String),
16122
+ instruction_for_creditor_agent: T.nilable(String),
16115
16123
  instruction_identification: T.nilable(String),
16116
16124
  purpose: T.nilable(String),
16117
16125
  transfer_id: String,
@@ -191,14 +191,14 @@ module Increase
191
191
  type: Increase::Models::ACHTransfer::type_
192
192
  }
193
193
 
194
- type acknowledgement = { acknowledged_at: String }
194
+ type acknowledgement = { acknowledged_at: Time }
195
195
 
196
196
  class Acknowledgement < Increase::Internal::Type::BaseModel
197
- attr_accessor acknowledged_at: String
197
+ attr_accessor acknowledged_at: Time
198
198
 
199
- def initialize: (acknowledged_at: String) -> void
199
+ def initialize: (acknowledged_at: Time) -> void
200
200
 
201
- def to_hash: -> { acknowledged_at: String }
201
+ def to_hash: -> { acknowledged_at: Time }
202
202
  end
203
203
 
204
204
  type addenda =
@@ -187,7 +187,7 @@ module Increase
187
187
  # A social security number.
188
188
  SOCIAL_SECURITY_NUMBER: :social_security_number
189
189
 
190
- # The last four digits of a social security number.
190
+ # The last four digits of a social security number. Not all programs can use this method.
191
191
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
192
192
 
193
193
  # An individual taxpayer identification number (ITIN).
@@ -180,7 +180,7 @@ module Increase
180
180
  # A social security number.
181
181
  SOCIAL_SECURITY_NUMBER: :social_security_number
182
182
 
183
- # The last four digits of a social security number.
183
+ # The last four digits of a social security number. Not all programs can use this method.
184
184
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
185
185
 
186
186
  # An individual taxpayer identification number (ITIN).
@@ -3816,6 +3816,7 @@ module Increase
3816
3816
  | :exceeds_approval_limit
3817
3817
  | :card_temporarily_disabled
3818
3818
  | :suspected_fraud
3819
+ | :additional_customer_authentication_required
3819
3820
  | :other
3820
3821
 
3821
3822
  module RealTimeDecisionReason
@@ -3836,6 +3837,9 @@ module Increase
3836
3837
  # The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
3837
3838
  SUSPECTED_FRAUD: :suspected_fraud
3838
3839
 
3840
+ # Additional customer authentication is required to complete the transaction, such as 3DS.
3841
+ ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED: :additional_customer_authentication_required
3842
+
3839
3843
  # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
3840
3844
  OTHER: :other
3841
3845
 
@@ -1067,6 +1067,7 @@ module Increase
1067
1067
  | :exceeds_approval_limit
1068
1068
  | :card_temporarily_disabled
1069
1069
  | :suspected_fraud
1070
+ | :additional_customer_authentication_required
1070
1071
  | :other
1071
1072
 
1072
1073
  module RealTimeDecisionReason
@@ -1087,6 +1088,9 @@ module Increase
1087
1088
  # The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
1088
1089
  SUSPECTED_FRAUD: :suspected_fraud
1089
1090
 
1091
+ # Additional customer authentication is required to complete the transaction, such as 3DS.
1092
+ ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED: :additional_customer_authentication_required
1093
+
1090
1094
  # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
1091
1095
  OTHER: :other
1092
1096
 
@@ -112,6 +112,9 @@ module Increase
112
112
  | :webhook_declined
113
113
  | :incorrect_card_verification_code
114
114
  | :declined_by_token_requestor
115
+ | :group_locked
116
+ | :account_closed
117
+ | :entity_not_active
115
118
 
116
119
  module Reason
117
120
  extend Increase::Internal::Type::Enum
@@ -134,6 +137,15 @@ module Increase
134
137
  # The tokenization attempt was declined by the token requestor.
135
138
  DECLINED_BY_TOKEN_REQUESTOR: :declined_by_token_requestor
136
139
 
140
+ # The group was locked.
141
+ GROUP_LOCKED: :group_locked
142
+
143
+ # The account has been closed.
144
+ ACCOUNT_CLOSED: :account_closed
145
+
146
+ # The account's entity was not active.
147
+ ENTITY_NOT_ACTIVE: :entity_not_active
148
+
137
149
  def self?.values: -> ::Array[Increase::Models::DigitalWalletToken::Decline::reason]
138
150
  end
139
151
  end
@@ -227,7 +239,13 @@ module Increase
227
239
  def to_hash: -> { :first6 => String, :last4 => String }
228
240
  end
229
241
 
230
- type status = :active | :inactive | :suspended | :deactivated | :declined
242
+ type status =
243
+ :active
244
+ | :inactive
245
+ | :suspended
246
+ | :deactivated
247
+ | :declined
248
+ | :pending_transitioning
231
249
 
232
250
  module Status
233
251
  extend Increase::Internal::Type::Enum
@@ -247,6 +265,9 @@ module Increase
247
265
  # The digital wallet token was declined during provisioning.
248
266
  DECLINED: :declined
249
267
 
268
+ # The digital wallet token is transitioning to a new status and is awaiting confirmation from the card network.
269
+ PENDING_TRANSITIONING: :pending_transitioning
270
+
250
271
  def self?.values: -> ::Array[Increase::Models::DigitalWalletToken::status]
251
272
  end
252
273
 
@@ -302,7 +323,12 @@ module Increase
302
323
  }
303
324
 
304
325
  type status =
305
- :active | :inactive | :suspended | :deactivated | :declined
326
+ :active
327
+ | :inactive
328
+ | :suspended
329
+ | :deactivated
330
+ | :declined
331
+ | :pending_transitioning
306
332
 
307
333
  module Status
308
334
  extend Increase::Internal::Type::Enum
@@ -322,6 +348,9 @@ module Increase
322
348
  # The digital wallet token was declined during provisioning.
323
349
  DECLINED: :declined
324
350
 
351
+ # The digital wallet token is transitioning to a new status and is awaiting confirmation from the card network.
352
+ PENDING_TRANSITIONING: :pending_transitioning
353
+
325
354
  def self?.values: -> ::Array[Increase::Models::DigitalWalletToken::Update::status]
326
355
  end
327
356
  end
@@ -348,7 +348,7 @@ module Increase
348
348
  # A social security number.
349
349
  SOCIAL_SECURITY_NUMBER: :social_security_number
350
350
 
351
- # The last four digits of a social security number.
351
+ # The last four digits of a social security number. Not all programs can use this method.
352
352
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
353
353
 
354
354
  # An individual taxpayer identification number (ITIN).
@@ -690,7 +690,7 @@ module Increase
690
690
  # A social security number.
691
691
  SOCIAL_SECURITY_NUMBER: :social_security_number
692
692
 
693
- # The last four digits of a social security number.
693
+ # The last four digits of a social security number. Not all programs can use this method.
694
694
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
695
695
 
696
696
  # An individual taxpayer identification number (ITIN).
@@ -819,7 +819,7 @@ module Increase
819
819
  # A social security number.
820
820
  SOCIAL_SECURITY_NUMBER: :social_security_number
821
821
 
822
- # The last four digits of a social security number.
822
+ # The last four digits of a social security number. Not all programs can use this method.
823
823
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
824
824
 
825
825
  # An individual taxpayer identification number (ITIN).
@@ -1071,7 +1071,7 @@ module Increase
1071
1071
  # A social security number.
1072
1072
  SOCIAL_SECURITY_NUMBER: :social_security_number
1073
1073
 
1074
- # The last four digits of a social security number.
1074
+ # The last four digits of a social security number. Not all programs can use this method.
1075
1075
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
1076
1076
 
1077
1077
  # An individual taxpayer identification number (ITIN).
@@ -1424,7 +1424,7 @@ module Increase
1424
1424
  # A social security number.
1425
1425
  SOCIAL_SECURITY_NUMBER: :social_security_number
1426
1426
 
1427
- # The last four digits of a social security number.
1427
+ # The last four digits of a social security number. Not all programs can use this method.
1428
1428
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
1429
1429
 
1430
1430
  # An individual taxpayer identification number (ITIN).
@@ -1573,7 +1573,7 @@ module Increase
1573
1573
  # A social security number.
1574
1574
  SOCIAL_SECURITY_NUMBER: :social_security_number
1575
1575
 
1576
- # The last four digits of a social security number.
1576
+ # The last four digits of a social security number. Not all programs can use this method.
1577
1577
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
1578
1578
 
1579
1579
  # An individual taxpayer identification number (ITIN).
@@ -1641,6 +1641,7 @@ module Increase
1641
1641
  {
1642
1642
  beneficial_owner_address: Increase::Entity::Validation::Issue::BeneficialOwnerAddress?,
1643
1643
  beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?,
1644
+ beneficial_owner_tax_identifier: Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier?,
1644
1645
  category: Increase::Models::Entity::Validation::Issue::category,
1645
1646
  entity_address: Increase::Entity::Validation::Issue::EntityAddress?,
1646
1647
  entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?,
@@ -1652,6 +1653,8 @@ module Increase
1652
1653
 
1653
1654
  attr_accessor beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?
1654
1655
 
1656
+ attr_accessor beneficial_owner_tax_identifier: Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier?
1657
+
1655
1658
  attr_accessor category: Increase::Models::Entity::Validation::Issue::category
1656
1659
 
1657
1660
  attr_accessor entity_address: Increase::Entity::Validation::Issue::EntityAddress?
@@ -1663,6 +1666,7 @@ module Increase
1663
1666
  def initialize: (
1664
1667
  beneficial_owner_address: Increase::Entity::Validation::Issue::BeneficialOwnerAddress?,
1665
1668
  beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?,
1669
+ beneficial_owner_tax_identifier: Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier?,
1666
1670
  category: Increase::Models::Entity::Validation::Issue::category,
1667
1671
  entity_address: Increase::Entity::Validation::Issue::EntityAddress?,
1668
1672
  entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?,
@@ -1672,6 +1676,7 @@ module Increase
1672
1676
  def to_hash: -> {
1673
1677
  beneficial_owner_address: Increase::Entity::Validation::Issue::BeneficialOwnerAddress?,
1674
1678
  beneficial_owner_identity: Increase::Entity::Validation::Issue::BeneficialOwnerIdentity?,
1679
+ beneficial_owner_tax_identifier: Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier?,
1675
1680
  category: Increase::Models::Entity::Validation::Issue::category,
1676
1681
  entity_address: Increase::Entity::Validation::Issue::EntityAddress?,
1677
1682
  entity_identity: Increase::Entity::Validation::Issue::EntityIdentity?,
@@ -1721,12 +1726,23 @@ module Increase
1721
1726
  def to_hash: -> { beneficial_owner_id: String }
1722
1727
  end
1723
1728
 
1729
+ type beneficial_owner_tax_identifier = { beneficial_owner_id: String }
1730
+
1731
+ class BeneficialOwnerTaxIdentifier < Increase::Internal::Type::BaseModel
1732
+ attr_accessor beneficial_owner_id: String
1733
+
1734
+ def initialize: (beneficial_owner_id: String) -> void
1735
+
1736
+ def to_hash: -> { beneficial_owner_id: String }
1737
+ end
1738
+
1724
1739
  type category =
1725
1740
  :entity_tax_identifier
1726
1741
  | :entity_address
1727
1742
  | :entity_identity
1728
1743
  | :beneficial_owner_identity
1729
1744
  | :beneficial_owner_address
1745
+ | :beneficial_owner_tax_identifier
1730
1746
 
1731
1747
  module Category
1732
1748
  extend Increase::Internal::Type::Enum
@@ -1746,6 +1762,9 @@ module Increase
1746
1762
  # A beneficial owner's address could not be validated. Update the address with the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
1747
1763
  BENEFICIAL_OWNER_ADDRESS: :beneficial_owner_address
1748
1764
 
1765
+ # A beneficial owner's full tax identifier is required. A non-US person can submit a passport or driver's license. Make changes via the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
1766
+ BENEFICIAL_OWNER_TAX_IDENTIFIER: :beneficial_owner_tax_identifier
1767
+
1749
1768
  def self?.values: -> ::Array[Increase::Models::Entity::Validation::Issue::category]
1750
1769
  end
1751
1770
 
@@ -159,7 +159,7 @@ module Increase
159
159
  # A social security number.
160
160
  SOCIAL_SECURITY_NUMBER: :social_security_number
161
161
 
162
- # The last four digits of a social security number.
162
+ # The last four digits of a social security number. Not all programs can use this method.
163
163
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
164
164
 
165
165
  # An individual taxpayer identification number (ITIN).
@@ -443,7 +443,7 @@ module Increase
443
443
  # A social security number.
444
444
  SOCIAL_SECURITY_NUMBER: :social_security_number
445
445
 
446
- # The last four digits of a social security number.
446
+ # The last four digits of a social security number. Not all programs can use this method.
447
447
  SOCIAL_SECURITY_NUMBER_LAST4: :social_security_number_last4
448
448
 
449
449
  # An individual taxpayer identification number (ITIN).
@@ -253,33 +253,33 @@ module Increase
253
253
  end
254
254
 
255
255
  type category =
256
- :account_statement_ofx
257
- | :account_statement_bai2
258
- | :transaction_csv
256
+ :account_statement_bai2
257
+ | :account_statement_ofx
258
+ | :account_verification_letter
259
259
  | :balance_csv
260
260
  | :bookkeeping_account_balance_csv
261
- | :entity_csv
262
- | :vendor_csv
261
+ | :daily_account_balance_csv
263
262
  | :dashboard_table_csv
264
- | :account_verification_letter
265
- | :funding_instructions
263
+ | :entity_csv
264
+ | :fee_csv
266
265
  | :form_1099_int
267
266
  | :form_1099_misc
268
- | :fee_csv
267
+ | :funding_instructions
268
+ | :transaction_csv
269
+ | :vendor_csv
269
270
  | :voided_check
270
- | :daily_account_balance_csv
271
271
 
272
272
  module Category
273
273
  extend Increase::Internal::Type::Enum
274
274
 
275
- # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
276
- ACCOUNT_STATEMENT_OFX: :account_statement_ofx
277
-
278
275
  # Export a BAI2 file of transactions and balances for a given date and optional Account.
279
276
  ACCOUNT_STATEMENT_BAI2: :account_statement_bai2
280
277
 
281
- # Export a CSV of all transactions for a given time range.
282
- TRANSACTION_CSV: :transaction_csv
278
+ # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
279
+ ACCOUNT_STATEMENT_OFX: :account_statement_ofx
280
+
281
+ # A PDF of an account verification letter.
282
+ ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
283
283
 
284
284
  # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
285
285
  BALANCE_CSV: :balance_csv
@@ -287,20 +287,17 @@ module Increase
287
287
  # Export a CSV of bookkeeping account balances for the dates in a given range.
288
288
  BOOKKEEPING_ACCOUNT_BALANCE_CSV: :bookkeeping_account_balance_csv
289
289
 
290
- # Export a CSV of entities with a given status.
291
- ENTITY_CSV: :entity_csv
292
-
293
- # Export a CSV of vendors added to the third-party risk management dashboard.
294
- VENDOR_CSV: :vendor_csv
290
+ # Export a CSV of daily account balances with starting and ending balances for a given date range.
291
+ DAILY_ACCOUNT_BALANCE_CSV: :daily_account_balance_csv
295
292
 
296
293
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
297
294
  DASHBOARD_TABLE_CSV: :dashboard_table_csv
298
295
 
299
- # A PDF of an account verification letter.
300
- ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
296
+ # Export a CSV of entities with a given status.
297
+ ENTITY_CSV: :entity_csv
301
298
 
302
- # A PDF of funding instructions.
303
- FUNDING_INSTRUCTIONS: :funding_instructions
299
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
300
+ FEE_CSV: :fee_csv
304
301
 
305
302
  # A PDF of an Internal Revenue Service Form 1099-INT.
306
303
  FORM_1099_INT: :form_1099_int
@@ -308,15 +305,18 @@ module Increase
308
305
  # A PDF of an Internal Revenue Service Form 1099-MISC.
309
306
  FORM_1099_MISC: :form_1099_misc
310
307
 
311
- # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
312
- FEE_CSV: :fee_csv
308
+ # A PDF of funding instructions.
309
+ FUNDING_INSTRUCTIONS: :funding_instructions
310
+
311
+ # Export a CSV of all transactions for a given time range.
312
+ TRANSACTION_CSV: :transaction_csv
313
+
314
+ # Export a CSV of vendors added to the third-party risk management dashboard.
315
+ VENDOR_CSV: :vendor_csv
313
316
 
314
317
  # A PDF of a voided check.
315
318
  VOIDED_CHECK: :voided_check
316
319
 
317
- # Export a CSV of daily account balances with starting and ending balances for a given date range.
318
- DAILY_ACCOUNT_BALANCE_CSV: :daily_account_balance_csv
319
-
320
320
  def self?.values: -> ::Array[Increase::Models::Export::category]
321
321
  end
322
322
 
@@ -122,30 +122,30 @@ module Increase
122
122
  }
123
123
 
124
124
  type category =
125
- :account_statement_ofx
126
- | :account_statement_bai2
127
- | :transaction_csv
125
+ :account_statement_bai2
126
+ | :account_statement_ofx
127
+ | :account_verification_letter
128
128
  | :balance_csv
129
129
  | :bookkeeping_account_balance_csv
130
+ | :daily_account_balance_csv
130
131
  | :entity_csv
131
- | :vendor_csv
132
- | :account_verification_letter
133
- | :funding_instructions
134
132
  | :fee_csv
133
+ | :funding_instructions
134
+ | :transaction_csv
135
+ | :vendor_csv
135
136
  | :voided_check
136
- | :daily_account_balance_csv
137
137
 
138
138
  module Category
139
139
  extend Increase::Internal::Type::Enum
140
140
 
141
- # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
142
- ACCOUNT_STATEMENT_OFX: :account_statement_ofx
143
-
144
141
  # Export a BAI2 file of transactions and balances for a given date and optional Account.
145
142
  ACCOUNT_STATEMENT_BAI2: :account_statement_bai2
146
143
 
147
- # Export a CSV of all transactions for a given time range.
148
- TRANSACTION_CSV: :transaction_csv
144
+ # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
145
+ ACCOUNT_STATEMENT_OFX: :account_statement_ofx
146
+
147
+ # A PDF of an account verification letter.
148
+ ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
149
149
 
150
150
  # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
151
151
  BALANCE_CSV: :balance_csv
@@ -153,27 +153,27 @@ module Increase
153
153
  # Export a CSV of bookkeeping account balances for the dates in a given range.
154
154
  BOOKKEEPING_ACCOUNT_BALANCE_CSV: :bookkeeping_account_balance_csv
155
155
 
156
+ # Export a CSV of daily account balances with starting and ending balances for a given date range.
157
+ DAILY_ACCOUNT_BALANCE_CSV: :daily_account_balance_csv
158
+
156
159
  # Export a CSV of entities with a given status.
157
160
  ENTITY_CSV: :entity_csv
158
161
 
159
- # Export a CSV of vendors added to the third-party risk management dashboard.
160
- VENDOR_CSV: :vendor_csv
161
-
162
- # A PDF of an account verification letter.
163
- ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
162
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
163
+ FEE_CSV: :fee_csv
164
164
 
165
165
  # A PDF of funding instructions.
166
166
  FUNDING_INSTRUCTIONS: :funding_instructions
167
167
 
168
- # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
169
- FEE_CSV: :fee_csv
168
+ # Export a CSV of all transactions for a given time range.
169
+ TRANSACTION_CSV: :transaction_csv
170
+
171
+ # Export a CSV of vendors added to the third-party risk management dashboard.
172
+ VENDOR_CSV: :vendor_csv
170
173
 
171
174
  # A PDF of a voided check.
172
175
  VOIDED_CHECK: :voided_check
173
176
 
174
- # Export a CSV of daily account balances with starting and ending balances for a given date range.
175
- DAILY_ACCOUNT_BALANCE_CSV: :daily_account_balance_csv
176
-
177
177
  def self?.values: -> ::Array[Increase::Models::ExportCreateParams::category]
178
178
  end
179
179
 
@@ -84,33 +84,33 @@ module Increase
84
84
  }
85
85
 
86
86
  type category =
87
- :account_statement_ofx
88
- | :account_statement_bai2
89
- | :transaction_csv
87
+ :account_statement_bai2
88
+ | :account_statement_ofx
89
+ | :account_verification_letter
90
90
  | :balance_csv
91
91
  | :bookkeeping_account_balance_csv
92
- | :entity_csv
93
- | :vendor_csv
92
+ | :daily_account_balance_csv
94
93
  | :dashboard_table_csv
95
- | :account_verification_letter
96
- | :funding_instructions
94
+ | :entity_csv
95
+ | :fee_csv
97
96
  | :form_1099_int
98
97
  | :form_1099_misc
99
- | :fee_csv
98
+ | :funding_instructions
99
+ | :transaction_csv
100
+ | :vendor_csv
100
101
  | :voided_check
101
- | :daily_account_balance_csv
102
102
 
103
103
  module Category
104
104
  extend Increase::Internal::Type::Enum
105
105
 
106
- # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
107
- ACCOUNT_STATEMENT_OFX: :account_statement_ofx
108
-
109
106
  # Export a BAI2 file of transactions and balances for a given date and optional Account.
110
107
  ACCOUNT_STATEMENT_BAI2: :account_statement_bai2
111
108
 
112
- # Export a CSV of all transactions for a given time range.
113
- TRANSACTION_CSV: :transaction_csv
109
+ # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
110
+ ACCOUNT_STATEMENT_OFX: :account_statement_ofx
111
+
112
+ # A PDF of an account verification letter.
113
+ ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
114
114
 
115
115
  # Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
116
116
  BALANCE_CSV: :balance_csv
@@ -118,20 +118,17 @@ module Increase
118
118
  # Export a CSV of bookkeeping account balances for the dates in a given range.
119
119
  BOOKKEEPING_ACCOUNT_BALANCE_CSV: :bookkeeping_account_balance_csv
120
120
 
121
- # Export a CSV of entities with a given status.
122
- ENTITY_CSV: :entity_csv
123
-
124
- # Export a CSV of vendors added to the third-party risk management dashboard.
125
- VENDOR_CSV: :vendor_csv
121
+ # Export a CSV of daily account balances with starting and ending balances for a given date range.
122
+ DAILY_ACCOUNT_BALANCE_CSV: :daily_account_balance_csv
126
123
 
127
124
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
128
125
  DASHBOARD_TABLE_CSV: :dashboard_table_csv
129
126
 
130
- # A PDF of an account verification letter.
131
- ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
127
+ # Export a CSV of entities with a given status.
128
+ ENTITY_CSV: :entity_csv
132
129
 
133
- # A PDF of funding instructions.
134
- FUNDING_INSTRUCTIONS: :funding_instructions
130
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
131
+ FEE_CSV: :fee_csv
135
132
 
136
133
  # A PDF of an Internal Revenue Service Form 1099-INT.
137
134
  FORM_1099_INT: :form_1099_int
@@ -139,15 +136,18 @@ module Increase
139
136
  # A PDF of an Internal Revenue Service Form 1099-MISC.
140
137
  FORM_1099_MISC: :form_1099_misc
141
138
 
142
- # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
143
- FEE_CSV: :fee_csv
139
+ # A PDF of funding instructions.
140
+ FUNDING_INSTRUCTIONS: :funding_instructions
141
+
142
+ # Export a CSV of all transactions for a given time range.
143
+ TRANSACTION_CSV: :transaction_csv
144
+
145
+ # Export a CSV of vendors added to the third-party risk management dashboard.
146
+ VENDOR_CSV: :vendor_csv
144
147
 
145
148
  # A PDF of a voided check.
146
149
  VOIDED_CHECK: :voided_check
147
150
 
148
- # Export a CSV of daily account balances with starting and ending balances for a given date range.
149
- DAILY_ACCOUNT_BALANCE_CSV: :daily_account_balance_csv
150
-
151
151
  def self?.values: -> ::Array[Increase::Models::ExportListParams::category]
152
152
  end
153
153