increase 1.110.0 → 1.112.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/card_payment.rb +16 -4
- data/lib/increase/models/declined_transaction.rb +2 -1
- data/lib/increase/models/pending_transaction.rb +2 -1
- data/lib/increase/models/real_time_decision.rb +2 -1
- data/lib/increase/models/transaction.rb +2 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +22 -6
- data/rbi/increase/models/declined_transaction.rbi +4 -2
- data/rbi/increase/models/pending_transaction.rbi +4 -2
- data/rbi/increase/models/real_time_decision.rbi +4 -2
- data/rbi/increase/models/transaction.rbi +4 -2
- data/sig/increase/models/card_payment.rbs +5 -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: ab47a83661eaa0b20115313010e718057acdd46c4278298dad624c55078d22e4
|
|
4
|
+
data.tar.gz: c7ab0d7e91fff5a7235af31cc33dd8540da71378a9b24353b65d6b7765cca9ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6500c9a6fb771270a953badef8aa6cc21cf93e1cc9a56cb37eb66bdd067a9af94bafe1535c2b24a8dc670753365242bd9ca1f08b72d6a000e77b623a577f3bc4
|
|
7
|
+
data.tar.gz: 60552038c05b4f957a830d9dd8474cc5ddb76d1960986fbd48ca8207f6cca6a721e0f49ac3bc1bebdfa354a31e8ddbe5708c171dd8cd20dd30b0633ff85f9ebe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.112.0 (2025-10-22)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.111.0...v1.112.0](https://github.com/Increase/increase-ruby/compare/v1.111.0...v1.112.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([2ec0699](https://github.com/Increase/increase-ruby/commit/2ec06990de7616ef0a947ad2a4bd16f962dc6a2f))
|
|
10
|
+
|
|
11
|
+
## 1.111.0 (2025-10-22)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.110.0...v1.111.0](https://github.com/Increase/increase-ruby/compare/v1.110.0...v1.111.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([c01948c](https://github.com/Increase/increase-ruby/commit/c01948c26453851b126a8924618a0b8b345007ae))
|
|
18
|
+
|
|
3
19
|
## 1.110.0 (2025-10-16)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.109.1...v1.110.0](https://github.com/Increase/increase-ruby/compare/v1.109.1...v1.110.0)
|
data/README.md
CHANGED
|
@@ -746,7 +746,8 @@ module Increase
|
|
|
746
746
|
|
|
747
747
|
# @!attribute network_risk_score
|
|
748
748
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
749
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
749
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
750
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
750
751
|
#
|
|
751
752
|
# @return [Integer, nil]
|
|
752
753
|
required :network_risk_score, Integer, nil?: true
|
|
@@ -2021,7 +2022,8 @@ module Increase
|
|
|
2021
2022
|
|
|
2022
2023
|
# @!attribute network_risk_score
|
|
2023
2024
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
2024
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
2025
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
2026
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
2025
2027
|
#
|
|
2026
2028
|
# @return [Integer, nil]
|
|
2027
2029
|
required :network_risk_score, Integer, nil?: true
|
|
@@ -7170,7 +7172,8 @@ module Increase
|
|
|
7170
7172
|
|
|
7171
7173
|
# @!attribute network_risk_score
|
|
7172
7174
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
7173
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
7175
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
7176
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
7174
7177
|
#
|
|
7175
7178
|
# @return [Integer, nil]
|
|
7176
7179
|
required :network_risk_score, Integer, nil?: true
|
|
@@ -8163,6 +8166,13 @@ module Increase
|
|
|
8163
8166
|
# @return [Integer]
|
|
8164
8167
|
required :incremented_amount, Integer
|
|
8165
8168
|
|
|
8169
|
+
# @!attribute refund_authorized_amount
|
|
8170
|
+
# The total refund authorized amount in the minor unit of the transaction's
|
|
8171
|
+
# currency. For dollars, for example, this is cents.
|
|
8172
|
+
#
|
|
8173
|
+
# @return [Integer]
|
|
8174
|
+
required :refund_authorized_amount, Integer
|
|
8175
|
+
|
|
8166
8176
|
# @!attribute refunded_amount
|
|
8167
8177
|
# The total refunded amount in the minor unit of the transaction's currency. For
|
|
8168
8178
|
# dollars, for example, this is cents.
|
|
@@ -8184,7 +8194,7 @@ module Increase
|
|
|
8184
8194
|
# @return [Integer]
|
|
8185
8195
|
required :settled_amount, Integer
|
|
8186
8196
|
|
|
8187
|
-
# @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refunded_amount:, reversed_amount:, settled_amount:)
|
|
8197
|
+
# @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refund_authorized_amount:, refunded_amount:, reversed_amount:, settled_amount:)
|
|
8188
8198
|
# Some parameter documentations has been truncated, see
|
|
8189
8199
|
# {Increase::Models::CardPayment::State} for more details.
|
|
8190
8200
|
#
|
|
@@ -8196,6 +8206,8 @@ module Increase
|
|
|
8196
8206
|
#
|
|
8197
8207
|
# @param incremented_amount [Integer] The total incrementally updated authorized amount in the minor unit of the trans
|
|
8198
8208
|
#
|
|
8209
|
+
# @param refund_authorized_amount [Integer] The total refund authorized amount in the minor unit of the transaction's curren
|
|
8210
|
+
#
|
|
8199
8211
|
# @param refunded_amount [Integer] The total refunded amount in the minor unit of the transaction's currency. For d
|
|
8200
8212
|
#
|
|
8201
8213
|
# @param reversed_amount [Integer] The total reversed amount in the minor unit of the transaction's currency. For d
|
|
@@ -565,7 +565,8 @@ module Increase
|
|
|
565
565
|
|
|
566
566
|
# @!attribute network_risk_score
|
|
567
567
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
568
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
568
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
569
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
569
570
|
#
|
|
570
571
|
# @return [Integer, nil]
|
|
571
572
|
required :network_risk_score, Integer, nil?: true
|
|
@@ -592,7 +592,8 @@ module Increase
|
|
|
592
592
|
|
|
593
593
|
# @!attribute network_risk_score
|
|
594
594
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
595
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
595
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
596
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
596
597
|
#
|
|
597
598
|
# @return [Integer, nil]
|
|
598
599
|
required :network_risk_score, Integer, nil?: true
|
|
@@ -348,7 +348,8 @@ module Increase
|
|
|
348
348
|
|
|
349
349
|
# @!attribute network_risk_score
|
|
350
350
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
351
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
351
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
352
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
352
353
|
#
|
|
353
354
|
# @return [Integer, nil]
|
|
354
355
|
required :network_risk_score, Integer, nil?: true
|
|
@@ -1400,7 +1400,8 @@ module Increase
|
|
|
1400
1400
|
|
|
1401
1401
|
# @!attribute network_risk_score
|
|
1402
1402
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1403
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1403
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
1404
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
1404
1405
|
#
|
|
1405
1406
|
# @return [Integer, nil]
|
|
1406
1407
|
required :network_risk_score, Integer, nil?: true
|
data/lib/increase/version.rb
CHANGED
|
@@ -1311,7 +1311,8 @@ module Increase
|
|
|
1311
1311
|
attr_writer :network_identifiers
|
|
1312
1312
|
|
|
1313
1313
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1314
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1314
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
1315
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
1315
1316
|
sig { returns(T.nilable(Integer)) }
|
|
1316
1317
|
attr_accessor :network_risk_score
|
|
1317
1318
|
|
|
@@ -1471,7 +1472,8 @@ module Increase
|
|
|
1471
1472
|
# Network-specific identifiers for a specific request or transaction.
|
|
1472
1473
|
network_identifiers:,
|
|
1473
1474
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1474
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1475
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
1476
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
1475
1477
|
network_risk_score:,
|
|
1476
1478
|
# The identifier of the Pending Transaction associated with this Transaction.
|
|
1477
1479
|
pending_transaction_id:,
|
|
@@ -3720,7 +3722,8 @@ module Increase
|
|
|
3720
3722
|
attr_writer :network_identifiers
|
|
3721
3723
|
|
|
3722
3724
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
3723
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
3725
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
3726
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
3724
3727
|
sig { returns(T.nilable(Integer)) }
|
|
3725
3728
|
attr_accessor :network_risk_score
|
|
3726
3729
|
|
|
@@ -3888,7 +3891,8 @@ module Increase
|
|
|
3888
3891
|
# Network-specific identifiers for a specific request or transaction.
|
|
3889
3892
|
network_identifiers:,
|
|
3890
3893
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
3891
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
3894
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
3895
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
3892
3896
|
network_risk_score:,
|
|
3893
3897
|
# If the authorization was made in-person with a physical card, the Physical Card
|
|
3894
3898
|
# that was used.
|
|
@@ -13118,7 +13122,8 @@ module Increase
|
|
|
13118
13122
|
attr_writer :network_identifiers
|
|
13119
13123
|
|
|
13120
13124
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
13121
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
13125
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
13126
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
13122
13127
|
sig { returns(T.nilable(Integer)) }
|
|
13123
13128
|
attr_accessor :network_risk_score
|
|
13124
13129
|
|
|
@@ -13238,7 +13243,8 @@ module Increase
|
|
|
13238
13243
|
# Network-specific identifiers for a specific request or transaction.
|
|
13239
13244
|
network_identifiers:,
|
|
13240
13245
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
13241
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
13246
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
13247
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
13242
13248
|
network_risk_score:,
|
|
13243
13249
|
# If the authorization was made in-person with a physical card, the Physical Card
|
|
13244
13250
|
# that was used.
|
|
@@ -15078,6 +15084,11 @@ module Increase
|
|
|
15078
15084
|
sig { returns(Integer) }
|
|
15079
15085
|
attr_accessor :incremented_amount
|
|
15080
15086
|
|
|
15087
|
+
# The total refund authorized amount in the minor unit of the transaction's
|
|
15088
|
+
# currency. For dollars, for example, this is cents.
|
|
15089
|
+
sig { returns(Integer) }
|
|
15090
|
+
attr_accessor :refund_authorized_amount
|
|
15091
|
+
|
|
15081
15092
|
# The total refunded amount in the minor unit of the transaction's currency. For
|
|
15082
15093
|
# dollars, for example, this is cents.
|
|
15083
15094
|
sig { returns(Integer) }
|
|
@@ -15099,6 +15110,7 @@ module Increase
|
|
|
15099
15110
|
authorized_amount: Integer,
|
|
15100
15111
|
fuel_confirmed_amount: Integer,
|
|
15101
15112
|
incremented_amount: Integer,
|
|
15113
|
+
refund_authorized_amount: Integer,
|
|
15102
15114
|
refunded_amount: Integer,
|
|
15103
15115
|
reversed_amount: Integer,
|
|
15104
15116
|
settled_amount: Integer
|
|
@@ -15114,6 +15126,9 @@ module Increase
|
|
|
15114
15126
|
# The total incrementally updated authorized amount in the minor unit of the
|
|
15115
15127
|
# transaction's currency. For dollars, for example, this is cents.
|
|
15116
15128
|
incremented_amount:,
|
|
15129
|
+
# The total refund authorized amount in the minor unit of the transaction's
|
|
15130
|
+
# currency. For dollars, for example, this is cents.
|
|
15131
|
+
refund_authorized_amount:,
|
|
15117
15132
|
# The total refunded amount in the minor unit of the transaction's currency. For
|
|
15118
15133
|
# dollars, for example, this is cents.
|
|
15119
15134
|
refunded_amount:,
|
|
@@ -15132,6 +15147,7 @@ module Increase
|
|
|
15132
15147
|
authorized_amount: Integer,
|
|
15133
15148
|
fuel_confirmed_amount: Integer,
|
|
15134
15149
|
incremented_amount: Integer,
|
|
15150
|
+
refund_authorized_amount: Integer,
|
|
15135
15151
|
refunded_amount: Integer,
|
|
15136
15152
|
reversed_amount: Integer,
|
|
15137
15153
|
settled_amount: Integer
|
|
@@ -931,7 +931,8 @@ module Increase
|
|
|
931
931
|
attr_writer :network_identifiers
|
|
932
932
|
|
|
933
933
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
934
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
934
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
935
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
935
936
|
sig { returns(T.nilable(Integer)) }
|
|
936
937
|
attr_accessor :network_risk_score
|
|
937
938
|
|
|
@@ -1101,7 +1102,8 @@ module Increase
|
|
|
1101
1102
|
# Network-specific identifiers for a specific request or transaction.
|
|
1102
1103
|
network_identifiers:,
|
|
1103
1104
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1104
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1105
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
1106
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
1105
1107
|
network_risk_score:,
|
|
1106
1108
|
# If the authorization was made in-person with a physical card, the Physical Card
|
|
1107
1109
|
# that was used.
|
|
@@ -1040,7 +1040,8 @@ module Increase
|
|
|
1040
1040
|
attr_writer :network_identifiers
|
|
1041
1041
|
|
|
1042
1042
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1043
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1043
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
1044
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
1044
1045
|
sig { returns(T.nilable(Integer)) }
|
|
1045
1046
|
attr_accessor :network_risk_score
|
|
1046
1047
|
|
|
@@ -1200,7 +1201,8 @@ module Increase
|
|
|
1200
1201
|
# Network-specific identifiers for a specific request or transaction.
|
|
1201
1202
|
network_identifiers:,
|
|
1202
1203
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1203
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1204
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
1205
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
1204
1206
|
network_risk_score:,
|
|
1205
1207
|
# The identifier of the Pending Transaction associated with this Transaction.
|
|
1206
1208
|
pending_transaction_id:,
|
|
@@ -572,7 +572,8 @@ module Increase
|
|
|
572
572
|
attr_writer :network_identifiers
|
|
573
573
|
|
|
574
574
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
575
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
575
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
576
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
576
577
|
sig { returns(T.nilable(Integer)) }
|
|
577
578
|
attr_accessor :network_risk_score
|
|
578
579
|
|
|
@@ -736,7 +737,8 @@ module Increase
|
|
|
736
737
|
# Network-specific identifiers for a specific request or transaction.
|
|
737
738
|
network_identifiers:,
|
|
738
739
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
739
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
740
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
741
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
740
742
|
network_risk_score:,
|
|
741
743
|
# If the authorization was made in-person with a physical card, the Physical Card
|
|
742
744
|
# that was used.
|
|
@@ -2744,7 +2744,8 @@ module Increase
|
|
|
2744
2744
|
attr_writer :network_identifiers
|
|
2745
2745
|
|
|
2746
2746
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
2747
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
2747
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
2748
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
2748
2749
|
sig { returns(T.nilable(Integer)) }
|
|
2749
2750
|
attr_accessor :network_risk_score
|
|
2750
2751
|
|
|
@@ -2897,7 +2898,8 @@ module Increase
|
|
|
2897
2898
|
# Network-specific identifiers for a specific request or transaction.
|
|
2898
2899
|
network_identifiers:,
|
|
2899
2900
|
# The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
2900
|
-
# Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
2901
|
+
# Authorization risk score, from 0 to 99, where 99 is the riskiest. For Pulse the
|
|
2902
|
+
# score is from 0 to 999, where 999 is the riskiest.
|
|
2901
2903
|
network_risk_score:,
|
|
2902
2904
|
# If the authorization was made in-person with a physical card, the Physical Card
|
|
2903
2905
|
# that was used.
|
|
@@ -5758,6 +5758,7 @@ module Increase
|
|
|
5758
5758
|
authorized_amount: Integer,
|
|
5759
5759
|
fuel_confirmed_amount: Integer,
|
|
5760
5760
|
incremented_amount: Integer,
|
|
5761
|
+
refund_authorized_amount: Integer,
|
|
5761
5762
|
refunded_amount: Integer,
|
|
5762
5763
|
reversed_amount: Integer,
|
|
5763
5764
|
settled_amount: Integer
|
|
@@ -5770,6 +5771,8 @@ module Increase
|
|
|
5770
5771
|
|
|
5771
5772
|
attr_accessor incremented_amount: Integer
|
|
5772
5773
|
|
|
5774
|
+
attr_accessor refund_authorized_amount: Integer
|
|
5775
|
+
|
|
5773
5776
|
attr_accessor refunded_amount: Integer
|
|
5774
5777
|
|
|
5775
5778
|
attr_accessor reversed_amount: Integer
|
|
@@ -5780,6 +5783,7 @@ module Increase
|
|
|
5780
5783
|
authorized_amount: Integer,
|
|
5781
5784
|
fuel_confirmed_amount: Integer,
|
|
5782
5785
|
incremented_amount: Integer,
|
|
5786
|
+
refund_authorized_amount: Integer,
|
|
5783
5787
|
refunded_amount: Integer,
|
|
5784
5788
|
reversed_amount: Integer,
|
|
5785
5789
|
settled_amount: Integer
|
|
@@ -5789,6 +5793,7 @@ module Increase
|
|
|
5789
5793
|
authorized_amount: Integer,
|
|
5790
5794
|
fuel_confirmed_amount: Integer,
|
|
5791
5795
|
incremented_amount: Integer,
|
|
5796
|
+
refund_authorized_amount: Integer,
|
|
5792
5797
|
refunded_amount: Integer,
|
|
5793
5798
|
reversed_amount: Integer,
|
|
5794
5799
|
settled_amount: Integer
|
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.112.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-10-
|
|
11
|
+
date: 2025-10-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|