increase 1.140.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/inbound_check_deposit.rb +3 -0
- data/lib/increase/models/physical_card_profile.rb +9 -6
- data/lib/increase/models/transaction.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_check_deposit.rbi +7 -0
- data/rbi/increase/models/physical_card_profile.rbi +12 -6
- data/rbi/increase/models/transaction.rbi +7 -0
- data/sig/increase/models/inbound_check_deposit.rbs +4 -0
- data/sig/increase/models/transaction.rbs +4 -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: 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,21 @@
|
|
|
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
|
+
|
|
11
|
+
## 1.141.0 (2025-11-13)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.140.0...v1.141.0](https://github.com/Increase/increase-ruby/compare/v1.140.0...v1.141.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([b4956dd](https://github.com/Increase/increase-ruby/commit/b4956dddd9c330f39d53c4fe48b9249916b1db7a))
|
|
18
|
+
|
|
3
19
|
## 1.140.0 (2025-11-12)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.139.0...v1.140.0](https://github.com/Increase/increase-ruby/compare/v1.139.0...v1.140.0)
|
data/README.md
CHANGED
|
@@ -237,6 +237,9 @@ module Increase
|
|
|
237
237
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
238
238
|
NON_CONFORMING_ITEM = :non_conforming_item
|
|
239
239
|
|
|
240
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
241
|
+
PAID = :paid
|
|
242
|
+
|
|
240
243
|
# @!method self.values
|
|
241
244
|
# @return [Array<Symbol>]
|
|
242
245
|
end
|
|
@@ -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
|
#
|
|
@@ -6078,6 +6078,9 @@ module Increase
|
|
|
6078
6078
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
6079
6079
|
NON_CONFORMING_ITEM = :non_conforming_item
|
|
6080
6080
|
|
|
6081
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
6082
|
+
PAID = :paid
|
|
6083
|
+
|
|
6081
6084
|
# @!method self.values
|
|
6082
6085
|
# @return [Array<Symbol>]
|
|
6083
6086
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -331,6 +331,13 @@ module Increase
|
|
|
331
331
|
Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
|
|
332
332
|
)
|
|
333
333
|
|
|
334
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
335
|
+
PAID =
|
|
336
|
+
T.let(
|
|
337
|
+
:paid,
|
|
338
|
+
Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
|
|
339
|
+
)
|
|
340
|
+
|
|
334
341
|
sig do
|
|
335
342
|
override.returns(
|
|
336
343
|
T::Array[
|
|
@@ -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
|
|
@@ -11364,6 +11364,13 @@ module Increase
|
|
|
11364
11364
|
Increase::Transaction::Source::InboundCheckAdjustment::Reason::TaggedSymbol
|
|
11365
11365
|
)
|
|
11366
11366
|
|
|
11367
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
11368
|
+
PAID =
|
|
11369
|
+
T.let(
|
|
11370
|
+
:paid,
|
|
11371
|
+
Increase::Transaction::Source::InboundCheckAdjustment::Reason::TaggedSymbol
|
|
11372
|
+
)
|
|
11373
|
+
|
|
11367
11374
|
sig do
|
|
11368
11375
|
override.returns(
|
|
11369
11376
|
T::Array[
|
|
@@ -147,6 +147,7 @@ module Increase
|
|
|
147
147
|
| :wrong_payee_credit
|
|
148
148
|
| :adjusted_amount
|
|
149
149
|
| :non_conforming_item
|
|
150
|
+
| :paid
|
|
150
151
|
|
|
151
152
|
module Reason
|
|
152
153
|
extend Increase::Internal::Type::Enum
|
|
@@ -163,6 +164,9 @@ module Increase
|
|
|
163
164
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
164
165
|
NON_CONFORMING_ITEM: :non_conforming_item
|
|
165
166
|
|
|
167
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
168
|
+
PAID: :paid
|
|
169
|
+
|
|
166
170
|
def self?.values: -> ::Array[Increase::Models::InboundCheckDeposit::Adjustment::reason]
|
|
167
171
|
end
|
|
168
172
|
end
|
|
@@ -4448,6 +4448,7 @@ module Increase
|
|
|
4448
4448
|
| :wrong_payee_credit
|
|
4449
4449
|
| :adjusted_amount
|
|
4450
4450
|
| :non_conforming_item
|
|
4451
|
+
| :paid
|
|
4451
4452
|
|
|
4452
4453
|
module Reason
|
|
4453
4454
|
extend Increase::Internal::Type::Enum
|
|
@@ -4464,6 +4465,9 @@ module Increase
|
|
|
4464
4465
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
4465
4466
|
NON_CONFORMING_ITEM: :non_conforming_item
|
|
4466
4467
|
|
|
4468
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
4469
|
+
PAID: :paid
|
|
4470
|
+
|
|
4467
4471
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundCheckAdjustment::reason]
|
|
4468
4472
|
end
|
|
4469
4473
|
end
|
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
|