increase 1.109.1 → 1.110.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: 2612c971d2a0e9be052f7298c6103fda94befefb397045a2541ac6ee649547dc
4
+ data.tar.gz: 325cb273a1effe222be8d0e276d037dbab74f57b0e37c34385d1a4b34840ec58
5
5
  SHA512:
6
- metadata.gz: 8aa81ef4fd12aa3261bfbe05ec664b0d7d103b119cb2099d6f351c4f685405e7b238f2d95d6d5b85bb8f7769560bbdba4d52cf60ed3657a97d390e3ecbfac525
7
- data.tar.gz: 1b7ff7ea8dc8fc08d49fd8c51b98c8a88fee5d839151c6efa64b8798bc59cdf285b9396005aa546aeca8584524c70a3ddd93ffaf04dc184dbdc8b3ea34f08641
6
+ metadata.gz: 2a678e6e6be107188678b3bc0c8598207383d550b7a8485d90b48dc9e2e6ffb0dc59fb5461dab8356a926fb49476514b68bf780aa51b04720f47365fa6aba669
7
+ data.tar.gz: c7dad1a2367802f78e0139ce1ed2d64055dbb649a2010921f6a1ca2d25a5f2037d4c79726237f9b3cbce8758895cec8fdccf3ee4a23189811ffec1a7547961e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.110.0 (2025-10-16)
4
+
5
+ Full Changelog: [v1.109.1...v1.110.0](https://github.com/Increase/increase-ruby/compare/v1.109.1...v1.110.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([02c6564](https://github.com/Increase/increase-ruby/commit/02c65647901fd5f8951d68e6f6202e56f589e3bb))
10
+
3
11
  ## 1.109.1 (2025-10-15)
4
12
 
5
13
  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.110.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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.110.0"
5
5
  end
@@ -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
@@ -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.110.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-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool