increase 1.141.0 → 1.142.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/physical_card_profile.rb +9 -6
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/physical_card_profile.rbi +12 -6
- 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: 5220b81a2ead4122f88ed2ede53a1ce18d450b660994c41962e2319b89101335
|
|
4
|
+
data.tar.gz: 2ae9da2ccc5ead295f5f6fd43920e086004d49a21e30a0ec75e40b7aba3aaa1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4bb3284b0d5f0cddc1ca0e421827218f6b1bfbf532cbf612474d3f062821af74c98f827f9427003a3b86bba7de662839dc06740afc169a4c0c0589686270b78
|
|
7
|
+
data.tar.gz: da2d46c4f2a30413f8adf574c75f96f197bab7a3b817bce5e4492a114de5777ff54015b542803c60e9ba76d626e6a87a1e587d42431939d1ab67a4577edaeea5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.142.0 (2025-11-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.141.0...v1.142.0](https://github.com/Increase/increase-ruby/compare/v1.141.0...v1.142.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([cb2ed86](https://github.com/Increase/increase-ruby/commit/cb2ed865efae0e15c8269c5ee94e94bfdd9e3e3c))
|
|
10
|
+
|
|
3
11
|
## 1.141.0 (2025-11-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.140.0...v1.141.0](https://github.com/Increase/increase-ruby/compare/v1.140.0...v1.141.0)
|
data/README.md
CHANGED
|
@@ -11,13 +11,15 @@ module Increase
|
|
|
11
11
|
required :id, String
|
|
12
12
|
|
|
13
13
|
# @!attribute back_image_file_id
|
|
14
|
-
# The identifier of the File containing the physical card's back image.
|
|
14
|
+
# The identifier of the File containing the physical card's back image. This will
|
|
15
|
+
# be missing until the image has been post-processed.
|
|
15
16
|
#
|
|
16
17
|
# @return [String, nil]
|
|
17
18
|
required :back_image_file_id, String, nil?: true
|
|
18
19
|
|
|
19
20
|
# @!attribute carrier_image_file_id
|
|
20
|
-
# The identifier of the File containing the physical card's carrier image.
|
|
21
|
+
# The identifier of the File containing the physical card's carrier image. This
|
|
22
|
+
# will be missing until the image has been post-processed.
|
|
21
23
|
#
|
|
22
24
|
# @return [String, nil]
|
|
23
25
|
required :carrier_image_file_id, String, nil?: true
|
|
@@ -48,7 +50,8 @@ module Increase
|
|
|
48
50
|
required :description, String
|
|
49
51
|
|
|
50
52
|
# @!attribute front_image_file_id
|
|
51
|
-
# The identifier of the File containing the physical card's front image.
|
|
53
|
+
# The identifier of the File containing the physical card's front image. This will
|
|
54
|
+
# be missing until the image has been post-processed.
|
|
52
55
|
#
|
|
53
56
|
# @return [String, nil]
|
|
54
57
|
required :front_image_file_id, String, nil?: true
|
|
@@ -97,9 +100,9 @@ module Increase
|
|
|
97
100
|
#
|
|
98
101
|
# @param id [String] The Card Profile identifier.
|
|
99
102
|
#
|
|
100
|
-
# @param back_image_file_id [String, nil] The identifier of the File containing the physical card's back image.
|
|
103
|
+
# @param back_image_file_id [String, nil] The identifier of the File containing the physical card's back image. This will
|
|
101
104
|
#
|
|
102
|
-
# @param carrier_image_file_id [String, nil] The identifier of the File containing the physical card's carrier image.
|
|
105
|
+
# @param carrier_image_file_id [String, nil] The identifier of the File containing the physical card's carrier image. This wi
|
|
103
106
|
#
|
|
104
107
|
# @param contact_phone [String, nil] A phone number the user can contact to receive support for their card.
|
|
105
108
|
#
|
|
@@ -109,7 +112,7 @@ module Increase
|
|
|
109
112
|
#
|
|
110
113
|
# @param description [String] A description you can use to identify the Physical Card Profile.
|
|
111
114
|
#
|
|
112
|
-
# @param front_image_file_id [String, nil] The identifier of the File containing the physical card's front image.
|
|
115
|
+
# @param front_image_file_id [String, nil] The identifier of the File containing the physical card's front image. This will
|
|
113
116
|
#
|
|
114
117
|
# @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
|
|
115
118
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -12,11 +12,13 @@ module Increase
|
|
|
12
12
|
sig { returns(String) }
|
|
13
13
|
attr_accessor :id
|
|
14
14
|
|
|
15
|
-
# The identifier of the File containing the physical card's back image.
|
|
15
|
+
# The identifier of the File containing the physical card's back image. This will
|
|
16
|
+
# be missing until the image has been post-processed.
|
|
16
17
|
sig { returns(T.nilable(String)) }
|
|
17
18
|
attr_accessor :back_image_file_id
|
|
18
19
|
|
|
19
|
-
# The identifier of the File containing the physical card's carrier image.
|
|
20
|
+
# The identifier of the File containing the physical card's carrier image. This
|
|
21
|
+
# will be missing until the image has been post-processed.
|
|
20
22
|
sig { returns(T.nilable(String)) }
|
|
21
23
|
attr_accessor :carrier_image_file_id
|
|
22
24
|
|
|
@@ -37,7 +39,8 @@ module Increase
|
|
|
37
39
|
sig { returns(String) }
|
|
38
40
|
attr_accessor :description
|
|
39
41
|
|
|
40
|
-
# The identifier of the File containing the physical card's front image.
|
|
42
|
+
# The identifier of the File containing the physical card's front image. This will
|
|
43
|
+
# be missing until the image has been post-processed.
|
|
41
44
|
sig { returns(T.nilable(String)) }
|
|
42
45
|
attr_accessor :front_image_file_id
|
|
43
46
|
|
|
@@ -88,9 +91,11 @@ module Increase
|
|
|
88
91
|
def self.new(
|
|
89
92
|
# The Card Profile identifier.
|
|
90
93
|
id:,
|
|
91
|
-
# The identifier of the File containing the physical card's back image.
|
|
94
|
+
# The identifier of the File containing the physical card's back image. This will
|
|
95
|
+
# be missing until the image has been post-processed.
|
|
92
96
|
back_image_file_id:,
|
|
93
|
-
# The identifier of the File containing the physical card's carrier image.
|
|
97
|
+
# The identifier of the File containing the physical card's carrier image. This
|
|
98
|
+
# will be missing until the image has been post-processed.
|
|
94
99
|
carrier_image_file_id:,
|
|
95
100
|
# A phone number the user can contact to receive support for their card.
|
|
96
101
|
contact_phone:,
|
|
@@ -101,7 +106,8 @@ module Increase
|
|
|
101
106
|
creator:,
|
|
102
107
|
# A description you can use to identify the Physical Card Profile.
|
|
103
108
|
description:,
|
|
104
|
-
# The identifier of the File containing the physical card's front image.
|
|
109
|
+
# The identifier of the File containing the physical card's front image. This will
|
|
110
|
+
# be missing until the image has been post-processed.
|
|
105
111
|
front_image_file_id:,
|
|
106
112
|
# The idempotency key you chose for this object. This value is unique across
|
|
107
113
|
# Increase and is used to ensure that a request is only processed once. Learn more
|
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.142.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-11-
|
|
11
|
+
date: 2025-11-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|