increase 1.204.0 → 1.205.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1d6ee7670aa93eecdc6bd880778107b2439add074c23bca66449ef21a6ecd77
4
- data.tar.gz: 65d724b972e6769c40535ed9454a9d77bcd9cdf9b5c7f99ee2931efc48e5423e
3
+ metadata.gz: 386144bfee1d86addaad18c131d587b5aeb227aa75048a027753846243cbf3ca
4
+ data.tar.gz: d3f98141e09000b897e96a2cd6e9d003316e1322d125592b930d507b36f4b95a
5
5
  SHA512:
6
- metadata.gz: e47077cee8f03e51913a8f1254b7973575b8917962d04fde9ce085c6fc3b70ac5378eaa2fc2b0be61105a4ca03e1b5d8c7dd6ecaf290f2f9cd0cef5a34ab5945
7
- data.tar.gz: 76d9fc44eb35df2381d3f9c8fcf3e5eaa97c43c9b5a0f8671321e4d561501113e87f7bb47eef7ec8005ce532754f69e66e940b939ced956e27e98dc488373df2
6
+ metadata.gz: ddcd8c777346283a1d2a942379cc31db0815d8e557eea9c09ea0887287d3b53c2dfbeb386d0dce746a342e50737cecb375937d015fa16337f7cb8dfd483c018b
7
+ data.tar.gz: 66fa68eb852088b9b87b6eb10fb40fc961dedec1703d6e48a6a44c92ff84c27f9f0b2761cf2689ce3f974dc0c82eaa6cbfc306f5d32a95d7164de57a9c9b16e8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.205.0 (2026-02-07)
4
+
5
+ Full Changelog: [v1.204.0...v1.205.0](https://github.com/Increase/increase-ruby/compare/v1.204.0...v1.205.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([2cfbf48](https://github.com/Increase/increase-ruby/commit/2cfbf484dc0b54d67f94891c4f0894024a447d82))
10
+
3
11
  ## 1.204.0 (2026-02-07)
4
12
 
5
13
  Full Changelog: [v1.203.0...v1.204.0](https://github.com/Increase/increase-ruby/compare/v1.203.0...v1.204.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.204.0"
18
+ gem "increase", "~> 1.205.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -342,7 +342,7 @@ module Increase
342
342
  module ReturnReasonCode
343
343
  extend Increase::Internal::Type::Enum
344
344
 
345
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
345
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
346
346
  INSUFFICIENT_FUND = :insufficient_fund
347
347
 
348
348
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -354,13 +354,13 @@ module Increase
354
354
  # Code R04. The account number is invalid at the receiving bank.
355
355
  INVALID_ACCOUNT_NUMBER_STRUCTURE = :invalid_account_number_structure
356
356
 
357
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
357
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
358
358
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION = :account_frozen_entry_returned_per_ofac_instruction
359
359
 
360
- # Code R23. The receiving bank account refused a credit transfer.
360
+ # Code R23. The receiving bank refused the credit transfer.
361
361
  CREDIT_ENTRY_REFUSED_BY_RECEIVER = :credit_entry_refused_by_receiver
362
362
 
363
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
363
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
364
364
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
365
365
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code
366
366
 
@@ -370,7 +370,7 @@ module Increase
370
370
  # Code R08. The receiving bank stopped payment on this transfer.
371
371
  PAYMENT_STOPPED = :payment_stopped
372
372
 
373
- # Code R20. The receiving bank account does not perform transfers.
373
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
374
374
  NON_TRANSACTION_ACCOUNT = :non_transaction_account
375
375
 
376
376
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -386,7 +386,7 @@ module Increase
386
386
  # Code R19. The amount field is incorrect or too large.
387
387
  AMOUNT_FIELD_ERROR = :amount_field_error
388
388
 
389
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
389
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
390
390
  AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
391
391
 
392
392
  # Code R13. The routing number is invalid.
@@ -395,7 +395,7 @@ module Increase
395
395
  # Code R17. The receiving bank is unable to process a field in the transfer.
396
396
  FILE_RECORD_EDIT_CRITERIA = :file_record_edit_criteria
397
397
 
398
- # Code R45. The individual name field was invalid.
398
+ # Code R45. A rare return reason. The individual name field was invalid.
399
399
  ENR_INVALID_INDIVIDUAL_NAME = :enr_invalid_individual_name
400
400
 
401
401
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -528,7 +528,7 @@ module Increase
528
528
  # Code R35. A rare return reason. Return of a malformed debit entry.
529
529
  RETURN_OF_IMPROPER_DEBIT_ENTRY = :return_of_improper_debit_entry
530
530
 
531
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
531
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
532
532
  RETURN_OF_XCK_ENTRY = :return_of_xck_entry
533
533
 
534
534
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -1049,7 +1049,7 @@ module Increase
1049
1049
  module ReturnReasonCode
1050
1050
  extend Increase::Internal::Type::Enum
1051
1051
 
1052
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
1052
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
1053
1053
  INSUFFICIENT_FUND = :insufficient_fund
1054
1054
 
1055
1055
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -1061,13 +1061,13 @@ module Increase
1061
1061
  # Code R04. The account number is invalid at the receiving bank.
1062
1062
  INVALID_ACCOUNT_NUMBER_STRUCTURE = :invalid_account_number_structure
1063
1063
 
1064
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
1064
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
1065
1065
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION = :account_frozen_entry_returned_per_ofac_instruction
1066
1066
 
1067
- # Code R23. The receiving bank account refused a credit transfer.
1067
+ # Code R23. The receiving bank refused the credit transfer.
1068
1068
  CREDIT_ENTRY_REFUSED_BY_RECEIVER = :credit_entry_refused_by_receiver
1069
1069
 
1070
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
1070
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
1071
1071
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
1072
1072
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code
1073
1073
 
@@ -1077,7 +1077,7 @@ module Increase
1077
1077
  # Code R08. The receiving bank stopped payment on this transfer.
1078
1078
  PAYMENT_STOPPED = :payment_stopped
1079
1079
 
1080
- # Code R20. The receiving bank account does not perform transfers.
1080
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
1081
1081
  NON_TRANSACTION_ACCOUNT = :non_transaction_account
1082
1082
 
1083
1083
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -1093,7 +1093,7 @@ module Increase
1093
1093
  # Code R19. The amount field is incorrect or too large.
1094
1094
  AMOUNT_FIELD_ERROR = :amount_field_error
1095
1095
 
1096
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
1096
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
1097
1097
  AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
1098
1098
 
1099
1099
  # Code R13. The routing number is invalid.
@@ -1102,7 +1102,7 @@ module Increase
1102
1102
  # Code R17. The receiving bank is unable to process a field in the transfer.
1103
1103
  FILE_RECORD_EDIT_CRITERIA = :file_record_edit_criteria
1104
1104
 
1105
- # Code R45. The individual name field was invalid.
1105
+ # Code R45. A rare return reason. The individual name field was invalid.
1106
1106
  ENR_INVALID_INDIVIDUAL_NAME = :enr_invalid_individual_name
1107
1107
 
1108
1108
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -1235,7 +1235,7 @@ module Increase
1235
1235
  # Code R35. A rare return reason. Return of a malformed debit entry.
1236
1236
  RETURN_OF_IMPROPER_DEBIT_ENTRY = :return_of_improper_debit_entry
1237
1237
 
1238
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
1238
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
1239
1239
  RETURN_OF_XCK_ENTRY = :return_of_xck_entry
1240
1240
 
1241
1241
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -28,7 +28,7 @@ module Increase
28
28
  module Reason
29
29
  extend Increase::Internal::Type::Enum
30
30
 
31
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
31
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
32
32
  INSUFFICIENT_FUND = :insufficient_fund
33
33
 
34
34
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -40,13 +40,13 @@ module Increase
40
40
  # Code R04. The account number is invalid at the receiving bank.
41
41
  INVALID_ACCOUNT_NUMBER_STRUCTURE = :invalid_account_number_structure
42
42
 
43
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
43
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
44
44
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION = :account_frozen_entry_returned_per_ofac_instruction
45
45
 
46
- # Code R23. The receiving bank account refused a credit transfer.
46
+ # Code R23. The receiving bank refused the credit transfer.
47
47
  CREDIT_ENTRY_REFUSED_BY_RECEIVER = :credit_entry_refused_by_receiver
48
48
 
49
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
49
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
50
50
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
51
51
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code
52
52
 
@@ -56,7 +56,7 @@ module Increase
56
56
  # Code R08. The receiving bank stopped payment on this transfer.
57
57
  PAYMENT_STOPPED = :payment_stopped
58
58
 
59
- # Code R20. The receiving bank account does not perform transfers.
59
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
60
60
  NON_TRANSACTION_ACCOUNT = :non_transaction_account
61
61
 
62
62
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -72,7 +72,7 @@ module Increase
72
72
  # Code R19. The amount field is incorrect or too large.
73
73
  AMOUNT_FIELD_ERROR = :amount_field_error
74
74
 
75
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
75
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
76
76
  AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
77
77
 
78
78
  # Code R13. The routing number is invalid.
@@ -81,7 +81,7 @@ module Increase
81
81
  # Code R17. The receiving bank is unable to process a field in the transfer.
82
82
  FILE_RECORD_EDIT_CRITERIA = :file_record_edit_criteria
83
83
 
84
- # Code R45. The individual name field was invalid.
84
+ # Code R45. A rare return reason. The individual name field was invalid.
85
85
  ENR_INVALID_INDIVIDUAL_NAME = :enr_invalid_individual_name
86
86
 
87
87
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -214,7 +214,7 @@ module Increase
214
214
  # Code R35. A rare return reason. Return of a malformed debit entry.
215
215
  RETURN_OF_IMPROPER_DEBIT_ENTRY = :return_of_improper_debit_entry
216
216
 
217
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
217
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
218
218
  RETURN_OF_XCK_ENTRY = :return_of_xck_entry
219
219
 
220
220
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -1010,7 +1010,7 @@ module Increase
1010
1010
  module ReturnReasonCode
1011
1011
  extend Increase::Internal::Type::Enum
1012
1012
 
1013
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
1013
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
1014
1014
  INSUFFICIENT_FUND = :insufficient_fund
1015
1015
 
1016
1016
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -1022,13 +1022,13 @@ module Increase
1022
1022
  # Code R04. The account number is invalid at the receiving bank.
1023
1023
  INVALID_ACCOUNT_NUMBER_STRUCTURE = :invalid_account_number_structure
1024
1024
 
1025
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
1025
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
1026
1026
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION = :account_frozen_entry_returned_per_ofac_instruction
1027
1027
 
1028
- # Code R23. The receiving bank account refused a credit transfer.
1028
+ # Code R23. The receiving bank refused the credit transfer.
1029
1029
  CREDIT_ENTRY_REFUSED_BY_RECEIVER = :credit_entry_refused_by_receiver
1030
1030
 
1031
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
1031
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
1032
1032
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
1033
1033
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code
1034
1034
 
@@ -1038,7 +1038,7 @@ module Increase
1038
1038
  # Code R08. The receiving bank stopped payment on this transfer.
1039
1039
  PAYMENT_STOPPED = :payment_stopped
1040
1040
 
1041
- # Code R20. The receiving bank account does not perform transfers.
1041
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
1042
1042
  NON_TRANSACTION_ACCOUNT = :non_transaction_account
1043
1043
 
1044
1044
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -1054,7 +1054,7 @@ module Increase
1054
1054
  # Code R19. The amount field is incorrect or too large.
1055
1055
  AMOUNT_FIELD_ERROR = :amount_field_error
1056
1056
 
1057
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
1057
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
1058
1058
  AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
1059
1059
 
1060
1060
  # Code R13. The routing number is invalid.
@@ -1063,7 +1063,7 @@ module Increase
1063
1063
  # Code R17. The receiving bank is unable to process a field in the transfer.
1064
1064
  FILE_RECORD_EDIT_CRITERIA = :file_record_edit_criteria
1065
1065
 
1066
- # Code R45. The individual name field was invalid.
1066
+ # Code R45. A rare return reason. The individual name field was invalid.
1067
1067
  ENR_INVALID_INDIVIDUAL_NAME = :enr_invalid_individual_name
1068
1068
 
1069
1069
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -1196,7 +1196,7 @@ module Increase
1196
1196
  # Code R35. A rare return reason. Return of a malformed debit entry.
1197
1197
  RETURN_OF_IMPROPER_DEBIT_ENTRY = :return_of_improper_debit_entry
1198
1198
 
1199
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
1199
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
1200
1200
  RETURN_OF_XCK_ENTRY = :return_of_xck_entry
1201
1201
 
1202
1202
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.204.0"
4
+ VERSION = "1.205.0"
5
5
  end
@@ -575,7 +575,7 @@ module Increase
575
575
  end
576
576
  OrSymbol = T.type_alias { T.any(Symbol, String) }
577
577
 
578
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
578
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
579
579
  INSUFFICIENT_FUND =
580
580
  T.let(
581
581
  :insufficient_fund,
@@ -603,21 +603,21 @@ module Increase
603
603
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
604
604
  )
605
605
 
606
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
606
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
607
607
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION =
608
608
  T.let(
609
609
  :account_frozen_entry_returned_per_ofac_instruction,
610
610
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
611
611
  )
612
612
 
613
- # Code R23. The receiving bank account refused a credit transfer.
613
+ # Code R23. The receiving bank refused the credit transfer.
614
614
  CREDIT_ENTRY_REFUSED_BY_RECEIVER =
615
615
  T.let(
616
616
  :credit_entry_refused_by_receiver,
617
617
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
618
618
  )
619
619
 
620
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
620
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
621
621
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
622
622
  T.let(
623
623
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code,
@@ -638,7 +638,7 @@ module Increase
638
638
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
639
639
  )
640
640
 
641
- # Code R20. The receiving bank account does not perform transfers.
641
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
642
642
  NON_TRANSACTION_ACCOUNT =
643
643
  T.let(
644
644
  :non_transaction_account,
@@ -673,7 +673,7 @@ module Increase
673
673
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
674
674
  )
675
675
 
676
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
676
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
677
677
  AUTHORIZATION_REVOKED_BY_CUSTOMER =
678
678
  T.let(
679
679
  :authorization_revoked_by_customer,
@@ -694,7 +694,7 @@ module Increase
694
694
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
695
695
  )
696
696
 
697
- # Code R45. The individual name field was invalid.
697
+ # Code R45. A rare return reason. The individual name field was invalid.
698
698
  ENR_INVALID_INDIVIDUAL_NAME =
699
699
  T.let(
700
700
  :enr_invalid_individual_name,
@@ -1002,7 +1002,7 @@ module Increase
1002
1002
  Increase::ACHPrenotification::PrenotificationReturn::ReturnReasonCode::TaggedSymbol
1003
1003
  )
1004
1004
 
1005
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
1005
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
1006
1006
  RETURN_OF_XCK_ENTRY =
1007
1007
  T.let(
1008
1008
  :return_of_xck_entry,
@@ -1818,7 +1818,7 @@ module Increase
1818
1818
  end
1819
1819
  OrSymbol = T.type_alias { T.any(Symbol, String) }
1820
1820
 
1821
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
1821
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
1822
1822
  INSUFFICIENT_FUND =
1823
1823
  T.let(
1824
1824
  :insufficient_fund,
@@ -1846,21 +1846,21 @@ module Increase
1846
1846
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
1847
1847
  )
1848
1848
 
1849
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
1849
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
1850
1850
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION =
1851
1851
  T.let(
1852
1852
  :account_frozen_entry_returned_per_ofac_instruction,
1853
1853
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
1854
1854
  )
1855
1855
 
1856
- # Code R23. The receiving bank account refused a credit transfer.
1856
+ # Code R23. The receiving bank refused the credit transfer.
1857
1857
  CREDIT_ENTRY_REFUSED_BY_RECEIVER =
1858
1858
  T.let(
1859
1859
  :credit_entry_refused_by_receiver,
1860
1860
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
1861
1861
  )
1862
1862
 
1863
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
1863
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
1864
1864
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
1865
1865
  T.let(
1866
1866
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code,
@@ -1881,7 +1881,7 @@ module Increase
1881
1881
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
1882
1882
  )
1883
1883
 
1884
- # Code R20. The receiving bank account does not perform transfers.
1884
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
1885
1885
  NON_TRANSACTION_ACCOUNT =
1886
1886
  T.let(
1887
1887
  :non_transaction_account,
@@ -1916,7 +1916,7 @@ module Increase
1916
1916
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
1917
1917
  )
1918
1918
 
1919
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
1919
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
1920
1920
  AUTHORIZATION_REVOKED_BY_CUSTOMER =
1921
1921
  T.let(
1922
1922
  :authorization_revoked_by_customer,
@@ -1937,7 +1937,7 @@ module Increase
1937
1937
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
1938
1938
  )
1939
1939
 
1940
- # Code R45. The individual name field was invalid.
1940
+ # Code R45. A rare return reason. The individual name field was invalid.
1941
1941
  ENR_INVALID_INDIVIDUAL_NAME =
1942
1942
  T.let(
1943
1943
  :enr_invalid_individual_name,
@@ -2245,7 +2245,7 @@ module Increase
2245
2245
  Increase::ACHTransfer::Return::ReturnReasonCode::TaggedSymbol
2246
2246
  )
2247
2247
 
2248
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
2248
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
2249
2249
  RETURN_OF_XCK_ENTRY =
2250
2250
  T.let(
2251
2251
  :return_of_xck_entry,
@@ -75,7 +75,7 @@ module Increase
75
75
  end
76
76
  OrSymbol = T.type_alias { T.any(Symbol, String) }
77
77
 
78
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
78
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
79
79
  INSUFFICIENT_FUND =
80
80
  T.let(
81
81
  :insufficient_fund,
@@ -103,21 +103,21 @@ module Increase
103
103
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
104
104
  )
105
105
 
106
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
106
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
107
107
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION =
108
108
  T.let(
109
109
  :account_frozen_entry_returned_per_ofac_instruction,
110
110
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
111
111
  )
112
112
 
113
- # Code R23. The receiving bank account refused a credit transfer.
113
+ # Code R23. The receiving bank refused the credit transfer.
114
114
  CREDIT_ENTRY_REFUSED_BY_RECEIVER =
115
115
  T.let(
116
116
  :credit_entry_refused_by_receiver,
117
117
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
118
118
  )
119
119
 
120
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
120
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
121
121
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
122
122
  T.let(
123
123
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code,
@@ -138,7 +138,7 @@ module Increase
138
138
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
139
139
  )
140
140
 
141
- # Code R20. The receiving bank account does not perform transfers.
141
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
142
142
  NON_TRANSACTION_ACCOUNT =
143
143
  T.let(
144
144
  :non_transaction_account,
@@ -173,7 +173,7 @@ module Increase
173
173
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
174
174
  )
175
175
 
176
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
176
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
177
177
  AUTHORIZATION_REVOKED_BY_CUSTOMER =
178
178
  T.let(
179
179
  :authorization_revoked_by_customer,
@@ -194,7 +194,7 @@ module Increase
194
194
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
195
195
  )
196
196
 
197
- # Code R45. The individual name field was invalid.
197
+ # Code R45. A rare return reason. The individual name field was invalid.
198
198
  ENR_INVALID_INDIVIDUAL_NAME =
199
199
  T.let(
200
200
  :enr_invalid_individual_name,
@@ -502,7 +502,7 @@ module Increase
502
502
  Increase::Simulations::ACHTransferReturnParams::Reason::TaggedSymbol
503
503
  )
504
504
 
505
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
505
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
506
506
  RETURN_OF_XCK_ENTRY =
507
507
  T.let(
508
508
  :return_of_xck_entry,
@@ -2065,7 +2065,7 @@ module Increase
2065
2065
  end
2066
2066
  OrSymbol = T.type_alias { T.any(Symbol, String) }
2067
2067
 
2068
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
2068
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
2069
2069
  INSUFFICIENT_FUND =
2070
2070
  T.let(
2071
2071
  :insufficient_fund,
@@ -2093,21 +2093,21 @@ module Increase
2093
2093
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2094
2094
  )
2095
2095
 
2096
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
2096
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
2097
2097
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION =
2098
2098
  T.let(
2099
2099
  :account_frozen_entry_returned_per_ofac_instruction,
2100
2100
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2101
2101
  )
2102
2102
 
2103
- # Code R23. The receiving bank account refused a credit transfer.
2103
+ # Code R23. The receiving bank refused the credit transfer.
2104
2104
  CREDIT_ENTRY_REFUSED_BY_RECEIVER =
2105
2105
  T.let(
2106
2106
  :credit_entry_refused_by_receiver,
2107
2107
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2108
2108
  )
2109
2109
 
2110
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
2110
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
2111
2111
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE =
2112
2112
  T.let(
2113
2113
  :unauthorized_debit_to_consumer_account_using_corporate_sec_code,
@@ -2128,7 +2128,7 @@ module Increase
2128
2128
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2129
2129
  )
2130
2130
 
2131
- # Code R20. The receiving bank account does not perform transfers.
2131
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
2132
2132
  NON_TRANSACTION_ACCOUNT =
2133
2133
  T.let(
2134
2134
  :non_transaction_account,
@@ -2163,7 +2163,7 @@ module Increase
2163
2163
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2164
2164
  )
2165
2165
 
2166
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
2166
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
2167
2167
  AUTHORIZATION_REVOKED_BY_CUSTOMER =
2168
2168
  T.let(
2169
2169
  :authorization_revoked_by_customer,
@@ -2184,7 +2184,7 @@ module Increase
2184
2184
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2185
2185
  )
2186
2186
 
2187
- # Code R45. The individual name field was invalid.
2187
+ # Code R45. A rare return reason. The individual name field was invalid.
2188
2188
  ENR_INVALID_INDIVIDUAL_NAME =
2189
2189
  T.let(
2190
2190
  :enr_invalid_individual_name,
@@ -2492,7 +2492,7 @@ module Increase
2492
2492
  Increase::Transaction::Source::ACHTransferReturn::ReturnReasonCode::TaggedSymbol
2493
2493
  )
2494
2494
 
2495
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
2495
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
2496
2496
  RETURN_OF_XCK_ENTRY =
2497
2497
  T.let(
2498
2498
  :return_of_xck_entry,
@@ -332,7 +332,7 @@ module Increase
332
332
  module ReturnReasonCode
333
333
  extend Increase::Internal::Type::Enum
334
334
 
335
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
335
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
336
336
  INSUFFICIENT_FUND: :insufficient_fund
337
337
 
338
338
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -344,13 +344,13 @@ module Increase
344
344
  # Code R04. The account number is invalid at the receiving bank.
345
345
  INVALID_ACCOUNT_NUMBER_STRUCTURE: :invalid_account_number_structure
346
346
 
347
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
347
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
348
348
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION: :account_frozen_entry_returned_per_ofac_instruction
349
349
 
350
- # Code R23. The receiving bank account refused a credit transfer.
350
+ # Code R23. The receiving bank refused the credit transfer.
351
351
  CREDIT_ENTRY_REFUSED_BY_RECEIVER: :credit_entry_refused_by_receiver
352
352
 
353
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
353
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
354
354
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE: :unauthorized_debit_to_consumer_account_using_corporate_sec_code
355
355
 
356
356
  # Code R29. The corporate customer at the receiving bank reversed the transfer.
@@ -359,7 +359,7 @@ module Increase
359
359
  # Code R08. The receiving bank stopped payment on this transfer.
360
360
  PAYMENT_STOPPED: :payment_stopped
361
361
 
362
- # Code R20. The receiving bank account does not perform transfers.
362
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
363
363
  NON_TRANSACTION_ACCOUNT: :non_transaction_account
364
364
 
365
365
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -374,7 +374,7 @@ module Increase
374
374
  # Code R19. The amount field is incorrect or too large.
375
375
  AMOUNT_FIELD_ERROR: :amount_field_error
376
376
 
377
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
377
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
378
378
  AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
379
379
 
380
380
  # Code R13. The routing number is invalid.
@@ -383,7 +383,7 @@ module Increase
383
383
  # Code R17. The receiving bank is unable to process a field in the transfer.
384
384
  FILE_RECORD_EDIT_CRITERIA: :file_record_edit_criteria
385
385
 
386
- # Code R45. The individual name field was invalid.
386
+ # Code R45. A rare return reason. The individual name field was invalid.
387
387
  ENR_INVALID_INDIVIDUAL_NAME: :enr_invalid_individual_name
388
388
 
389
389
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -515,7 +515,7 @@ module Increase
515
515
  # Code R35. A rare return reason. Return of a malformed debit entry.
516
516
  RETURN_OF_IMPROPER_DEBIT_ENTRY: :return_of_improper_debit_entry
517
517
 
518
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
518
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
519
519
  RETURN_OF_XCK_ENTRY: :return_of_xck_entry
520
520
 
521
521
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -818,7 +818,7 @@ module Increase
818
818
  module ReturnReasonCode
819
819
  extend Increase::Internal::Type::Enum
820
820
 
821
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
821
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
822
822
  INSUFFICIENT_FUND: :insufficient_fund
823
823
 
824
824
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -830,13 +830,13 @@ module Increase
830
830
  # Code R04. The account number is invalid at the receiving bank.
831
831
  INVALID_ACCOUNT_NUMBER_STRUCTURE: :invalid_account_number_structure
832
832
 
833
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
833
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
834
834
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION: :account_frozen_entry_returned_per_ofac_instruction
835
835
 
836
- # Code R23. The receiving bank account refused a credit transfer.
836
+ # Code R23. The receiving bank refused the credit transfer.
837
837
  CREDIT_ENTRY_REFUSED_BY_RECEIVER: :credit_entry_refused_by_receiver
838
838
 
839
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
839
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
840
840
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE: :unauthorized_debit_to_consumer_account_using_corporate_sec_code
841
841
 
842
842
  # Code R29. The corporate customer at the receiving bank reversed the transfer.
@@ -845,7 +845,7 @@ module Increase
845
845
  # Code R08. The receiving bank stopped payment on this transfer.
846
846
  PAYMENT_STOPPED: :payment_stopped
847
847
 
848
- # Code R20. The receiving bank account does not perform transfers.
848
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
849
849
  NON_TRANSACTION_ACCOUNT: :non_transaction_account
850
850
 
851
851
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -860,7 +860,7 @@ module Increase
860
860
  # Code R19. The amount field is incorrect or too large.
861
861
  AMOUNT_FIELD_ERROR: :amount_field_error
862
862
 
863
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
863
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
864
864
  AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
865
865
 
866
866
  # Code R13. The routing number is invalid.
@@ -869,7 +869,7 @@ module Increase
869
869
  # Code R17. The receiving bank is unable to process a field in the transfer.
870
870
  FILE_RECORD_EDIT_CRITERIA: :file_record_edit_criteria
871
871
 
872
- # Code R45. The individual name field was invalid.
872
+ # Code R45. A rare return reason. The individual name field was invalid.
873
873
  ENR_INVALID_INDIVIDUAL_NAME: :enr_invalid_individual_name
874
874
 
875
875
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -1001,7 +1001,7 @@ module Increase
1001
1001
  # Code R35. A rare return reason. Return of a malformed debit entry.
1002
1002
  RETURN_OF_IMPROPER_DEBIT_ENTRY: :return_of_improper_debit_entry
1003
1003
 
1004
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
1004
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
1005
1005
  RETURN_OF_XCK_ENTRY: :return_of_xck_entry
1006
1006
 
1007
1007
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -102,7 +102,7 @@ module Increase
102
102
  module Reason
103
103
  extend Increase::Internal::Type::Enum
104
104
 
105
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
105
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
106
106
  INSUFFICIENT_FUND: :insufficient_fund
107
107
 
108
108
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -114,13 +114,13 @@ module Increase
114
114
  # Code R04. The account number is invalid at the receiving bank.
115
115
  INVALID_ACCOUNT_NUMBER_STRUCTURE: :invalid_account_number_structure
116
116
 
117
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
117
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
118
118
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION: :account_frozen_entry_returned_per_ofac_instruction
119
119
 
120
- # Code R23. The receiving bank account refused a credit transfer.
120
+ # Code R23. The receiving bank refused the credit transfer.
121
121
  CREDIT_ENTRY_REFUSED_BY_RECEIVER: :credit_entry_refused_by_receiver
122
122
 
123
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
123
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
124
124
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE: :unauthorized_debit_to_consumer_account_using_corporate_sec_code
125
125
 
126
126
  # Code R29. The corporate customer at the receiving bank reversed the transfer.
@@ -129,7 +129,7 @@ module Increase
129
129
  # Code R08. The receiving bank stopped payment on this transfer.
130
130
  PAYMENT_STOPPED: :payment_stopped
131
131
 
132
- # Code R20. The receiving bank account does not perform transfers.
132
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
133
133
  NON_TRANSACTION_ACCOUNT: :non_transaction_account
134
134
 
135
135
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -144,7 +144,7 @@ module Increase
144
144
  # Code R19. The amount field is incorrect or too large.
145
145
  AMOUNT_FIELD_ERROR: :amount_field_error
146
146
 
147
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
147
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
148
148
  AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
149
149
 
150
150
  # Code R13. The routing number is invalid.
@@ -153,7 +153,7 @@ module Increase
153
153
  # Code R17. The receiving bank is unable to process a field in the transfer.
154
154
  FILE_RECORD_EDIT_CRITERIA: :file_record_edit_criteria
155
155
 
156
- # Code R45. The individual name field was invalid.
156
+ # Code R45. A rare return reason. The individual name field was invalid.
157
157
  ENR_INVALID_INDIVIDUAL_NAME: :enr_invalid_individual_name
158
158
 
159
159
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -285,7 +285,7 @@ module Increase
285
285
  # Code R35. A rare return reason. Return of a malformed debit entry.
286
286
  RETURN_OF_IMPROPER_DEBIT_ENTRY: :return_of_improper_debit_entry
287
287
 
288
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
288
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
289
289
  RETURN_OF_XCK_ENTRY: :return_of_xck_entry
290
290
 
291
291
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
@@ -698,7 +698,7 @@ module Increase
698
698
  module ReturnReasonCode
699
699
  extend Increase::Internal::Type::Enum
700
700
 
701
- # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to NSF.
701
+ # Code R01. Insufficient funds in the receiving account. Sometimes abbreviated to "NSF."
702
702
  INSUFFICIENT_FUND: :insufficient_fund
703
703
 
704
704
  # Code R03. The account does not exist or the receiving bank was unable to locate it.
@@ -710,13 +710,13 @@ module Increase
710
710
  # Code R04. The account number is invalid at the receiving bank.
711
711
  INVALID_ACCOUNT_NUMBER_STRUCTURE: :invalid_account_number_structure
712
712
 
713
- # Code R16. The account at the receiving bank was frozen per the Office of Foreign Assets Control.
713
+ # Code R16. This return code has two separate meanings. (1) The receiving bank froze the account or (2) the Office of Foreign Assets Control (OFAC) instructed the receiving bank to return the entry.
714
714
  ACCOUNT_FROZEN_ENTRY_RETURNED_PER_OFAC_INSTRUCTION: :account_frozen_entry_returned_per_ofac_instruction
715
715
 
716
- # Code R23. The receiving bank account refused a credit transfer.
716
+ # Code R23. The receiving bank refused the credit transfer.
717
717
  CREDIT_ENTRY_REFUSED_BY_RECEIVER: :credit_entry_refused_by_receiver
718
718
 
719
- # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code.
719
+ # Code R05. The receiving bank rejected because of an incorrect Standard Entry Class code. Consumer accounts cannot be debited as `corporate_credit_or_debit` or `corporate_trade_exchange`.
720
720
  UNAUTHORIZED_DEBIT_TO_CONSUMER_ACCOUNT_USING_CORPORATE_SEC_CODE: :unauthorized_debit_to_consumer_account_using_corporate_sec_code
721
721
 
722
722
  # Code R29. The corporate customer at the receiving bank reversed the transfer.
@@ -725,7 +725,7 @@ module Increase
725
725
  # Code R08. The receiving bank stopped payment on this transfer.
726
726
  PAYMENT_STOPPED: :payment_stopped
727
727
 
728
- # Code R20. The receiving bank account does not perform transfers.
728
+ # Code R20. The account is not eligible for ACH, such as a savings account with transaction limits.
729
729
  NON_TRANSACTION_ACCOUNT: :non_transaction_account
730
730
 
731
731
  # Code R09. The receiving bank account does not have enough available balance for the transfer.
@@ -740,7 +740,7 @@ module Increase
740
740
  # Code R19. The amount field is incorrect or too large.
741
741
  AMOUNT_FIELD_ERROR: :amount_field_error
742
742
 
743
- # Code R07. The customer at the receiving institution informed their bank that they have revoked authorization for a previously authorized transfer.
743
+ # Code R07. The customer revoked their authorization for a previously authorized transfer.
744
744
  AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
745
745
 
746
746
  # Code R13. The routing number is invalid.
@@ -749,7 +749,7 @@ module Increase
749
749
  # Code R17. The receiving bank is unable to process a field in the transfer.
750
750
  FILE_RECORD_EDIT_CRITERIA: :file_record_edit_criteria
751
751
 
752
- # Code R45. The individual name field was invalid.
752
+ # Code R45. A rare return reason. The individual name field was invalid.
753
753
  ENR_INVALID_INDIVIDUAL_NAME: :enr_invalid_individual_name
754
754
 
755
755
  # Code R06. The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
@@ -881,7 +881,7 @@ module Increase
881
881
  # Code R35. A rare return reason. Return of a malformed debit entry.
882
882
  RETURN_OF_IMPROPER_DEBIT_ENTRY: :return_of_improper_debit_entry
883
883
 
884
- # Code R33. A rare return reason. Return of a Destroyed Check ("XKC") entry.
884
+ # Code R33. A rare return reason. Return of a destroyed check ("XCK") entry.
885
885
  RETURN_OF_XCK_ENTRY: :return_of_xck_entry
886
886
 
887
887
  # Code R37. A rare return reason. The source document related to this ACH, usually an ACH check conversion, was presented to the bank.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.204.0
4
+ version: 1.205.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase