increase 1.54.0 → 1.56.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/account.rb +2 -1
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/models/transaction.rb +52 -1
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +4 -2
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/transaction.rbi +94 -0
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/transaction.rbs +36 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 708f6b0e468941bd3292a3846627f10295bf9eb6bfaa2283a6531b072316804f
|
4
|
+
data.tar.gz: 52d255fcf41b0f871e8849e78da77dd2e543f48c0d6e5f5400de87231c5af4ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02b5a6adda530f83b0570af20241957952ad845f15c1b5f4db62ae904d135ce2c379122922cd35a67ac0d5fdab097d430e6b297a4bc258fc46a140057c9e91db
|
7
|
+
data.tar.gz: 599eb9dbc8b1e05c28b26657b78a3f3ee65b7e367fbc40f544e7a8a1f115548c5c8cbd0b30bac9db42fde7450043b220bfd682032575e02ad294c62bb97b287a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.56.0 (2025-08-28)
|
4
|
+
|
5
|
+
Full Changelog: [v1.55.0...v1.56.0](https://github.com/Increase/increase-ruby/compare/v1.55.0...v1.56.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([cbaeb33](https://github.com/Increase/increase-ruby/commit/cbaeb3304174c05c0a3fffd559d44019974c2afb))
|
10
|
+
|
11
|
+
## 1.55.0 (2025-08-27)
|
12
|
+
|
13
|
+
Full Changelog: [v1.54.0...v1.55.0](https://github.com/Increase/increase-ruby/compare/v1.54.0...v1.55.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([bdce0eb](https://github.com/Increase/increase-ruby/commit/bdce0ebe7749fa2f49c308a08953544842da41cb))
|
18
|
+
|
3
19
|
## 1.54.0 (2025-08-27)
|
4
20
|
|
5
21
|
Full Changelog: [v1.53.0...v1.54.0](https://github.com/Increase/increase-ruby/compare/v1.53.0...v1.54.0)
|
data/README.md
CHANGED
@@ -13,7 +13,8 @@ module Increase
|
|
13
13
|
# @!attribute account_revenue_rate
|
14
14
|
# The account revenue rate currently being earned on the account, as a string
|
15
15
|
# containing a decimal number. For example, a 1% account revenue rate would be
|
16
|
-
# represented as "0.01".
|
16
|
+
# represented as "0.01". Account revenue is a type of non-interest income accrued
|
17
|
+
# on the account.
|
17
18
|
#
|
18
19
|
# @return [String, nil]
|
19
20
|
required :account_revenue_rate, String, nil?: true
|
@@ -1780,6 +1780,9 @@ module Increase
|
|
1780
1780
|
# The check cannot be processed. This is rare: please contact support.
|
1781
1781
|
UNABLE_TO_PROCESS = :unable_to_process
|
1782
1782
|
|
1783
|
+
# The check image is unusable.
|
1784
|
+
UNUSABLE_IMAGE = :unusable_image
|
1785
|
+
|
1783
1786
|
# Your integration declined this check via the API.
|
1784
1787
|
USER_INITIATED = :user_initiated
|
1785
1788
|
|
@@ -154,6 +154,19 @@ module Increase
|
|
154
154
|
|
155
155
|
# @see Increase::Models::Transaction#source
|
156
156
|
class Source < Increase::Internal::Type::BaseModel
|
157
|
+
# @!attribute account_revenue_payment
|
158
|
+
# An Account Revenue Payment object. This field will be present in the JSON
|
159
|
+
# response if and only if `category` is equal to `account_revenue_payment`. A
|
160
|
+
# Account Revenue Payment represents a payment made to an account from the bank.
|
161
|
+
# Account revenue is a type of non-interest income.
|
162
|
+
#
|
163
|
+
# @return [Increase::Models::Transaction::Source::AccountRevenuePayment, nil]
|
164
|
+
required :account_revenue_payment,
|
165
|
+
-> {
|
166
|
+
Increase::Transaction::Source::AccountRevenuePayment
|
167
|
+
},
|
168
|
+
nil?: true
|
169
|
+
|
157
170
|
# @!attribute account_transfer_intention
|
158
171
|
# An Account Transfer Intention object. This field will be present in the JSON
|
159
172
|
# response if and only if `category` is equal to `account_transfer_intention`. Two
|
@@ -494,7 +507,7 @@ module Increase
|
|
494
507
|
},
|
495
508
|
nil?: true
|
496
509
|
|
497
|
-
# @!method initialize(account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
|
510
|
+
# @!method initialize(account_revenue_payment:, account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
|
498
511
|
# Some parameter documentations has been truncated, see
|
499
512
|
# {Increase::Models::Transaction::Source} for more details.
|
500
513
|
#
|
@@ -503,6 +516,8 @@ module Increase
|
|
503
516
|
# undocumented keys may appear in this object. These should be treated as
|
504
517
|
# deprecated and will be removed in the future.
|
505
518
|
#
|
519
|
+
# @param account_revenue_payment [Increase::Models::Transaction::Source::AccountRevenuePayment, nil] An Account Revenue Payment object. This field will be present in the JSON respon
|
520
|
+
#
|
506
521
|
# @param account_transfer_intention [Increase::Models::Transaction::Source::AccountTransferIntention, nil] An Account Transfer Intention object. This field will be present in the JSON res
|
507
522
|
#
|
508
523
|
# @param ach_transfer_intention [Increase::Models::Transaction::Source::ACHTransferIntention, nil] An ACH Transfer Intention object. This field will be present in the JSON respons
|
@@ -569,6 +584,39 @@ module Increase
|
|
569
584
|
#
|
570
585
|
# @param wire_transfer_intention [Increase::Models::Transaction::Source::WireTransferIntention, nil] A Wire Transfer Intention object. This field will be present in the JSON respons
|
571
586
|
|
587
|
+
# @see Increase::Models::Transaction::Source#account_revenue_payment
|
588
|
+
class AccountRevenuePayment < Increase::Internal::Type::BaseModel
|
589
|
+
# @!attribute accrued_on_account_id
|
590
|
+
# The account on which the account revenue was accrued.
|
591
|
+
#
|
592
|
+
# @return [String]
|
593
|
+
required :accrued_on_account_id, String
|
594
|
+
|
595
|
+
# @!attribute period_end
|
596
|
+
# The end of the period for which this transaction paid account revenue.
|
597
|
+
#
|
598
|
+
# @return [Time]
|
599
|
+
required :period_end, Time
|
600
|
+
|
601
|
+
# @!attribute period_start
|
602
|
+
# The start of the period for which this transaction paid account revenue.
|
603
|
+
#
|
604
|
+
# @return [Time]
|
605
|
+
required :period_start, Time
|
606
|
+
|
607
|
+
# @!method initialize(accrued_on_account_id:, period_end:, period_start:)
|
608
|
+
# An Account Revenue Payment object. This field will be present in the JSON
|
609
|
+
# response if and only if `category` is equal to `account_revenue_payment`. A
|
610
|
+
# Account Revenue Payment represents a payment made to an account from the bank.
|
611
|
+
# Account revenue is a type of non-interest income.
|
612
|
+
#
|
613
|
+
# @param accrued_on_account_id [String] The account on which the account revenue was accrued.
|
614
|
+
#
|
615
|
+
# @param period_end [Time] The end of the period for which this transaction paid account revenue.
|
616
|
+
#
|
617
|
+
# @param period_start [Time] The start of the period for which this transaction paid account revenue.
|
618
|
+
end
|
619
|
+
|
572
620
|
# @see Increase::Models::Transaction::Source#account_transfer_intention
|
573
621
|
class AccountTransferIntention < Increase::Internal::Type::BaseModel
|
574
622
|
# @!attribute amount
|
@@ -4253,6 +4301,9 @@ module Increase
|
|
4253
4301
|
# Card Push Transfer Acceptance: details will be under the `card_push_transfer_acceptance` object.
|
4254
4302
|
CARD_PUSH_TRANSFER_ACCEPTANCE = :card_push_transfer_acceptance
|
4255
4303
|
|
4304
|
+
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
4305
|
+
ACCOUNT_REVENUE_PAYMENT = :account_revenue_payment
|
4306
|
+
|
4256
4307
|
# The Transaction was made for an undocumented or deprecated reason.
|
4257
4308
|
OTHER = :other
|
4258
4309
|
|
@@ -175,6 +175,9 @@ module Increase
|
|
175
175
|
# Card Push Transfer Acceptance: details will be under the `card_push_transfer_acceptance` object.
|
176
176
|
CARD_PUSH_TRANSFER_ACCEPTANCE = :card_push_transfer_acceptance
|
177
177
|
|
178
|
+
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
179
|
+
ACCOUNT_REVENUE_PAYMENT = :account_revenue_payment
|
180
|
+
|
178
181
|
# The Transaction was made for an undocumented or deprecated reason.
|
179
182
|
OTHER = :other
|
180
183
|
|
data/lib/increase/version.rb
CHANGED
@@ -12,7 +12,8 @@ module Increase
|
|
12
12
|
|
13
13
|
# The account revenue rate currently being earned on the account, as a string
|
14
14
|
# containing a decimal number. For example, a 1% account revenue rate would be
|
15
|
-
# represented as "0.01".
|
15
|
+
# represented as "0.01". Account revenue is a type of non-interest income accrued
|
16
|
+
# on the account.
|
16
17
|
sig { returns(T.nilable(String)) }
|
17
18
|
attr_accessor :account_revenue_rate
|
18
19
|
|
@@ -111,7 +112,8 @@ module Increase
|
|
111
112
|
id:,
|
112
113
|
# The account revenue rate currently being earned on the account, as a string
|
113
114
|
# containing a decimal number. For example, a 1% account revenue rate would be
|
114
|
-
# represented as "0.01".
|
115
|
+
# represented as "0.01". Account revenue is a type of non-interest income accrued
|
116
|
+
# on the account.
|
115
117
|
account_revenue_rate:,
|
116
118
|
# The bank the Account is with.
|
117
119
|
bank:,
|
@@ -3371,6 +3371,13 @@ module Increase
|
|
3371
3371
|
Increase::DeclinedTransaction::Source::CheckDecline::Reason::TaggedSymbol
|
3372
3372
|
)
|
3373
3373
|
|
3374
|
+
# The check image is unusable.
|
3375
|
+
UNUSABLE_IMAGE =
|
3376
|
+
T.let(
|
3377
|
+
:unusable_image,
|
3378
|
+
Increase::DeclinedTransaction::Source::CheckDecline::Reason::TaggedSymbol
|
3379
|
+
)
|
3380
|
+
|
3374
3381
|
# Your integration declined this check via the API.
|
3375
3382
|
USER_INITIATED =
|
3376
3383
|
T.let(
|
@@ -205,6 +205,27 @@ module Increase
|
|
205
205
|
T.any(Increase::Transaction::Source, Increase::Internal::AnyHash)
|
206
206
|
end
|
207
207
|
|
208
|
+
# An Account Revenue Payment object. This field will be present in the JSON
|
209
|
+
# response if and only if `category` is equal to `account_revenue_payment`. A
|
210
|
+
# Account Revenue Payment represents a payment made to an account from the bank.
|
211
|
+
# Account revenue is a type of non-interest income.
|
212
|
+
sig do
|
213
|
+
returns(
|
214
|
+
T.nilable(Increase::Transaction::Source::AccountRevenuePayment)
|
215
|
+
)
|
216
|
+
end
|
217
|
+
attr_reader :account_revenue_payment
|
218
|
+
|
219
|
+
sig do
|
220
|
+
params(
|
221
|
+
account_revenue_payment:
|
222
|
+
T.nilable(
|
223
|
+
Increase::Transaction::Source::AccountRevenuePayment::OrHash
|
224
|
+
)
|
225
|
+
).void
|
226
|
+
end
|
227
|
+
attr_writer :account_revenue_payment
|
228
|
+
|
208
229
|
# An Account Transfer Intention object. This field will be present in the JSON
|
209
230
|
# response if and only if `category` is equal to `account_transfer_intention`. Two
|
210
231
|
# Account Transfer Intentions are created from each Account Transfer. One
|
@@ -833,6 +854,10 @@ module Increase
|
|
833
854
|
# deprecated and will be removed in the future.
|
834
855
|
sig do
|
835
856
|
params(
|
857
|
+
account_revenue_payment:
|
858
|
+
T.nilable(
|
859
|
+
Increase::Transaction::Source::AccountRevenuePayment::OrHash
|
860
|
+
),
|
836
861
|
account_transfer_intention:
|
837
862
|
T.nilable(
|
838
863
|
Increase::Transaction::Source::AccountTransferIntention::OrHash
|
@@ -946,6 +971,11 @@ module Increase
|
|
946
971
|
).returns(T.attached_class)
|
947
972
|
end
|
948
973
|
def self.new(
|
974
|
+
# An Account Revenue Payment object. This field will be present in the JSON
|
975
|
+
# response if and only if `category` is equal to `account_revenue_payment`. A
|
976
|
+
# Account Revenue Payment represents a payment made to an account from the bank.
|
977
|
+
# Account revenue is a type of non-interest income.
|
978
|
+
account_revenue_payment:,
|
949
979
|
# An Account Transfer Intention object. This field will be present in the JSON
|
950
980
|
# response if and only if `category` is equal to `account_transfer_intention`. Two
|
951
981
|
# Account Transfer Intentions are created from each Account Transfer. One
|
@@ -1116,6 +1146,8 @@ module Increase
|
|
1116
1146
|
sig do
|
1117
1147
|
override.returns(
|
1118
1148
|
{
|
1149
|
+
account_revenue_payment:
|
1150
|
+
T.nilable(Increase::Transaction::Source::AccountRevenuePayment),
|
1119
1151
|
account_transfer_intention:
|
1120
1152
|
T.nilable(
|
1121
1153
|
Increase::Transaction::Source::AccountTransferIntention
|
@@ -1204,6 +1236,61 @@ module Increase
|
|
1204
1236
|
def to_hash
|
1205
1237
|
end
|
1206
1238
|
|
1239
|
+
class AccountRevenuePayment < Increase::Internal::Type::BaseModel
|
1240
|
+
OrHash =
|
1241
|
+
T.type_alias do
|
1242
|
+
T.any(
|
1243
|
+
Increase::Transaction::Source::AccountRevenuePayment,
|
1244
|
+
Increase::Internal::AnyHash
|
1245
|
+
)
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# The account on which the account revenue was accrued.
|
1249
|
+
sig { returns(String) }
|
1250
|
+
attr_accessor :accrued_on_account_id
|
1251
|
+
|
1252
|
+
# The end of the period for which this transaction paid account revenue.
|
1253
|
+
sig { returns(Time) }
|
1254
|
+
attr_accessor :period_end
|
1255
|
+
|
1256
|
+
# The start of the period for which this transaction paid account revenue.
|
1257
|
+
sig { returns(Time) }
|
1258
|
+
attr_accessor :period_start
|
1259
|
+
|
1260
|
+
# An Account Revenue Payment object. This field will be present in the JSON
|
1261
|
+
# response if and only if `category` is equal to `account_revenue_payment`. A
|
1262
|
+
# Account Revenue Payment represents a payment made to an account from the bank.
|
1263
|
+
# Account revenue is a type of non-interest income.
|
1264
|
+
sig do
|
1265
|
+
params(
|
1266
|
+
accrued_on_account_id: String,
|
1267
|
+
period_end: Time,
|
1268
|
+
period_start: Time
|
1269
|
+
).returns(T.attached_class)
|
1270
|
+
end
|
1271
|
+
def self.new(
|
1272
|
+
# The account on which the account revenue was accrued.
|
1273
|
+
accrued_on_account_id:,
|
1274
|
+
# The end of the period for which this transaction paid account revenue.
|
1275
|
+
period_end:,
|
1276
|
+
# The start of the period for which this transaction paid account revenue.
|
1277
|
+
period_start:
|
1278
|
+
)
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
sig do
|
1282
|
+
override.returns(
|
1283
|
+
{
|
1284
|
+
accrued_on_account_id: String,
|
1285
|
+
period_end: Time,
|
1286
|
+
period_start: Time
|
1287
|
+
}
|
1288
|
+
)
|
1289
|
+
end
|
1290
|
+
def to_hash
|
1291
|
+
end
|
1292
|
+
end
|
1293
|
+
|
1207
1294
|
class AccountTransferIntention < Increase::Internal::Type::BaseModel
|
1208
1295
|
OrHash =
|
1209
1296
|
T.type_alias do
|
@@ -7929,6 +8016,13 @@ module Increase
|
|
7929
8016
|
Increase::Transaction::Source::Category::TaggedSymbol
|
7930
8017
|
)
|
7931
8018
|
|
8019
|
+
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
8020
|
+
ACCOUNT_REVENUE_PAYMENT =
|
8021
|
+
T.let(
|
8022
|
+
:account_revenue_payment,
|
8023
|
+
Increase::Transaction::Source::Category::TaggedSymbol
|
8024
|
+
)
|
8025
|
+
|
7932
8026
|
# The Transaction was made for an undocumented or deprecated reason.
|
7933
8027
|
OTHER =
|
7934
8028
|
T.let(:other, Increase::Transaction::Source::Category::TaggedSymbol)
|
@@ -383,6 +383,13 @@ module Increase
|
|
383
383
|
Increase::TransactionListParams::Category::In::TaggedSymbol
|
384
384
|
)
|
385
385
|
|
386
|
+
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
387
|
+
ACCOUNT_REVENUE_PAYMENT =
|
388
|
+
T.let(
|
389
|
+
:account_revenue_payment,
|
390
|
+
Increase::TransactionListParams::Category::In::TaggedSymbol
|
391
|
+
)
|
392
|
+
|
386
393
|
# The Transaction was made for an undocumented or deprecated reason.
|
387
394
|
OTHER =
|
388
395
|
T.let(
|
@@ -1291,6 +1291,7 @@ module Increase
|
|
1291
1291
|
| :no_account_number_found
|
1292
1292
|
| :refer_to_image
|
1293
1293
|
| :unable_to_process
|
1294
|
+
| :unusable_image
|
1294
1295
|
| :user_initiated
|
1295
1296
|
|
1296
1297
|
module Reason
|
@@ -1344,6 +1345,9 @@ module Increase
|
|
1344
1345
|
# The check cannot be processed. This is rare: please contact support.
|
1345
1346
|
UNABLE_TO_PROCESS: :unable_to_process
|
1346
1347
|
|
1348
|
+
# The check image is unusable.
|
1349
|
+
UNUSABLE_IMAGE: :unusable_image
|
1350
|
+
|
1347
1351
|
# Your integration declined this check via the API.
|
1348
1352
|
USER_INITIATED: :user_initiated
|
1349
1353
|
|
@@ -106,6 +106,7 @@ module Increase
|
|
106
106
|
|
107
107
|
type source =
|
108
108
|
{
|
109
|
+
account_revenue_payment: Increase::Transaction::Source::AccountRevenuePayment?,
|
109
110
|
account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?,
|
110
111
|
ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?,
|
111
112
|
ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?,
|
@@ -142,6 +143,8 @@ module Increase
|
|
142
143
|
}
|
143
144
|
|
144
145
|
class Source < Increase::Internal::Type::BaseModel
|
146
|
+
attr_accessor account_revenue_payment: Increase::Transaction::Source::AccountRevenuePayment?
|
147
|
+
|
145
148
|
attr_accessor account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?
|
146
149
|
|
147
150
|
attr_accessor ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?
|
@@ -209,6 +212,7 @@ module Increase
|
|
209
212
|
attr_accessor wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
210
213
|
|
211
214
|
def initialize: (
|
215
|
+
account_revenue_payment: Increase::Transaction::Source::AccountRevenuePayment?,
|
212
216
|
account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?,
|
213
217
|
ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?,
|
214
218
|
ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?,
|
@@ -245,6 +249,7 @@ module Increase
|
|
245
249
|
) -> void
|
246
250
|
|
247
251
|
def to_hash: -> {
|
252
|
+
account_revenue_payment: Increase::Transaction::Source::AccountRevenuePayment?,
|
248
253
|
account_transfer_intention: Increase::Transaction::Source::AccountTransferIntention?,
|
249
254
|
ach_transfer_intention: Increase::Transaction::Source::ACHTransferIntention?,
|
250
255
|
ach_transfer_rejection: Increase::Transaction::Source::ACHTransferRejection?,
|
@@ -280,6 +285,33 @@ module Increase
|
|
280
285
|
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
281
286
|
}
|
282
287
|
|
288
|
+
type account_revenue_payment =
|
289
|
+
{
|
290
|
+
accrued_on_account_id: String,
|
291
|
+
period_end: Time,
|
292
|
+
period_start: Time
|
293
|
+
}
|
294
|
+
|
295
|
+
class AccountRevenuePayment < Increase::Internal::Type::BaseModel
|
296
|
+
attr_accessor accrued_on_account_id: String
|
297
|
+
|
298
|
+
attr_accessor period_end: Time
|
299
|
+
|
300
|
+
attr_accessor period_start: Time
|
301
|
+
|
302
|
+
def initialize: (
|
303
|
+
accrued_on_account_id: String,
|
304
|
+
period_end: Time,
|
305
|
+
period_start: Time
|
306
|
+
) -> void
|
307
|
+
|
308
|
+
def to_hash: -> {
|
309
|
+
accrued_on_account_id: String,
|
310
|
+
period_end: Time,
|
311
|
+
period_start: Time
|
312
|
+
}
|
313
|
+
end
|
314
|
+
|
283
315
|
type account_transfer_intention =
|
284
316
|
{
|
285
317
|
amount: Integer,
|
@@ -3130,6 +3162,7 @@ module Increase
|
|
3130
3162
|
| :swift_transfer_intention
|
3131
3163
|
| :swift_transfer_return
|
3132
3164
|
| :card_push_transfer_acceptance
|
3165
|
+
| :account_revenue_payment
|
3133
3166
|
| :other
|
3134
3167
|
|
3135
3168
|
module Category
|
@@ -3228,6 +3261,9 @@ module Increase
|
|
3228
3261
|
# Card Push Transfer Acceptance: details will be under the `card_push_transfer_acceptance` object.
|
3229
3262
|
CARD_PUSH_TRANSFER_ACCEPTANCE: :card_push_transfer_acceptance
|
3230
3263
|
|
3264
|
+
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
3265
|
+
ACCOUNT_REVENUE_PAYMENT: :account_revenue_payment
|
3266
|
+
|
3231
3267
|
# The Transaction was made for an undocumented or deprecated reason.
|
3232
3268
|
OTHER: :other
|
3233
3269
|
|
@@ -113,6 +113,7 @@ module Increase
|
|
113
113
|
| :swift_transfer_intention
|
114
114
|
| :swift_transfer_return
|
115
115
|
| :card_push_transfer_acceptance
|
116
|
+
| :account_revenue_payment
|
116
117
|
| :other
|
117
118
|
|
118
119
|
module In
|
@@ -211,6 +212,9 @@ module Increase
|
|
211
212
|
# Card Push Transfer Acceptance: details will be under the `card_push_transfer_acceptance` object.
|
212
213
|
CARD_PUSH_TRANSFER_ACCEPTANCE: :card_push_transfer_acceptance
|
213
214
|
|
215
|
+
# Account Revenue Payment: details will be under the `account_revenue_payment` object.
|
216
|
+
ACCOUNT_REVENUE_PAYMENT: :account_revenue_payment
|
217
|
+
|
214
218
|
# The Transaction was made for an undocumented or deprecated reason.
|
215
219
|
OTHER: :other
|
216
220
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.56.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|