increase 1.137.0 → 1.139.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/check_transfer.rb +8 -7
- data/lib/increase/models/check_transfer_create_params.rb +3 -2
- data/lib/increase/models/check_transfer_list_params.rb +2 -5
- data/lib/increase/models/check_transfer_stop_payment_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +16 -14
- data/rbi/increase/models/check_transfer_create_params.rbi +6 -4
- data/rbi/increase/models/check_transfer_list_params.rbi +3 -10
- data/rbi/increase/models/check_transfer_stop_payment_params.rbi +7 -0
- data/rbi/increase/resources/check_transfers.rbi +3 -2
- data/sig/increase/models/check_transfer.rbs +7 -7
- data/sig/increase/models/check_transfer_list_params.rbs +3 -7
- data/sig/increase/models/check_transfer_stop_payment_params.rbs +8 -1
- 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: f17193032c6fcda732d2a41326d889d2e1c285919a9f7d52977ce57459c7aad7
|
|
4
|
+
data.tar.gz: 973f3990be3e29f96b400ee3f286d53dca986e3d1d1a8a3e4a981f160feb4815
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8593d80ed65498790779aec47112e443f9af71893d0ac8ef3af1742ffa41f5beb875d67fc87074d8248e6617623d031e2d98d3e092d1ce5d9bae032dde0707b0
|
|
7
|
+
data.tar.gz: 43df0991d8580a5ed7f3547947f90f15b05d27bd44e437d78da259875edb3727a9084e4b5e1fa8813ae9116ac7d6699e968d3c6e60601004d4af2c089d374275
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.139.0 (2025-11-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.138.0...v1.139.0](https://github.com/Increase/increase-ruby/compare/v1.138.0...v1.139.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([4787a07](https://github.com/Increase/increase-ruby/commit/4787a07c3d59be5640c26ec61b7617ed2b13f2d4))
|
|
10
|
+
|
|
11
|
+
## 1.138.0 (2025-11-07)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.137.0...v1.138.0](https://github.com/Increase/increase-ruby/compare/v1.137.0...v1.138.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([66a5d25](https://github.com/Increase/increase-ruby/commit/66a5d25821ad616a45401f2cddd0fac13b89b091))
|
|
18
|
+
|
|
3
19
|
## 1.137.0 (2025-11-07)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.136.0...v1.137.0](https://github.com/Increase/increase-ruby/compare/v1.136.0...v1.137.0)
|
data/README.md
CHANGED
|
@@ -166,8 +166,9 @@ module Increase
|
|
|
166
166
|
|
|
167
167
|
# @!attribute valid_until_date
|
|
168
168
|
# If set, the check will be valid on or before this date. After this date, the
|
|
169
|
-
# check transfer will be stopped and deposits will not be accepted.
|
|
170
|
-
# printed by Increase, this date is included on the check as its
|
|
169
|
+
# check transfer will be automatically stopped and deposits will not be accepted.
|
|
170
|
+
# For checks printed by Increase, this date is included on the check as its
|
|
171
|
+
# expiry.
|
|
171
172
|
#
|
|
172
173
|
# @return [Date, nil]
|
|
173
174
|
required :valid_until_date, Date, nil?: true
|
|
@@ -764,8 +765,8 @@ module Increase
|
|
|
764
765
|
# The transfer has been canceled.
|
|
765
766
|
CANCELED = :canceled
|
|
766
767
|
|
|
767
|
-
# The transfer is pending
|
|
768
|
-
|
|
768
|
+
# The transfer is pending submission.
|
|
769
|
+
PENDING_SUBMISSION = :pending_submission
|
|
769
770
|
|
|
770
771
|
# The transfer requires attention from an Increase operator.
|
|
771
772
|
REQUIRES_ATTENTION = :requires_attention
|
|
@@ -773,9 +774,6 @@ module Increase
|
|
|
773
774
|
# The transfer has been rejected.
|
|
774
775
|
REJECTED = :rejected
|
|
775
776
|
|
|
776
|
-
# The transfer is pending submission.
|
|
777
|
-
PENDING_SUBMISSION = :pending_submission
|
|
778
|
-
|
|
779
777
|
# The check is queued for mailing.
|
|
780
778
|
PENDING_MAILING = :pending_mailing
|
|
781
779
|
|
|
@@ -852,6 +850,9 @@ module Increase
|
|
|
852
850
|
# The check was not authorized.
|
|
853
851
|
NOT_AUTHORIZED = :not_authorized
|
|
854
852
|
|
|
853
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
854
|
+
VALID_UNTIL_DATE_PASSED = :valid_until_date_passed
|
|
855
|
+
|
|
855
856
|
# The check was stopped for another reason.
|
|
856
857
|
UNKNOWN = :unknown
|
|
857
858
|
|
|
@@ -71,8 +71,9 @@ module Increase
|
|
|
71
71
|
|
|
72
72
|
# @!attribute valid_until_date
|
|
73
73
|
# If provided, the check will be valid on or before this date. After this date,
|
|
74
|
-
# the check transfer will be stopped and deposits will not be
|
|
75
|
-
# printed by Increase, this date is included on the check as
|
|
74
|
+
# the check transfer will be automatically stopped and deposits will not be
|
|
75
|
+
# accepted. For checks printed by Increase, this date is included on the check as
|
|
76
|
+
# its expiry.
|
|
76
77
|
#
|
|
77
78
|
# @return [Date, nil]
|
|
78
79
|
optional :valid_until_date, Date
|
|
@@ -133,8 +133,8 @@ module Increase
|
|
|
133
133
|
# The transfer has been canceled.
|
|
134
134
|
CANCELED = :canceled
|
|
135
135
|
|
|
136
|
-
# The transfer is pending
|
|
137
|
-
|
|
136
|
+
# The transfer is pending submission.
|
|
137
|
+
PENDING_SUBMISSION = :pending_submission
|
|
138
138
|
|
|
139
139
|
# The transfer requires attention from an Increase operator.
|
|
140
140
|
REQUIRES_ATTENTION = :requires_attention
|
|
@@ -142,9 +142,6 @@ module Increase
|
|
|
142
142
|
# The transfer has been rejected.
|
|
143
143
|
REJECTED = :rejected
|
|
144
144
|
|
|
145
|
-
# The transfer is pending submission.
|
|
146
|
-
PENDING_SUBMISSION = :pending_submission
|
|
147
|
-
|
|
148
145
|
# The check is queued for mailing.
|
|
149
146
|
PENDING_MAILING = :pending_mailing
|
|
150
147
|
|
|
@@ -28,6 +28,9 @@ module Increase
|
|
|
28
28
|
# The check was not authorized.
|
|
29
29
|
NOT_AUTHORIZED = :not_authorized
|
|
30
30
|
|
|
31
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
32
|
+
VALID_UNTIL_DATE_PASSED = :valid_until_date_passed
|
|
33
|
+
|
|
31
34
|
# The check was stopped for another reason.
|
|
32
35
|
UNKNOWN = :unknown
|
|
33
36
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -181,8 +181,9 @@ module Increase
|
|
|
181
181
|
attr_accessor :type
|
|
182
182
|
|
|
183
183
|
# If set, the check will be valid on or before this date. After this date, the
|
|
184
|
-
# check transfer will be stopped and deposits will not be accepted.
|
|
185
|
-
# printed by Increase, this date is included on the check as its
|
|
184
|
+
# check transfer will be automatically stopped and deposits will not be accepted.
|
|
185
|
+
# For checks printed by Increase, this date is included on the check as its
|
|
186
|
+
# expiry.
|
|
186
187
|
sig { returns(T.nilable(Date)) }
|
|
187
188
|
attr_accessor :valid_until_date
|
|
188
189
|
|
|
@@ -288,8 +289,9 @@ module Increase
|
|
|
288
289
|
# `check_transfer`.
|
|
289
290
|
type:,
|
|
290
291
|
# If set, the check will be valid on or before this date. After this date, the
|
|
291
|
-
# check transfer will be stopped and deposits will not be accepted.
|
|
292
|
-
# printed by Increase, this date is included on the check as its
|
|
292
|
+
# check transfer will be automatically stopped and deposits will not be accepted.
|
|
293
|
+
# For checks printed by Increase, this date is included on the check as its
|
|
294
|
+
# expiry.
|
|
293
295
|
valid_until_date:
|
|
294
296
|
)
|
|
295
297
|
end
|
|
@@ -1280,10 +1282,10 @@ module Increase
|
|
|
1280
1282
|
CANCELED =
|
|
1281
1283
|
T.let(:canceled, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
1282
1284
|
|
|
1283
|
-
# The transfer is pending
|
|
1284
|
-
|
|
1285
|
+
# The transfer is pending submission.
|
|
1286
|
+
PENDING_SUBMISSION =
|
|
1285
1287
|
T.let(
|
|
1286
|
-
:
|
|
1288
|
+
:pending_submission,
|
|
1287
1289
|
Increase::CheckTransfer::Status::TaggedSymbol
|
|
1288
1290
|
)
|
|
1289
1291
|
|
|
@@ -1298,13 +1300,6 @@ module Increase
|
|
|
1298
1300
|
REJECTED =
|
|
1299
1301
|
T.let(:rejected, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
1300
1302
|
|
|
1301
|
-
# The transfer is pending submission.
|
|
1302
|
-
PENDING_SUBMISSION =
|
|
1303
|
-
T.let(
|
|
1304
|
-
:pending_submission,
|
|
1305
|
-
Increase::CheckTransfer::Status::TaggedSymbol
|
|
1306
|
-
)
|
|
1307
|
-
|
|
1308
1303
|
# The check is queued for mailing.
|
|
1309
1304
|
PENDING_MAILING =
|
|
1310
1305
|
T.let(:pending_mailing, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
@@ -1436,6 +1431,13 @@ module Increase
|
|
|
1436
1431
|
Increase::CheckTransfer::StopPaymentRequest::Reason::TaggedSymbol
|
|
1437
1432
|
)
|
|
1438
1433
|
|
|
1434
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
1435
|
+
VALID_UNTIL_DATE_PASSED =
|
|
1436
|
+
T.let(
|
|
1437
|
+
:valid_until_date_passed,
|
|
1438
|
+
Increase::CheckTransfer::StopPaymentRequest::Reason::TaggedSymbol
|
|
1439
|
+
)
|
|
1440
|
+
|
|
1439
1441
|
# The check was stopped for another reason.
|
|
1440
1442
|
UNKNOWN =
|
|
1441
1443
|
T.let(
|
|
@@ -100,8 +100,9 @@ module Increase
|
|
|
100
100
|
attr_writer :third_party
|
|
101
101
|
|
|
102
102
|
# If provided, the check will be valid on or before this date. After this date,
|
|
103
|
-
# the check transfer will be stopped and deposits will not be
|
|
104
|
-
# printed by Increase, this date is included on the check as
|
|
103
|
+
# the check transfer will be automatically stopped and deposits will not be
|
|
104
|
+
# accepted. For checks printed by Increase, this date is included on the check as
|
|
105
|
+
# its expiry.
|
|
105
106
|
sig { returns(T.nilable(Date)) }
|
|
106
107
|
attr_reader :valid_until_date
|
|
107
108
|
|
|
@@ -154,8 +155,9 @@ module Increase
|
|
|
154
155
|
# other `fulfillment_method` is provided.
|
|
155
156
|
third_party: nil,
|
|
156
157
|
# If provided, the check will be valid on or before this date. After this date,
|
|
157
|
-
# the check transfer will be stopped and deposits will not be
|
|
158
|
-
# printed by Increase, this date is included on the check as
|
|
158
|
+
# the check transfer will be automatically stopped and deposits will not be
|
|
159
|
+
# accepted. For checks printed by Increase, this date is included on the check as
|
|
160
|
+
# its expiry.
|
|
159
161
|
valid_until_date: nil,
|
|
160
162
|
request_options: {}
|
|
161
163
|
)
|
|
@@ -260,10 +260,10 @@ module Increase
|
|
|
260
260
|
Increase::CheckTransferListParams::Status::In::TaggedSymbol
|
|
261
261
|
)
|
|
262
262
|
|
|
263
|
-
# The transfer is pending
|
|
264
|
-
|
|
263
|
+
# The transfer is pending submission.
|
|
264
|
+
PENDING_SUBMISSION =
|
|
265
265
|
T.let(
|
|
266
|
-
:
|
|
266
|
+
:pending_submission,
|
|
267
267
|
Increase::CheckTransferListParams::Status::In::TaggedSymbol
|
|
268
268
|
)
|
|
269
269
|
|
|
@@ -281,13 +281,6 @@ module Increase
|
|
|
281
281
|
Increase::CheckTransferListParams::Status::In::TaggedSymbol
|
|
282
282
|
)
|
|
283
283
|
|
|
284
|
-
# The transfer is pending submission.
|
|
285
|
-
PENDING_SUBMISSION =
|
|
286
|
-
T.let(
|
|
287
|
-
:pending_submission,
|
|
288
|
-
Increase::CheckTransferListParams::Status::In::TaggedSymbol
|
|
289
|
-
)
|
|
290
|
-
|
|
291
284
|
# The check is queued for mailing.
|
|
292
285
|
PENDING_MAILING =
|
|
293
286
|
T.let(
|
|
@@ -77,6 +77,13 @@ module Increase
|
|
|
77
77
|
Increase::CheckTransferStopPaymentParams::Reason::TaggedSymbol
|
|
78
78
|
)
|
|
79
79
|
|
|
80
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
81
|
+
VALID_UNTIL_DATE_PASSED =
|
|
82
|
+
T.let(
|
|
83
|
+
:valid_until_date_passed,
|
|
84
|
+
Increase::CheckTransferStopPaymentParams::Reason::TaggedSymbol
|
|
85
|
+
)
|
|
86
|
+
|
|
80
87
|
# The check was stopped for another reason.
|
|
81
88
|
UNKNOWN =
|
|
82
89
|
T.let(
|
|
@@ -50,8 +50,9 @@ module Increase
|
|
|
50
50
|
# other `fulfillment_method` is provided.
|
|
51
51
|
third_party: nil,
|
|
52
52
|
# If provided, the check will be valid on or before this date. After this date,
|
|
53
|
-
# the check transfer will be stopped and deposits will not be
|
|
54
|
-
# printed by Increase, this date is included on the check as
|
|
53
|
+
# the check transfer will be automatically stopped and deposits will not be
|
|
54
|
+
# accepted. For checks printed by Increase, this date is included on the check as
|
|
55
|
+
# its expiry.
|
|
55
56
|
valid_until_date: nil,
|
|
56
57
|
request_options: {}
|
|
57
58
|
)
|
|
@@ -525,10 +525,9 @@ module Increase
|
|
|
525
525
|
type status =
|
|
526
526
|
:pending_approval
|
|
527
527
|
| :canceled
|
|
528
|
-
| :
|
|
528
|
+
| :pending_submission
|
|
529
529
|
| :requires_attention
|
|
530
530
|
| :rejected
|
|
531
|
-
| :pending_submission
|
|
532
531
|
| :pending_mailing
|
|
533
532
|
| :mailed
|
|
534
533
|
| :deposited
|
|
@@ -544,8 +543,8 @@ module Increase
|
|
|
544
543
|
# The transfer has been canceled.
|
|
545
544
|
CANCELED: :canceled
|
|
546
545
|
|
|
547
|
-
# The transfer is pending
|
|
548
|
-
|
|
546
|
+
# The transfer is pending submission.
|
|
547
|
+
PENDING_SUBMISSION: :pending_submission
|
|
549
548
|
|
|
550
549
|
# The transfer requires attention from an Increase operator.
|
|
551
550
|
REQUIRES_ATTENTION: :requires_attention
|
|
@@ -553,9 +552,6 @@ module Increase
|
|
|
553
552
|
# The transfer has been rejected.
|
|
554
553
|
REJECTED: :rejected
|
|
555
554
|
|
|
556
|
-
# The transfer is pending submission.
|
|
557
|
-
PENDING_SUBMISSION: :pending_submission
|
|
558
|
-
|
|
559
555
|
# The check is queued for mailing.
|
|
560
556
|
PENDING_MAILING: :pending_mailing
|
|
561
557
|
|
|
@@ -609,6 +605,7 @@ module Increase
|
|
|
609
605
|
:mail_delivery_failed
|
|
610
606
|
| :rejected_by_increase
|
|
611
607
|
| :not_authorized
|
|
608
|
+
| :valid_until_date_passed
|
|
612
609
|
| :unknown
|
|
613
610
|
|
|
614
611
|
module Reason
|
|
@@ -623,6 +620,9 @@ module Increase
|
|
|
623
620
|
# The check was not authorized.
|
|
624
621
|
NOT_AUTHORIZED: :not_authorized
|
|
625
622
|
|
|
623
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
624
|
+
VALID_UNTIL_DATE_PASSED: :valid_until_date_passed
|
|
625
|
+
|
|
626
626
|
# The check was stopped for another reason.
|
|
627
627
|
UNKNOWN: :unknown
|
|
628
628
|
|
|
@@ -119,10 +119,9 @@ module Increase
|
|
|
119
119
|
type in_ =
|
|
120
120
|
:pending_approval
|
|
121
121
|
| :canceled
|
|
122
|
-
| :
|
|
122
|
+
| :pending_submission
|
|
123
123
|
| :requires_attention
|
|
124
124
|
| :rejected
|
|
125
|
-
| :pending_submission
|
|
126
125
|
| :pending_mailing
|
|
127
126
|
| :mailed
|
|
128
127
|
| :deposited
|
|
@@ -138,8 +137,8 @@ module Increase
|
|
|
138
137
|
# The transfer has been canceled.
|
|
139
138
|
CANCELED: :canceled
|
|
140
139
|
|
|
141
|
-
# The transfer is pending
|
|
142
|
-
|
|
140
|
+
# The transfer is pending submission.
|
|
141
|
+
PENDING_SUBMISSION: :pending_submission
|
|
143
142
|
|
|
144
143
|
# The transfer requires attention from an Increase operator.
|
|
145
144
|
REQUIRES_ATTENTION: :requires_attention
|
|
@@ -147,9 +146,6 @@ module Increase
|
|
|
147
146
|
# The transfer has been rejected.
|
|
148
147
|
REJECTED: :rejected
|
|
149
148
|
|
|
150
|
-
# The transfer is pending submission.
|
|
151
|
-
PENDING_SUBMISSION: :pending_submission
|
|
152
|
-
|
|
153
149
|
# The check is queued for mailing.
|
|
154
150
|
PENDING_MAILING: :pending_mailing
|
|
155
151
|
|
|
@@ -24,7 +24,11 @@ module Increase
|
|
|
24
24
|
request_options: Increase::RequestOptions
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
type reason =
|
|
27
|
+
type reason =
|
|
28
|
+
:mail_delivery_failed
|
|
29
|
+
| :not_authorized
|
|
30
|
+
| :valid_until_date_passed
|
|
31
|
+
| :unknown
|
|
28
32
|
|
|
29
33
|
module Reason
|
|
30
34
|
extend Increase::Internal::Type::Enum
|
|
@@ -35,6 +39,9 @@ module Increase
|
|
|
35
39
|
# The check was not authorized.
|
|
36
40
|
NOT_AUTHORIZED: :not_authorized
|
|
37
41
|
|
|
42
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
43
|
+
VALID_UNTIL_DATE_PASSED: :valid_until_date_passed
|
|
44
|
+
|
|
38
45
|
# The check was stopped for another reason.
|
|
39
46
|
UNKNOWN: :unknown
|
|
40
47
|
|
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.139.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-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|