increase 1.109.1 → 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: f7bb359c6fe86e01d5784cd47b55d8dfa1378a05ae1d9a23e0641e2fb854850e
4
- data.tar.gz: 59da1c0cc26a6fcfd7f9fb36a5e5445598e52cc42dfca33de6bdf8ce221688d5
3
+ metadata.gz: 0e8f5f190d7248de94164de482d1e025552f82ff7eaa16a3276d73a4ca97ebbc
4
+ data.tar.gz: ec2c52f7a2c1ce6687b0baadbb2d7f18d9b1be031eb5f7aedbc19ca604a9e4cb
5
5
  SHA512:
6
- metadata.gz: 8aa81ef4fd12aa3261bfbe05ec664b0d7d103b119cb2099d6f351c4f685405e7b238f2d95d6d5b85bb8f7769560bbdba4d52cf60ed3657a97d390e3ecbfac525
7
- data.tar.gz: 1b7ff7ea8dc8fc08d49fd8c51b98c8a88fee5d839151c6efa64b8798bc59cdf285b9396005aa546aeca8584524c70a3ddd93ffaf04dc184dbdc8b3ea34f08641
6
+ metadata.gz: a1528dd515ffcec70cc1a671a52b80e543d348eb014f5aa8f3d745fe409c72870e90adf9e00ca42c4ca4140c63820954eb6a75ac53ee82045372faff02e8ae41
7
+ data.tar.gz: 63b7c028f33d3f1e21f7eabc5f86e0fd3df2e5c55c90bef31597715ede66f7d3f2db5d0d50372b56c1c7c88ddbc34028158c0118a7f82c6c76a8cb21b19a9089
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 1.110.0 (2025-10-16)
12
+
13
+ Full Changelog: [v1.109.1...v1.110.0](https://github.com/Increase/increase-ruby/compare/v1.109.1...v1.110.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([02c6564](https://github.com/Increase/increase-ruby/commit/02c65647901fd5f8951d68e6f6202e56f589e3bb))
18
+
3
19
  ## 1.109.1 (2025-10-15)
4
20
 
5
21
  Full Changelog: [v1.109.0...v1.109.1](https://github.com/Increase/increase-ruby/compare/v1.109.0...v1.109.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.109.1"
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
@@ -1580,14 +1580,6 @@ module Increase
1580
1580
  # @return [String]
1581
1581
  required :card_id, String
1582
1582
 
1583
- # @!attribute card_profile_id
1584
- # The identifier of the Card Profile that was set via the real time decision. This
1585
- # will be null until the real time decision is responded to or if the real time
1586
- # decision did not set a card profile.
1587
- #
1588
- # @return [String, nil]
1589
- required :card_profile_id, String, nil?: true
1590
-
1591
1583
  # @!attribute decision
1592
1584
  # Whether or not the provisioning request was approved. This will be null until
1593
1585
  # the real time decision is responded to.
@@ -1607,7 +1599,7 @@ module Increase
1607
1599
  # @return [Symbol, Increase::Models::RealTimeDecision::DigitalWalletToken::DigitalWallet]
1608
1600
  required :digital_wallet, enum: -> { Increase::RealTimeDecision::DigitalWalletToken::DigitalWallet }
1609
1601
 
1610
- # @!method initialize(card_id:, card_profile_id:, decision:, device:, digital_wallet:)
1602
+ # @!method initialize(card_id:, decision:, device:, digital_wallet:)
1611
1603
  # Some parameter documentations has been truncated, see
1612
1604
  # {Increase::Models::RealTimeDecision::DigitalWalletToken} for more details.
1613
1605
  #
@@ -1615,8 +1607,6 @@ module Increase
1615
1607
  #
1616
1608
  # @param card_id [String] The identifier of the Card that is being tokenized.
1617
1609
  #
1618
- # @param card_profile_id [String, nil] The identifier of the Card Profile that was set via the real time decision. This
1619
- #
1620
1610
  # @param decision [Symbol, Increase::Models::RealTimeDecision::DigitalWalletToken::Decision, nil] Whether or not the provisioning request was approved. This will be null until th
1621
1611
  #
1622
1612
  # @param device [Increase::Models::RealTimeDecision::DigitalWalletToken::Device] Device that is being used to provision the digital wallet token.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.109.1"
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
@@ -3002,12 +3002,6 @@ module Increase
3002
3002
  sig { returns(String) }
3003
3003
  attr_accessor :card_id
3004
3004
 
3005
- # The identifier of the Card Profile that was set via the real time decision. This
3006
- # will be null until the real time decision is responded to or if the real time
3007
- # decision did not set a card profile.
3008
- sig { returns(T.nilable(String)) }
3009
- attr_accessor :card_profile_id
3010
-
3011
3005
  # Whether or not the provisioning request was approved. This will be null until
3012
3006
  # the real time decision is responded to.
3013
3007
  sig do
@@ -3043,7 +3037,6 @@ module Increase
3043
3037
  sig do
3044
3038
  params(
3045
3039
  card_id: String,
3046
- card_profile_id: T.nilable(String),
3047
3040
  decision:
3048
3041
  T.nilable(
3049
3042
  Increase::RealTimeDecision::DigitalWalletToken::Decision::OrSymbol
@@ -3057,10 +3050,6 @@ module Increase
3057
3050
  def self.new(
3058
3051
  # The identifier of the Card that is being tokenized.
3059
3052
  card_id:,
3060
- # The identifier of the Card Profile that was set via the real time decision. This
3061
- # will be null until the real time decision is responded to or if the real time
3062
- # decision did not set a card profile.
3063
- card_profile_id:,
3064
3053
  # Whether or not the provisioning request was approved. This will be null until
3065
3054
  # the real time decision is responded to.
3066
3055
  decision:,
@@ -3075,7 +3064,6 @@ module Increase
3075
3064
  override.returns(
3076
3065
  {
3077
3066
  card_id: String,
3078
- card_profile_id: T.nilable(String),
3079
3067
  decision:
3080
3068
  T.nilable(
3081
3069
  Increase::RealTimeDecision::DigitalWalletToken::Decision::TaggedSymbol
@@ -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
@@ -1095,7 +1095,6 @@ module Increase
1095
1095
  type digital_wallet_token =
1096
1096
  {
1097
1097
  card_id: String,
1098
- card_profile_id: String?,
1099
1098
  decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?,
1100
1099
  device: Increase::RealTimeDecision::DigitalWalletToken::Device,
1101
1100
  digital_wallet: Increase::Models::RealTimeDecision::DigitalWalletToken::digital_wallet
@@ -1104,8 +1103,6 @@ module Increase
1104
1103
  class DigitalWalletToken < Increase::Internal::Type::BaseModel
1105
1104
  attr_accessor card_id: String
1106
1105
 
1107
- attr_accessor card_profile_id: String?
1108
-
1109
1106
  attr_accessor decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?
1110
1107
 
1111
1108
  attr_accessor device: Increase::RealTimeDecision::DigitalWalletToken::Device
@@ -1114,7 +1111,6 @@ module Increase
1114
1111
 
1115
1112
  def initialize: (
1116
1113
  card_id: String,
1117
- card_profile_id: String?,
1118
1114
  decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?,
1119
1115
  device: Increase::RealTimeDecision::DigitalWalletToken::Device,
1120
1116
  digital_wallet: Increase::Models::RealTimeDecision::DigitalWalletToken::digital_wallet
@@ -1122,7 +1118,6 @@ module Increase
1122
1118
 
1123
1119
  def to_hash: -> {
1124
1120
  card_id: String,
1125
- card_profile_id: String?,
1126
1121
  decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?,
1127
1122
  device: Increase::RealTimeDecision::DigitalWalletToken::Device,
1128
1123
  digital_wallet: Increase::Models::RealTimeDecision::DigitalWalletToken::digital_wallet
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.109.1
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-15 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