increase 1.202.1 → 1.203.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: cc249df2bf972d173fc0730f958105047b5cda637e8bf553c2b151dfd3ae64f8
4
- data.tar.gz: 0c10d16931ed9003a3dfec282d6e8ea115a7cf3b0500b62b435c1554426b0d21
3
+ metadata.gz: 2b1d5b6ddfc380026ec591b215a825bbdc78a14495e8650d89718a2c454bf6f8
4
+ data.tar.gz: 47d4a99e44652180ddd36c32a5948b5f7793d3bc57326591733857ac5e7bedf4
5
5
  SHA512:
6
- metadata.gz: a307f02671907bd41804749d2a11e58a37492b6be94ee2f7a84d21b4d8b27a5b3bba9f4eab852823471b7874db5ccade89d721a7c83eed13012a5c43266ab739
7
- data.tar.gz: 58494a0635cd211dae68e4519867bff102088364c931ecd1d78cabc07246206e337a8bd052a1fcf55aae267c555accba2a68c73a7e9bd87fc5eea4faebb0d369
6
+ metadata.gz: 1a92a2f7e8d09f69c7a97965bb9bf8052a9f88c1a55f3d03e55b2bb6994e2f0aaec89dbc47e38fb860910a029041840fdbd0ab2753eab8df8e8626bd0978b640
7
+ data.tar.gz: f3f33c0d9f1c6638df7b49d0a2db84855f5f5affba98362b577f0987651e149a8d2f4fbfa86e15436f0c3558bf9f02d36cdeecb5b2aa284eb1d80050449ab46e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.203.0 (2026-02-06)
4
+
5
+ Full Changelog: [v1.202.1...v1.203.0](https://github.com/Increase/increase-ruby/compare/v1.202.1...v1.203.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([ee29957](https://github.com/Increase/increase-ruby/commit/ee299579540ba0ba073ff96eddc4525d514076ca))
10
+
3
11
  ## 1.202.1 (2026-02-06)
4
12
 
5
13
  Full Changelog: [v1.202.0...v1.202.1](https://github.com/Increase/increase-ruby/compare/v1.202.0...v1.202.1)
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.202.1"
18
+ gem "increase", "~> 1.203.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -115,7 +115,9 @@ module Increase
115
115
  required :routing_number, String
116
116
 
117
117
  # @!attribute standard_entry_class_code
118
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
118
+ # The
119
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
120
+ # to use for the ACH Prenotification.
119
121
  #
120
122
  # @return [Symbol, Increase::Models::ACHPrenotification::StandardEntryClassCode, nil]
121
123
  required :standard_entry_class_code,
@@ -176,7 +178,7 @@ module Increase
176
178
  #
177
179
  # @param routing_number [String] The American Bankers' Association (ABA) Routing Transit Number (RTN).
178
180
  #
179
- # @param standard_entry_class_code [Symbol, Increase::Models::ACHPrenotification::StandardEntryClassCode, nil] The Standard Entry Class (SEC) code to use for the ACH Prenotification.
181
+ # @param standard_entry_class_code [Symbol, Increase::Models::ACHPrenotification::StandardEntryClassCode, nil] The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-co
180
182
  #
181
183
  # @param status [Symbol, Increase::Models::ACHPrenotification::Status] The lifecycle status of the ACH Prenotification.
182
184
  #
@@ -558,22 +560,24 @@ module Increase
558
560
  end
559
561
  end
560
562
 
561
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
563
+ # The
564
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
565
+ # to use for the ACH Prenotification.
562
566
  #
563
567
  # @see Increase::Models::ACHPrenotification#standard_entry_class_code
564
568
  module StandardEntryClassCode
565
569
  extend Increase::Internal::Type::Enum
566
570
 
567
- # Corporate Credit and Debit (CCD).
571
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
568
572
  CORPORATE_CREDIT_OR_DEBIT = :corporate_credit_or_debit
569
573
 
570
- # Corporate Trade Exchange (CTX).
574
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
571
575
  CORPORATE_TRADE_EXCHANGE = :corporate_trade_exchange
572
576
 
573
- # Prearranged Payments and Deposits (PPD).
577
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
574
578
  PREARRANGED_PAYMENTS_AND_DEPOSIT = :prearranged_payments_and_deposit
575
579
 
576
- # Internet Initiated (WEB).
580
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
577
581
  INTERNET_INITIATED = :internet_initiated
578
582
 
579
583
  # @!method self.values
@@ -84,7 +84,9 @@ module Increase
84
84
  optional :individual_name, String
85
85
 
86
86
  # @!attribute standard_entry_class_code
87
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
87
+ # The
88
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
89
+ # to use for the ACH Prenotification.
88
90
  #
89
91
  # @return [Symbol, Increase::Models::ACHPrenotificationCreateParams::StandardEntryClassCode, nil]
90
92
  optional :standard_entry_class_code,
@@ -118,7 +120,7 @@ module Increase
118
120
  #
119
121
  # @param individual_name [String] The name of therecipient. This value is informational and not verified by the re
120
122
  #
121
- # @param standard_entry_class_code [Symbol, Increase::Models::ACHPrenotificationCreateParams::StandardEntryClassCode] The Standard Entry Class (SEC) code to use for the ACH Prenotification.
123
+ # @param standard_entry_class_code [Symbol, Increase::Models::ACHPrenotificationCreateParams::StandardEntryClassCode] The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-co
122
124
  #
123
125
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
124
126
 
@@ -136,20 +138,22 @@ module Increase
136
138
  # @return [Array<Symbol>]
137
139
  end
138
140
 
139
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
141
+ # The
142
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
143
+ # to use for the ACH Prenotification.
140
144
  module StandardEntryClassCode
141
145
  extend Increase::Internal::Type::Enum
142
146
 
143
- # Corporate Credit and Debit (CCD).
147
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
144
148
  CORPORATE_CREDIT_OR_DEBIT = :corporate_credit_or_debit
145
149
 
146
- # Corporate Trade Exchange (CTX).
150
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
147
151
  CORPORATE_TRADE_EXCHANGE = :corporate_trade_exchange
148
152
 
149
- # Prearranged Payments and Deposits (PPD).
153
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
150
154
  PREARRANGED_PAYMENTS_AND_DEPOSIT = :prearranged_payments_and_deposit
151
155
 
152
- # Internet Initiated (WEB).
156
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
153
157
  INTERNET_INITIATED = :internet_initiated
154
158
 
155
159
  # @!method self.values
@@ -207,7 +207,9 @@ module Increase
207
207
  required :settlement, -> { Increase::ACHTransfer::Settlement }, nil?: true
208
208
 
209
209
  # @!attribute standard_entry_class_code
210
- # The Standard Entry Class (SEC) code to use for the transfer.
210
+ # The
211
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
212
+ # to use for the transfer.
211
213
  #
212
214
  # @return [Symbol, Increase::Models::ACHTransfer::StandardEntryClassCode]
213
215
  required :standard_entry_class_code, enum: -> { Increase::ACHTransfer::StandardEntryClassCode }
@@ -314,7 +316,7 @@ module Increase
314
316
  #
315
317
  # @param settlement [Increase::Models::ACHTransfer::Settlement, nil] A subhash containing information about when and how the transfer settled at the
316
318
  #
317
- # @param standard_entry_class_code [Symbol, Increase::Models::ACHTransfer::StandardEntryClassCode] The Standard Entry Class (SEC) code to use for the transfer.
319
+ # @param standard_entry_class_code [Symbol, Increase::Models::ACHTransfer::StandardEntryClassCode] The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-co
318
320
  #
319
321
  # @param statement_descriptor [String] The descriptor that will show on the recipient's bank statement.
320
322
  #
@@ -1284,22 +1286,24 @@ module Increase
1284
1286
  # @param settled_at [Time] When the funds for this transfer have settled at the destination bank at the Fed
1285
1287
  end
1286
1288
 
1287
- # The Standard Entry Class (SEC) code to use for the transfer.
1289
+ # The
1290
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
1291
+ # to use for the transfer.
1288
1292
  #
1289
1293
  # @see Increase::Models::ACHTransfer#standard_entry_class_code
1290
1294
  module StandardEntryClassCode
1291
1295
  extend Increase::Internal::Type::Enum
1292
1296
 
1293
- # Corporate Credit and Debit (CCD).
1297
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
1294
1298
  CORPORATE_CREDIT_OR_DEBIT = :corporate_credit_or_debit
1295
1299
 
1296
- # Corporate Trade Exchange (CTX).
1300
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
1297
1301
  CORPORATE_TRADE_EXCHANGE = :corporate_trade_exchange
1298
1302
 
1299
- # Prearranged Payments and Deposits (PPD).
1303
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
1300
1304
  PREARRANGED_PAYMENTS_AND_DEPOSIT = :prearranged_payments_and_deposit
1301
1305
 
1302
- # Internet Initiated (WEB).
1306
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
1303
1307
  INTERNET_INITIATED = :internet_initiated
1304
1308
 
1305
1309
  # @!method self.values
@@ -60,8 +60,9 @@ module Increase
60
60
  optional :company_discretionary_data, String
61
61
 
62
62
  # @!attribute company_entry_description
63
- # A description of the transfer. This is included in the transfer data sent to the
64
- # receiving bank.
63
+ # A description of the transfer, included in the transfer data sent to the
64
+ # receiving bank. Standardized formatting may be required, for example `PAYROLL`
65
+ # for payroll-related Prearranged Payments and Deposits (PPD) credit transfers.
65
66
  #
66
67
  # @return [String, nil]
67
68
  optional :company_entry_description, String
@@ -130,7 +131,9 @@ module Increase
130
131
  optional :routing_number, String
131
132
 
132
133
  # @!attribute standard_entry_class_code
133
- # The Standard Entry Class (SEC) code to use for the transfer.
134
+ # The
135
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
136
+ # to use for the transfer.
134
137
  #
135
138
  # @return [Symbol, Increase::Models::ACHTransferCreateParams::StandardEntryClassCode, nil]
136
139
  optional :standard_entry_class_code,
@@ -160,7 +163,7 @@ module Increase
160
163
  #
161
164
  # @param company_discretionary_data [String] The data you choose to associate with the transfer. This is included in the tran
162
165
  #
163
- # @param company_entry_description [String] A description of the transfer. This is included in the transfer data sent to the
166
+ # @param company_entry_description [String] A description of the transfer, included in the transfer data sent to the receivi
164
167
  #
165
168
  # @param company_name [String] The name by which the recipient knows you. This is included in the transfer data
166
169
  #
@@ -180,7 +183,7 @@ module Increase
180
183
  #
181
184
  # @param routing_number [String] The American Bankers' Association (ABA) Routing Transit Number (RTN) for the des
182
185
  #
183
- # @param standard_entry_class_code [Symbol, Increase::Models::ACHTransferCreateParams::StandardEntryClassCode] The Standard Entry Class (SEC) code to use for the transfer.
186
+ # @param standard_entry_class_code [Symbol, Increase::Models::ACHTransferCreateParams::StandardEntryClassCode] The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-co
184
187
  #
185
188
  # @param transaction_timing [Symbol, Increase::Models::ACHTransferCreateParams::TransactionTiming] The timing of the transaction.
186
189
  #
@@ -395,20 +398,22 @@ module Increase
395
398
  end
396
399
  end
397
400
 
398
- # The Standard Entry Class (SEC) code to use for the transfer.
401
+ # The
402
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
403
+ # to use for the transfer.
399
404
  module StandardEntryClassCode
400
405
  extend Increase::Internal::Type::Enum
401
406
 
402
- # Corporate Credit and Debit (CCD).
407
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
403
408
  CORPORATE_CREDIT_OR_DEBIT = :corporate_credit_or_debit
404
409
 
405
- # Corporate Trade Exchange (CTX).
410
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
406
411
  CORPORATE_TRADE_EXCHANGE = :corporate_trade_exchange
407
412
 
408
- # Prearranged Payments and Deposits (PPD).
413
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
409
414
  PREARRANGED_PAYMENTS_AND_DEPOSIT = :prearranged_payments_and_deposit
410
415
 
411
- # Internet Initiated (WEB).
416
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
412
417
  INTERNET_INITIATED = :internet_initiated
413
418
 
414
419
  # @!method self.values
@@ -34,7 +34,7 @@ module Increase
34
34
  #
35
35
  # @param individual_name [String] The name of therecipient. This value is informational and not verified by the re
36
36
  #
37
- # @param standard_entry_class_code [Symbol, Increase::Models::ACHPrenotificationCreateParams::StandardEntryClassCode] The Standard Entry Class (SEC) code to use for the ACH Prenotification.
37
+ # @param standard_entry_class_code [Symbol, Increase::Models::ACHPrenotificationCreateParams::StandardEntryClassCode] The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-co
38
38
  #
39
39
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
40
40
  #
@@ -24,7 +24,7 @@ module Increase
24
24
  #
25
25
  # @param company_discretionary_data [String] The data you choose to associate with the transfer. This is included in the tran
26
26
  #
27
- # @param company_entry_description [String] A description of the transfer. This is included in the transfer data sent to the
27
+ # @param company_entry_description [String] A description of the transfer, included in the transfer data sent to the receivi
28
28
  #
29
29
  # @param company_name [String] The name by which the recipient knows you. This is included in the transfer data
30
30
  #
@@ -44,7 +44,7 @@ module Increase
44
44
  #
45
45
  # @param routing_number [String] The American Bankers' Association (ABA) Routing Transit Number (RTN) for the des
46
46
  #
47
- # @param standard_entry_class_code [Symbol, Increase::Models::ACHTransferCreateParams::StandardEntryClassCode] The Standard Entry Class (SEC) code to use for the transfer.
47
+ # @param standard_entry_class_code [Symbol, Increase::Models::ACHTransferCreateParams::StandardEntryClassCode] The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-co
48
48
  #
49
49
  # @param transaction_timing [Symbol, Increase::Models::ACHTransferCreateParams::TransactionTiming] The timing of the transaction.
50
50
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.202.1"
4
+ VERSION = "1.203.0"
5
5
  end
@@ -101,7 +101,9 @@ module Increase
101
101
  sig { returns(String) }
102
102
  attr_accessor :routing_number
103
103
 
104
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
104
+ # The
105
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
106
+ # to use for the ACH Prenotification.
105
107
  sig do
106
108
  returns(
107
109
  T.nilable(
@@ -198,7 +200,9 @@ module Increase
198
200
  prenotification_return:,
199
201
  # The American Bankers' Association (ABA) Routing Transit Number (RTN).
200
202
  routing_number:,
201
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
203
+ # The
204
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
205
+ # to use for the ACH Prenotification.
202
206
  standard_entry_class_code:,
203
207
  # The lifecycle status of the ACH Prenotification.
204
208
  status:,
@@ -1073,7 +1077,9 @@ module Increase
1073
1077
  end
1074
1078
  end
1075
1079
 
1076
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
1080
+ # The
1081
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
1082
+ # to use for the ACH Prenotification.
1077
1083
  module StandardEntryClassCode
1078
1084
  extend Increase::Internal::Type::Enum
1079
1085
 
@@ -1083,28 +1089,28 @@ module Increase
1083
1089
  end
1084
1090
  OrSymbol = T.type_alias { T.any(Symbol, String) }
1085
1091
 
1086
- # Corporate Credit and Debit (CCD).
1092
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
1087
1093
  CORPORATE_CREDIT_OR_DEBIT =
1088
1094
  T.let(
1089
1095
  :corporate_credit_or_debit,
1090
1096
  Increase::ACHPrenotification::StandardEntryClassCode::TaggedSymbol
1091
1097
  )
1092
1098
 
1093
- # Corporate Trade Exchange (CTX).
1099
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
1094
1100
  CORPORATE_TRADE_EXCHANGE =
1095
1101
  T.let(
1096
1102
  :corporate_trade_exchange,
1097
1103
  Increase::ACHPrenotification::StandardEntryClassCode::TaggedSymbol
1098
1104
  )
1099
1105
 
1100
- # Prearranged Payments and Deposits (PPD).
1106
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
1101
1107
  PREARRANGED_PAYMENTS_AND_DEPOSIT =
1102
1108
  T.let(
1103
1109
  :prearranged_payments_and_deposit,
1104
1110
  Increase::ACHPrenotification::StandardEntryClassCode::TaggedSymbol
1105
1111
  )
1106
1112
 
1107
- # Internet Initiated (WEB).
1113
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
1108
1114
  INTERNET_INITIATED =
1109
1115
  T.let(
1110
1116
  :internet_initiated,
@@ -103,7 +103,9 @@ module Increase
103
103
  sig { params(individual_name: String).void }
104
104
  attr_writer :individual_name
105
105
 
106
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
106
+ # The
107
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
108
+ # to use for the ACH Prenotification.
107
109
  sig do
108
110
  returns(
109
111
  T.nilable(
@@ -169,7 +171,9 @@ module Increase
169
171
  # The name of therecipient. This value is informational and not verified by the
170
172
  # recipient's bank.
171
173
  individual_name: nil,
172
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
174
+ # The
175
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
176
+ # to use for the ACH Prenotification.
173
177
  standard_entry_class_code: nil,
174
178
  request_options: {}
175
179
  )
@@ -238,7 +242,9 @@ module Increase
238
242
  end
239
243
  end
240
244
 
241
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
245
+ # The
246
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
247
+ # to use for the ACH Prenotification.
242
248
  module StandardEntryClassCode
243
249
  extend Increase::Internal::Type::Enum
244
250
 
@@ -251,28 +257,28 @@ module Increase
251
257
  end
252
258
  OrSymbol = T.type_alias { T.any(Symbol, String) }
253
259
 
254
- # Corporate Credit and Debit (CCD).
260
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
255
261
  CORPORATE_CREDIT_OR_DEBIT =
256
262
  T.let(
257
263
  :corporate_credit_or_debit,
258
264
  Increase::ACHPrenotificationCreateParams::StandardEntryClassCode::TaggedSymbol
259
265
  )
260
266
 
261
- # Corporate Trade Exchange (CTX).
267
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
262
268
  CORPORATE_TRADE_EXCHANGE =
263
269
  T.let(
264
270
  :corporate_trade_exchange,
265
271
  Increase::ACHPrenotificationCreateParams::StandardEntryClassCode::TaggedSymbol
266
272
  )
267
273
 
268
- # Prearranged Payments and Deposits (PPD).
274
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
269
275
  PREARRANGED_PAYMENTS_AND_DEPOSIT =
270
276
  T.let(
271
277
  :prearranged_payments_and_deposit,
272
278
  Increase::ACHPrenotificationCreateParams::StandardEntryClassCode::TaggedSymbol
273
279
  )
274
280
 
275
- # Internet Initiated (WEB).
281
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
276
282
  INTERNET_INITIATED =
277
283
  T.let(
278
284
  :internet_initiated,
@@ -213,7 +213,9 @@ module Increase
213
213
  end
214
214
  attr_writer :settlement
215
215
 
216
- # The Standard Entry Class (SEC) code to use for the transfer.
216
+ # The
217
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
218
+ # to use for the transfer.
217
219
  sig do
218
220
  returns(Increase::ACHTransfer::StandardEntryClassCode::TaggedSymbol)
219
221
  end
@@ -381,7 +383,9 @@ module Increase
381
383
  # A subhash containing information about when and how the transfer settled at the
382
384
  # Federal Reserve.
383
385
  settlement:,
384
- # The Standard Entry Class (SEC) code to use for the transfer.
386
+ # The
387
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
388
+ # to use for the transfer.
385
389
  standard_entry_class_code:,
386
390
  # The descriptor that will show on the recipient's bank statement.
387
391
  statement_descriptor:,
@@ -2345,7 +2349,9 @@ module Increase
2345
2349
  end
2346
2350
  end
2347
2351
 
2348
- # The Standard Entry Class (SEC) code to use for the transfer.
2352
+ # The
2353
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
2354
+ # to use for the transfer.
2349
2355
  module StandardEntryClassCode
2350
2356
  extend Increase::Internal::Type::Enum
2351
2357
 
@@ -2355,28 +2361,28 @@ module Increase
2355
2361
  end
2356
2362
  OrSymbol = T.type_alias { T.any(Symbol, String) }
2357
2363
 
2358
- # Corporate Credit and Debit (CCD).
2364
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
2359
2365
  CORPORATE_CREDIT_OR_DEBIT =
2360
2366
  T.let(
2361
2367
  :corporate_credit_or_debit,
2362
2368
  Increase::ACHTransfer::StandardEntryClassCode::TaggedSymbol
2363
2369
  )
2364
2370
 
2365
- # Corporate Trade Exchange (CTX).
2371
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
2366
2372
  CORPORATE_TRADE_EXCHANGE =
2367
2373
  T.let(
2368
2374
  :corporate_trade_exchange,
2369
2375
  Increase::ACHTransfer::StandardEntryClassCode::TaggedSymbol
2370
2376
  )
2371
2377
 
2372
- # Prearranged Payments and Deposits (PPD).
2378
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
2373
2379
  PREARRANGED_PAYMENTS_AND_DEPOSIT =
2374
2380
  T.let(
2375
2381
  :prearranged_payments_and_deposit,
2376
2382
  Increase::ACHTransfer::StandardEntryClassCode::TaggedSymbol
2377
2383
  )
2378
2384
 
2379
- # Internet Initiated (WEB).
2385
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
2380
2386
  INTERNET_INITIATED =
2381
2387
  T.let(
2382
2388
  :internet_initiated,
@@ -63,8 +63,9 @@ module Increase
63
63
  sig { params(company_discretionary_data: String).void }
64
64
  attr_writer :company_discretionary_data
65
65
 
66
- # A description of the transfer. This is included in the transfer data sent to the
67
- # receiving bank.
66
+ # A description of the transfer, included in the transfer data sent to the
67
+ # receiving bank. Standardized formatting may be required, for example `PAYROLL`
68
+ # for payroll-related Prearranged Payments and Deposits (PPD) credit transfers.
68
69
  sig { returns(T.nilable(String)) }
69
70
  attr_reader :company_entry_description
70
71
 
@@ -168,7 +169,9 @@ module Increase
168
169
  sig { params(routing_number: String).void }
169
170
  attr_writer :routing_number
170
171
 
171
- # The Standard Entry Class (SEC) code to use for the transfer.
172
+ # The
173
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
174
+ # to use for the transfer.
172
175
  sig do
173
176
  returns(
174
177
  T.nilable(
@@ -257,8 +260,9 @@ module Increase
257
260
  # The data you choose to associate with the transfer. This is included in the
258
261
  # transfer data sent to the receiving bank.
259
262
  company_discretionary_data: nil,
260
- # A description of the transfer. This is included in the transfer data sent to the
261
- # receiving bank.
263
+ # A description of the transfer, included in the transfer data sent to the
264
+ # receiving bank. Standardized formatting may be required, for example `PAYROLL`
265
+ # for payroll-related Prearranged Payments and Deposits (PPD) credit transfers.
262
266
  company_entry_description: nil,
263
267
  # The name by which the recipient knows you. This is included in the transfer data
264
268
  # sent to the receiving bank.
@@ -286,7 +290,9 @@ module Increase
286
290
  # The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
287
291
  # destination account.
288
292
  routing_number: nil,
289
- # The Standard Entry Class (SEC) code to use for the transfer.
293
+ # The
294
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
295
+ # to use for the transfer.
290
296
  standard_entry_class_code: nil,
291
297
  # The timing of the transaction.
292
298
  transaction_timing: nil,
@@ -826,7 +832,9 @@ module Increase
826
832
  end
827
833
  end
828
834
 
829
- # The Standard Entry Class (SEC) code to use for the transfer.
835
+ # The
836
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
837
+ # to use for the transfer.
830
838
  module StandardEntryClassCode
831
839
  extend Increase::Internal::Type::Enum
832
840
 
@@ -839,28 +847,28 @@ module Increase
839
847
  end
840
848
  OrSymbol = T.type_alias { T.any(Symbol, String) }
841
849
 
842
- # Corporate Credit and Debit (CCD).
850
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
843
851
  CORPORATE_CREDIT_OR_DEBIT =
844
852
  T.let(
845
853
  :corporate_credit_or_debit,
846
854
  Increase::ACHTransferCreateParams::StandardEntryClassCode::TaggedSymbol
847
855
  )
848
856
 
849
- # Corporate Trade Exchange (CTX).
857
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
850
858
  CORPORATE_TRADE_EXCHANGE =
851
859
  T.let(
852
860
  :corporate_trade_exchange,
853
861
  Increase::ACHTransferCreateParams::StandardEntryClassCode::TaggedSymbol
854
862
  )
855
863
 
856
- # Prearranged Payments and Deposits (PPD).
864
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
857
865
  PREARRANGED_PAYMENTS_AND_DEPOSIT =
858
866
  T.let(
859
867
  :prearranged_payments_and_deposit,
860
868
  Increase::ACHTransferCreateParams::StandardEntryClassCode::TaggedSymbol
861
869
  )
862
870
 
863
- # Internet Initiated (WEB).
871
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
864
872
  INTERNET_INITIATED =
865
873
  T.let(
866
874
  :internet_initiated,
@@ -52,7 +52,9 @@ module Increase
52
52
  # The name of therecipient. This value is informational and not verified by the
53
53
  # recipient's bank.
54
54
  individual_name: nil,
55
- # The Standard Entry Class (SEC) code to use for the ACH Prenotification.
55
+ # The
56
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
57
+ # to use for the ACH Prenotification.
56
58
  standard_entry_class_code: nil,
57
59
  request_options: {}
58
60
  )
@@ -57,8 +57,9 @@ module Increase
57
57
  # The data you choose to associate with the transfer. This is included in the
58
58
  # transfer data sent to the receiving bank.
59
59
  company_discretionary_data: nil,
60
- # A description of the transfer. This is included in the transfer data sent to the
61
- # receiving bank.
60
+ # A description of the transfer, included in the transfer data sent to the
61
+ # receiving bank. Standardized formatting may be required, for example `PAYROLL`
62
+ # for payroll-related Prearranged Payments and Deposits (PPD) credit transfers.
62
63
  company_entry_description: nil,
63
64
  # The name by which the recipient knows you. This is included in the transfer data
64
65
  # sent to the receiving bank.
@@ -86,7 +87,9 @@ module Increase
86
87
  # The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
87
88
  # destination account.
88
89
  routing_number: nil,
89
- # The Standard Entry Class (SEC) code to use for the transfer.
90
+ # The
91
+ # [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
92
+ # to use for the transfer.
90
93
  standard_entry_class_code: nil,
91
94
  # The timing of the transaction.
92
95
  transaction_timing: nil,
@@ -555,16 +555,16 @@ module Increase
555
555
  module StandardEntryClassCode
556
556
  extend Increase::Internal::Type::Enum
557
557
 
558
- # Corporate Credit and Debit (CCD).
558
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
559
559
  CORPORATE_CREDIT_OR_DEBIT: :corporate_credit_or_debit
560
560
 
561
- # Corporate Trade Exchange (CTX).
561
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
562
562
  CORPORATE_TRADE_EXCHANGE: :corporate_trade_exchange
563
563
 
564
- # Prearranged Payments and Deposits (PPD).
564
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
565
565
  PREARRANGED_PAYMENTS_AND_DEPOSIT: :prearranged_payments_and_deposit
566
566
 
567
- # Internet Initiated (WEB).
567
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
568
568
  INTERNET_INITIATED: :internet_initiated
569
569
 
570
570
  def self?.values: -> ::Array[Increase::Models::ACHPrenotification::standard_entry_class_code]
@@ -129,16 +129,16 @@ module Increase
129
129
  module StandardEntryClassCode
130
130
  extend Increase::Internal::Type::Enum
131
131
 
132
- # Corporate Credit and Debit (CCD).
132
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
133
133
  CORPORATE_CREDIT_OR_DEBIT: :corporate_credit_or_debit
134
134
 
135
- # Corporate Trade Exchange (CTX).
135
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
136
136
  CORPORATE_TRADE_EXCHANGE: :corporate_trade_exchange
137
137
 
138
- # Prearranged Payments and Deposits (PPD).
138
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
139
139
  PREARRANGED_PAYMENTS_AND_DEPOSIT: :prearranged_payments_and_deposit
140
140
 
141
- # Internet Initiated (WEB).
141
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
142
142
  INTERNET_INITIATED: :internet_initiated
143
143
 
144
144
  def self?.values: -> ::Array[Increase::Models::ACHPrenotificationCreateParams::standard_entry_class_code]
@@ -1051,16 +1051,16 @@ module Increase
1051
1051
  module StandardEntryClassCode
1052
1052
  extend Increase::Internal::Type::Enum
1053
1053
 
1054
- # Corporate Credit and Debit (CCD).
1054
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
1055
1055
  CORPORATE_CREDIT_OR_DEBIT: :corporate_credit_or_debit
1056
1056
 
1057
- # Corporate Trade Exchange (CTX).
1057
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
1058
1058
  CORPORATE_TRADE_EXCHANGE: :corporate_trade_exchange
1059
1059
 
1060
- # Prearranged Payments and Deposits (PPD).
1060
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
1061
1061
  PREARRANGED_PAYMENTS_AND_DEPOSIT: :prearranged_payments_and_deposit
1062
1062
 
1063
- # Internet Initiated (WEB).
1063
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
1064
1064
  INTERNET_INITIATED: :internet_initiated
1065
1065
 
1066
1066
  def self?.values: -> ::Array[Increase::Models::ACHTransfer::standard_entry_class_code]
@@ -349,16 +349,16 @@ module Increase
349
349
  module StandardEntryClassCode
350
350
  extend Increase::Internal::Type::Enum
351
351
 
352
- # Corporate Credit and Debit (CCD).
352
+ # Corporate Credit and Debit (CCD) is used for business-to-business payments.
353
353
  CORPORATE_CREDIT_OR_DEBIT: :corporate_credit_or_debit
354
354
 
355
- # Corporate Trade Exchange (CTX).
355
+ # Corporate Trade Exchange (CTX) allows for including extensive remittance information with business-to-business payments.
356
356
  CORPORATE_TRADE_EXCHANGE: :corporate_trade_exchange
357
357
 
358
- # Prearranged Payments and Deposits (PPD).
358
+ # Prearranged Payments and Deposits (PPD) is used for credits or debits originated by an organization to a consumer, such as payroll direct deposits.
359
359
  PREARRANGED_PAYMENTS_AND_DEPOSIT: :prearranged_payments_and_deposit
360
360
 
361
- # Internet Initiated (WEB).
361
+ # Internet Initiated (WEB) is used for consumer payments initiated or authorized via the Internet. Debits can only be initiated by non-consumers to debit a consumer’s account. Credits can only be used for consumer to consumer transactions.
362
362
  INTERNET_INITIATED: :internet_initiated
363
363
 
364
364
  def self?.values: -> ::Array[Increase::Models::ACHTransferCreateParams::standard_entry_class_code]
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.202.1
4
+ version: 1.203.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase