increase 1.83.0 → 1.84.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 +5 -1
- data/lib/increase/resources/card_details.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_details.rbi +5 -1
- data/rbi/increase/resources/card_details.rbi +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95aa739acf79d0a37cc4598cfc7cc4586ec690c645be502ebf2e29e9cf235419
|
4
|
+
data.tar.gz: 3b7c0b9ab193ef11e5e0a1a9295dbf3311ec28f00d0293d49fc263fecca8a0fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30e9a0f2b492be24c180f272c3e6e0f29b8570f6662d784c28adc4900ecfa159266700f0b72d340d3807bc4a5b13c1fe7ada7ee2d18efac96ab195446d6c582d
|
7
|
+
data.tar.gz: 59840436b3b3de6bbe3226d30c86586cb51b6b439edff4ba57a202c90832c6642a17739584736e600d98b81e9863467dd3fdbb6be54000cf73991af5cb4f5f57
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.84.0 (2025-09-19)
|
4
|
+
|
5
|
+
Full Changelog: [v1.83.0...v1.84.0](https://github.com/Increase/increase-ruby/compare/v1.83.0...v1.84.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([600d7b0](https://github.com/Increase/increase-ruby/commit/600d7b07ab75fe2ea739860fb6af3749b3268164))
|
10
|
+
|
3
11
|
## 1.83.0 (2025-09-19)
|
4
12
|
|
5
13
|
Full Changelog: [v1.82.0...v1.83.0](https://github.com/Increase/increase-ruby/compare/v1.82.0...v1.83.0)
|
data/README.md
CHANGED
@@ -53,7 +53,11 @@ module Increase
|
|
53
53
|
# Some parameter documentations has been truncated, see
|
54
54
|
# {Increase::Models::CardDetailsAPI} for more details.
|
55
55
|
#
|
56
|
-
# An object containing the sensitive details (card number, CVC, etc) for a
|
56
|
+
# An object containing the sensitive details (card number, CVC, PIN, etc) for a
|
57
|
+
# Card. These details are not included in the Card object. If you'd prefer to
|
58
|
+
# never access these details directly, you can use the
|
59
|
+
# [embedded iframe](/documentation/embedded-card-component) to display the
|
60
|
+
# information to your users.
|
57
61
|
#
|
58
62
|
# @param card_id [String] The identifier for the Card for which sensitive details have been returned.
|
59
63
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -39,7 +39,11 @@ module Increase
|
|
39
39
|
sig { returns(String) }
|
40
40
|
attr_accessor :verification_code
|
41
41
|
|
42
|
-
# An object containing the sensitive details (card number, CVC, etc) for a
|
42
|
+
# An object containing the sensitive details (card number, CVC, PIN, etc) for a
|
43
|
+
# Card. These details are not included in the Card object. If you'd prefer to
|
44
|
+
# never access these details directly, you can use the
|
45
|
+
# [embedded iframe](/documentation/embedded-card-component) to display the
|
46
|
+
# information to your users.
|
43
47
|
sig do
|
44
48
|
params(
|
45
49
|
card_id: String,
|