increase 1.11.0 → 1.12.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: 2efe5921f5ac8c700e2add270d800dd51f31ce5d2784389ea423ce30e43c4d76
4
- data.tar.gz: 00ee09350bbcc16015dddeeee4bb95efeafaf773d43a908561077f7d9a084da6
3
+ metadata.gz: bb36996c735515817285f0cd8fc49c989108ca5beb5947a8c14082d0b1db5d63
4
+ data.tar.gz: 4892b072c4e58d5e4110e41e3303a559066708124b43909a85ee89926e0558e7
5
5
  SHA512:
6
- metadata.gz: 8503b742f6c85f57a57104060206bb92197e95c6559dcbd709e76b5f794e3a068e7b33f0dd1b2991267b5f38c1b59260fdee0e8587af90d8c935902ce08a2cd2
7
- data.tar.gz: '0819a7e8ce851ed7824e3c1d009b8e8fea5386cbc277175e10b77b6781f58df34f74606dde47ac365013805acff5d6b86cad3651189bd787d90f8aca6d583ed6'
6
+ metadata.gz: 60955e3ae07800220bb24a1d21df590540dae13d6f13add548f51a7421adb5b371f343757bae238e30689ecc96c527b4f7998e40bcfb627740a2223d950d4049
7
+ data.tar.gz: 43213b2fda4e61cd24961fb0c53a3db1bdf70e93c396adb23d38715de07eb6e85eea4802725c8422d79a11f9101bf6693565e20f25e0c88dece633935ac62de6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.12.0 (2025-07-10)
4
+
5
+ Full Changelog: [v1.11.0...v1.12.0](https://github.com/Increase/increase-ruby/compare/v1.11.0...v1.12.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([1765f74](https://github.com/Increase/increase-ruby/commit/1765f74c0125b1b3eab3faf9f03d3498a5daffa4))
10
+
3
11
  ## 1.11.0 (2025-07-09)
4
12
 
5
13
  Full Changelog: [v1.10.0...v1.11.0](https://github.com/Increase/increase-ruby/compare/v1.10.0...v1.11.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.11.0"
18
+ gem "increase", "~> 1.12.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -22,6 +22,12 @@ module Increase
22
22
  # @return [Integer]
23
23
  required :expiration_year, Integer
24
24
 
25
+ # @!attribute pin
26
+ # The 4-digit PIN for the card, for use with ATMs.
27
+ #
28
+ # @return [String]
29
+ required :pin, String
30
+
25
31
  # @!attribute primary_account_number
26
32
  # The card number.
27
33
  #
@@ -43,7 +49,7 @@ module Increase
43
49
  # @return [String]
44
50
  required :verification_code, String
45
51
 
46
- # @!method initialize(card_id:, expiration_month:, expiration_year:, primary_account_number:, type:, verification_code:)
52
+ # @!method initialize(card_id:, expiration_month:, expiration_year:, pin:, primary_account_number:, type:, verification_code:)
47
53
  # Some parameter documentations has been truncated, see
48
54
  # {Increase::Models::CardDetails} for more details.
49
55
  #
@@ -55,6 +61,8 @@ module Increase
55
61
  #
56
62
  # @param expiration_year [Integer] The year the card expires in YYYY format (e.g., 2025).
57
63
  #
64
+ # @param pin [String] The 4-digit PIN for the card, for use with ATMs.
65
+ #
58
66
  # @param primary_account_number [String] The card number.
59
67
  #
60
68
  # @param type [Symbol, Increase::Models::CardDetails::Type] 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.11.0"
4
+ VERSION = "1.12.0"
5
5
  end
@@ -20,6 +20,10 @@ module Increase
20
20
  sig { returns(Integer) }
21
21
  attr_accessor :expiration_year
22
22
 
23
+ # The 4-digit PIN for the card, for use with ATMs.
24
+ sig { returns(String) }
25
+ attr_accessor :pin
26
+
23
27
  # The card number.
24
28
  sig { returns(String) }
25
29
  attr_accessor :primary_account_number
@@ -41,6 +45,7 @@ module Increase
41
45
  card_id: String,
42
46
  expiration_month: Integer,
43
47
  expiration_year: Integer,
48
+ pin: String,
44
49
  primary_account_number: String,
45
50
  type: Increase::CardDetails::Type::OrSymbol,
46
51
  verification_code: String
@@ -53,6 +58,8 @@ module Increase
53
58
  expiration_month:,
54
59
  # The year the card expires in YYYY format (e.g., 2025).
55
60
  expiration_year:,
61
+ # The 4-digit PIN for the card, for use with ATMs.
62
+ pin:,
56
63
  # The card number.
57
64
  primary_account_number:,
58
65
  # A constant representing the object's type. For this resource it will always be
@@ -71,6 +78,7 @@ module Increase
71
78
  card_id: String,
72
79
  expiration_month: Integer,
73
80
  expiration_year: Integer,
81
+ pin: String,
74
82
  primary_account_number: String,
75
83
  type: Increase::CardDetails::Type::TaggedSymbol,
76
84
  verification_code: String
@@ -5,6 +5,7 @@ module Increase
5
5
  card_id: String,
6
6
  expiration_month: Integer,
7
7
  expiration_year: Integer,
8
+ pin: String,
8
9
  primary_account_number: String,
9
10
  type: Increase::Models::CardDetails::type_,
10
11
  verification_code: String
@@ -17,6 +18,8 @@ module Increase
17
18
 
18
19
  attr_accessor expiration_year: Integer
19
20
 
21
+ attr_accessor pin: String
22
+
20
23
  attr_accessor primary_account_number: String
21
24
 
22
25
  attr_accessor type: Increase::Models::CardDetails::type_
@@ -27,6 +30,7 @@ module Increase
27
30
  card_id: String,
28
31
  expiration_month: Integer,
29
32
  expiration_year: Integer,
33
+ pin: String,
30
34
  primary_account_number: String,
31
35
  type: Increase::Models::CardDetails::type_,
32
36
  verification_code: String
@@ -36,6 +40,7 @@ module Increase
36
40
  card_id: String,
37
41
  expiration_month: Integer,
38
42
  expiration_year: Integer,
43
+ pin: String,
39
44
  primary_account_number: String,
40
45
  type: Increase::Models::CardDetails::type_,
41
46
  verification_code: String
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.11.0
4
+ version: 1.12.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-07-10 00:00:00.000000000 Z
11
+ date: 2025-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool