increase 1.110.0 → 1.111.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: 2612c971d2a0e9be052f7298c6103fda94befefb397045a2541ac6ee649547dc
4
- data.tar.gz: 325cb273a1effe222be8d0e276d037dbab74f57b0e37c34385d1a4b34840ec58
3
+ metadata.gz: 0e8f5f190d7248de94164de482d1e025552f82ff7eaa16a3276d73a4ca97ebbc
4
+ data.tar.gz: ec2c52f7a2c1ce6687b0baadbb2d7f18d9b1be031eb5f7aedbc19ca604a9e4cb
5
5
  SHA512:
6
- metadata.gz: 2a678e6e6be107188678b3bc0c8598207383d550b7a8485d90b48dc9e2e6ffb0dc59fb5461dab8356a926fb49476514b68bf780aa51b04720f47365fa6aba669
7
- data.tar.gz: c7dad1a2367802f78e0139ce1ed2d64055dbb649a2010921f6a1ca2d25a5f2037d4c79726237f9b3cbce8758895cec8fdccf3ee4a23189811ffec1a7547961e4
6
+ metadata.gz: a1528dd515ffcec70cc1a671a52b80e543d348eb014f5aa8f3d745fe409c72870e90adf9e00ca42c4ca4140c63820954eb6a75ac53ee82045372faff02e8ae41
7
+ data.tar.gz: 63b7c028f33d3f1e21f7eabc5f86e0fd3df2e5c55c90bef31597715ede66f7d3f2db5d0d50372b56c1c7c88ddbc34028158c0118a7f82c6c76a8cb21b19a9089
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.111.0 (2025-10-22)
4
+
5
+ Full Changelog: [v1.110.0...v1.111.0](https://github.com/Increase/increase-ruby/compare/v1.110.0...v1.111.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([c01948c](https://github.com/Increase/increase-ruby/commit/c01948c26453851b126a8924618a0b8b345007ae))
10
+
3
11
  ## 1.110.0 (2025-10-16)
4
12
 
5
13
  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
@@ -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.110.0"
18
+ gem "increase", "~> 1.111.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -8163,6 +8163,13 @@ module Increase
8163
8163
  # @return [Integer]
8164
8164
  required :incremented_amount, Integer
8165
8165
 
8166
+ # @!attribute refund_authorized_amount
8167
+ # The total refund authorized amount in the minor unit of the transaction's
8168
+ # currency. For dollars, for example, this is cents.
8169
+ #
8170
+ # @return [Integer]
8171
+ required :refund_authorized_amount, Integer
8172
+
8166
8173
  # @!attribute refunded_amount
8167
8174
  # The total refunded amount in the minor unit of the transaction's currency. For
8168
8175
  # dollars, for example, this is cents.
@@ -8184,7 +8191,7 @@ module Increase
8184
8191
  # @return [Integer]
8185
8192
  required :settled_amount, Integer
8186
8193
 
8187
- # @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refunded_amount:, reversed_amount:, settled_amount:)
8194
+ # @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refund_authorized_amount:, refunded_amount:, reversed_amount:, settled_amount:)
8188
8195
  # Some parameter documentations has been truncated, see
8189
8196
  # {Increase::Models::CardPayment::State} for more details.
8190
8197
  #
@@ -8196,6 +8203,8 @@ module Increase
8196
8203
  #
8197
8204
  # @param incremented_amount [Integer] The total incrementally updated authorized amount in the minor unit of the trans
8198
8205
  #
8206
+ # @param refund_authorized_amount [Integer] The total refund authorized amount in the minor unit of the transaction's curren
8207
+ #
8199
8208
  # @param refunded_amount [Integer] The total refunded amount in the minor unit of the transaction's currency. For d
8200
8209
  #
8201
8210
  # @param reversed_amount [Integer] The total reversed amount in the minor unit of the transaction's currency. For d
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.110.0"
4
+ VERSION = "1.111.0"
5
5
  end
@@ -15078,6 +15078,11 @@ module Increase
15078
15078
  sig { returns(Integer) }
15079
15079
  attr_accessor :incremented_amount
15080
15080
 
15081
+ # The total refund authorized amount in the minor unit of the transaction's
15082
+ # currency. For dollars, for example, this is cents.
15083
+ sig { returns(Integer) }
15084
+ attr_accessor :refund_authorized_amount
15085
+
15081
15086
  # The total refunded amount in the minor unit of the transaction's currency. For
15082
15087
  # dollars, for example, this is cents.
15083
15088
  sig { returns(Integer) }
@@ -15099,6 +15104,7 @@ module Increase
15099
15104
  authorized_amount: Integer,
15100
15105
  fuel_confirmed_amount: Integer,
15101
15106
  incremented_amount: Integer,
15107
+ refund_authorized_amount: Integer,
15102
15108
  refunded_amount: Integer,
15103
15109
  reversed_amount: Integer,
15104
15110
  settled_amount: Integer
@@ -15114,6 +15120,9 @@ module Increase
15114
15120
  # The total incrementally updated authorized amount in the minor unit of the
15115
15121
  # transaction's currency. For dollars, for example, this is cents.
15116
15122
  incremented_amount:,
15123
+ # The total refund authorized amount in the minor unit of the transaction's
15124
+ # currency. For dollars, for example, this is cents.
15125
+ refund_authorized_amount:,
15117
15126
  # The total refunded amount in the minor unit of the transaction's currency. For
15118
15127
  # dollars, for example, this is cents.
15119
15128
  refunded_amount:,
@@ -15132,6 +15141,7 @@ module Increase
15132
15141
  authorized_amount: Integer,
15133
15142
  fuel_confirmed_amount: Integer,
15134
15143
  incremented_amount: Integer,
15144
+ refund_authorized_amount: Integer,
15135
15145
  refunded_amount: Integer,
15136
15146
  reversed_amount: Integer,
15137
15147
  settled_amount: Integer
@@ -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.110.0
4
+ version: 1.111.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-16 00:00:00.000000000 Z
11
+ date: 2025-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool