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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_details.rb +9 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_details.rbi +8 -0
- data/sig/increase/models/card_details.rbs +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb36996c735515817285f0cd8fc49c989108ca5beb5947a8c14082d0b1db5d63
|
4
|
+
data.tar.gz: 4892b072c4e58d5e4110e41e3303a559066708124b43909a85ee89926e0558e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -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 `
|
data/lib/increase/version.rb
CHANGED
@@ -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.
|
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-
|
11
|
+
date: 2025-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|