increase 1.99.0 → 1.100.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: 8b56c6265055c140cf66526cdc44b8c86f4bf98671721edf32d43ad12000cf5e
4
- data.tar.gz: 0ca57712c13dab3c337b2f8200188f446e2124a824d4aeec9c20af038a93be1f
3
+ metadata.gz: a2dc15d4dfb9e345cadfae22fcb552de2b673275a8e6e77c12771a8643996dbc
4
+ data.tar.gz: a0c4bb2209c5575636459f39ae9f13a13a60b750ad284c90a5dfef2aa5464654
5
5
  SHA512:
6
- metadata.gz: 8d85ed274afc677e27b1b73d68b6c2c98834c43f347ce4ae8b42b3c9c2a9c35a5812a0ddc59d71a620adbcdafc80ca23ce5d8a529daf629727a316a9c45b8c8b
7
- data.tar.gz: 0ae717cd1752e1fc1fa5cdfd7955c43d89d181715e4a538f6366491096820fba86335dc3a24c4f849ece9075bad4330e1fd2ab20528202e2225ba54888fc48d8
6
+ metadata.gz: 964ec3eed3c19945bc49be7a23fdad7aab968ca14e89dfc4bd211ff3f1149198430af1f8992edd6e61567b7666e3b3ccdcebc6159ad306dab4e371853feb9a70
7
+ data.tar.gz: aaa78513a64cbfa3d5c74ec196270beda12ce013fa7de654de21d63dfa45a44df5f4bd61456f460be3954d9d3608d75139d239a18b34522fe04a7f8340596d62
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.100.0 (2025-10-03)
4
+
5
+ Full Changelog: [v1.99.0...v1.100.0](https://github.com/Increase/increase-ruby/compare/v1.99.0...v1.100.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([9b9ec77](https://github.com/Increase/increase-ruby/commit/9b9ec770c31cfb71d2e7d9de92da83aab4095bd8))
10
+
3
11
  ## 1.99.0 (2025-10-01)
4
12
 
5
13
  Full Changelog: [v1.98.0...v1.99.0](https://github.com/Increase/increase-ruby/compare/v1.98.0...v1.99.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.99.0"
18
+ gem "increase", "~> 1.100.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -8043,6 +8043,13 @@ module Increase
8043
8043
  # @return [Integer]
8044
8044
  required :incremented_amount, Integer
8045
8045
 
8046
+ # @!attribute refunded_amount
8047
+ # The total refunded amount in the minor unit of the transaction's currency. For
8048
+ # dollars, for example, this is cents.
8049
+ #
8050
+ # @return [Integer]
8051
+ required :refunded_amount, Integer
8052
+
8046
8053
  # @!attribute reversed_amount
8047
8054
  # The total reversed amount in the minor unit of the transaction's currency. For
8048
8055
  # dollars, for example, this is cents.
@@ -8051,13 +8058,13 @@ module Increase
8051
8058
  required :reversed_amount, Integer
8052
8059
 
8053
8060
  # @!attribute settled_amount
8054
- # The total settled or refunded amount in the minor unit of the transaction's
8055
- # currency. For dollars, for example, this is cents.
8061
+ # The total settled amount in the minor unit of the transaction's currency. For
8062
+ # dollars, for example, this is cents.
8056
8063
  #
8057
8064
  # @return [Integer]
8058
8065
  required :settled_amount, Integer
8059
8066
 
8060
- # @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, reversed_amount:, settled_amount:)
8067
+ # @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refunded_amount:, reversed_amount:, settled_amount:)
8061
8068
  # Some parameter documentations has been truncated, see
8062
8069
  # {Increase::Models::CardPayment::State} for more details.
8063
8070
  #
@@ -8069,9 +8076,11 @@ module Increase
8069
8076
  #
8070
8077
  # @param incremented_amount [Integer] The total incrementally updated authorized amount in the minor unit of the trans
8071
8078
  #
8079
+ # @param refunded_amount [Integer] The total refunded amount in the minor unit of the transaction's currency. For d
8080
+ #
8072
8081
  # @param reversed_amount [Integer] The total reversed amount in the minor unit of the transaction's currency. For d
8073
8082
  #
8074
- # @param settled_amount [Integer] The total settled or refunded amount in the minor unit of the transaction's curr
8083
+ # @param settled_amount [Integer] The total settled amount in the minor unit of the transaction's currency. For do
8075
8084
  end
8076
8085
 
8077
8086
  # A constant representing the object's type. For this resource it will always be
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.99.0"
4
+ VERSION = "1.100.0"
5
5
  end
@@ -14918,13 +14918,18 @@ module Increase
14918
14918
  sig { returns(Integer) }
14919
14919
  attr_accessor :incremented_amount
14920
14920
 
14921
+ # The total refunded amount in the minor unit of the transaction's currency. For
14922
+ # dollars, for example, this is cents.
14923
+ sig { returns(Integer) }
14924
+ attr_accessor :refunded_amount
14925
+
14921
14926
  # The total reversed amount in the minor unit of the transaction's currency. For
14922
14927
  # dollars, for example, this is cents.
14923
14928
  sig { returns(Integer) }
14924
14929
  attr_accessor :reversed_amount
14925
14930
 
14926
- # The total settled or refunded amount in the minor unit of the transaction's
14927
- # currency. For dollars, for example, this is cents.
14931
+ # The total settled amount in the minor unit of the transaction's currency. For
14932
+ # dollars, for example, this is cents.
14928
14933
  sig { returns(Integer) }
14929
14934
  attr_accessor :settled_amount
14930
14935
 
@@ -14934,6 +14939,7 @@ module Increase
14934
14939
  authorized_amount: Integer,
14935
14940
  fuel_confirmed_amount: Integer,
14936
14941
  incremented_amount: Integer,
14942
+ refunded_amount: Integer,
14937
14943
  reversed_amount: Integer,
14938
14944
  settled_amount: Integer
14939
14945
  ).returns(T.attached_class)
@@ -14948,11 +14954,14 @@ module Increase
14948
14954
  # The total incrementally updated authorized amount in the minor unit of the
14949
14955
  # transaction's currency. For dollars, for example, this is cents.
14950
14956
  incremented_amount:,
14957
+ # The total refunded amount in the minor unit of the transaction's currency. For
14958
+ # dollars, for example, this is cents.
14959
+ refunded_amount:,
14951
14960
  # The total reversed amount in the minor unit of the transaction's currency. For
14952
14961
  # dollars, for example, this is cents.
14953
14962
  reversed_amount:,
14954
- # The total settled or refunded amount in the minor unit of the transaction's
14955
- # currency. For dollars, for example, this is cents.
14963
+ # The total settled amount in the minor unit of the transaction's currency. For
14964
+ # dollars, for example, this is cents.
14956
14965
  settled_amount:
14957
14966
  )
14958
14967
  end
@@ -14963,6 +14972,7 @@ module Increase
14963
14972
  authorized_amount: Integer,
14964
14973
  fuel_confirmed_amount: Integer,
14965
14974
  incremented_amount: Integer,
14975
+ refunded_amount: Integer,
14966
14976
  reversed_amount: Integer,
14967
14977
  settled_amount: Integer
14968
14978
  }
@@ -5679,6 +5679,7 @@ module Increase
5679
5679
  authorized_amount: Integer,
5680
5680
  fuel_confirmed_amount: Integer,
5681
5681
  incremented_amount: Integer,
5682
+ refunded_amount: Integer,
5682
5683
  reversed_amount: Integer,
5683
5684
  settled_amount: Integer
5684
5685
  }
@@ -5690,6 +5691,8 @@ module Increase
5690
5691
 
5691
5692
  attr_accessor incremented_amount: Integer
5692
5693
 
5694
+ attr_accessor refunded_amount: Integer
5695
+
5693
5696
  attr_accessor reversed_amount: Integer
5694
5697
 
5695
5698
  attr_accessor settled_amount: Integer
@@ -5698,6 +5701,7 @@ module Increase
5698
5701
  authorized_amount: Integer,
5699
5702
  fuel_confirmed_amount: Integer,
5700
5703
  incremented_amount: Integer,
5704
+ refunded_amount: Integer,
5701
5705
  reversed_amount: Integer,
5702
5706
  settled_amount: Integer
5703
5707
  ) -> void
@@ -5706,6 +5710,7 @@ module Increase
5706
5710
  authorized_amount: Integer,
5707
5711
  fuel_confirmed_amount: Integer,
5708
5712
  incremented_amount: Integer,
5713
+ refunded_amount: Integer,
5709
5714
  reversed_amount: Integer,
5710
5715
  settled_amount: Integer
5711
5716
  }
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.99.0
4
+ version: 1.100.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-01 00:00:00.000000000 Z
11
+ date: 2025-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool