increase 1.136.0 → 1.138.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 +11 -4
- data/lib/increase/models/check_transfer_create_params.rb +3 -2
- data/lib/increase/models/check_transfer_list_params.rb +5 -2
- 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 +23 -7
- data/rbi/increase/models/check_transfer_create_params.rbi +6 -4
- data/rbi/increase/models/check_transfer_list_params.rbi +10 -3
- 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 +11 -3
- data/sig/increase/models/check_transfer_list_params.rbs +7 -3
- data/sig/increase/models/check_transfer_stop_payment_params.rbs +8 -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: d81e222cf27a849b4803323e0d177201f18996f1090892467f2913bdc7ca6bc5
|
|
4
|
+
data.tar.gz: d77e6419d94d8c17448c4b4bae76cff0dbbb9f0c8c77d8574390fa4d9081d87f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f83947d86e61d55cad216dd07a1e17f59a3bcf1f903f800335ce01c8719b61d5b19f406ae84c8324304a67c85c690892fcb98e1b1951fe59eb2664dd276b89ed
|
|
7
|
+
data.tar.gz: 359fb04f178520ae41393336b6104a5288db9b13cb22c08a9a77a7630c3beda7b3d200341aa6b47ca7741ff602526e3d17729ef8e959f12606313bedff5c93d4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.138.0 (2025-11-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.137.0...v1.138.0](https://github.com/Increase/increase-ruby/compare/v1.137.0...v1.138.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([66a5d25](https://github.com/Increase/increase-ruby/commit/66a5d25821ad616a45401f2cddd0fac13b89b091))
|
|
10
|
+
|
|
11
|
+
## 1.137.0 (2025-11-07)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.136.0...v1.137.0](https://github.com/Increase/increase-ruby/compare/v1.136.0...v1.137.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([8330df2](https://github.com/Increase/increase-ruby/commit/8330df29012e8f52ab048144dc1005ae35406dde))
|
|
18
|
+
|
|
3
19
|
## 1.136.0 (2025-11-07)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.135.0...v1.136.0](https://github.com/Increase/increase-ruby/compare/v1.135.0...v1.136.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 review.
|
|
769
|
+
PENDING_REVIEWING = :pending_reviewing
|
|
769
770
|
|
|
770
771
|
# The transfer requires attention from an Increase operator.
|
|
771
772
|
REQUIRES_ATTENTION = :requires_attention
|
|
@@ -773,6 +774,9 @@ module Increase
|
|
|
773
774
|
# The transfer has been rejected.
|
|
774
775
|
REJECTED = :rejected
|
|
775
776
|
|
|
777
|
+
# The transfer is pending submission.
|
|
778
|
+
PENDING_SUBMISSION = :pending_submission
|
|
779
|
+
|
|
776
780
|
# The check is queued for mailing.
|
|
777
781
|
PENDING_MAILING = :pending_mailing
|
|
778
782
|
|
|
@@ -849,6 +853,9 @@ module Increase
|
|
|
849
853
|
# The check was not authorized.
|
|
850
854
|
NOT_AUTHORIZED = :not_authorized
|
|
851
855
|
|
|
856
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
857
|
+
VALID_UNTIL_DATE_PASSED = :valid_until_date_passed
|
|
858
|
+
|
|
852
859
|
# The check was stopped for another reason.
|
|
853
860
|
UNKNOWN = :unknown
|
|
854
861
|
|
|
@@ -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 review.
|
|
137
|
+
PENDING_REVIEWING = :pending_reviewing
|
|
138
138
|
|
|
139
139
|
# The transfer requires attention from an Increase operator.
|
|
140
140
|
REQUIRES_ATTENTION = :requires_attention
|
|
@@ -142,6 +142,9 @@ 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
|
+
|
|
145
148
|
# The check is queued for mailing.
|
|
146
149
|
PENDING_MAILING = :pending_mailing
|
|
147
150
|
|
|
@@ -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 review.
|
|
1286
|
+
PENDING_REVIEWING =
|
|
1285
1287
|
T.let(
|
|
1286
|
-
:
|
|
1288
|
+
:pending_reviewing,
|
|
1287
1289
|
Increase::CheckTransfer::Status::TaggedSymbol
|
|
1288
1290
|
)
|
|
1289
1291
|
|
|
@@ -1298,6 +1300,13 @@ module Increase
|
|
|
1298
1300
|
REJECTED =
|
|
1299
1301
|
T.let(:rejected, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
1300
1302
|
|
|
1303
|
+
# The transfer is pending submission.
|
|
1304
|
+
PENDING_SUBMISSION =
|
|
1305
|
+
T.let(
|
|
1306
|
+
:pending_submission,
|
|
1307
|
+
Increase::CheckTransfer::Status::TaggedSymbol
|
|
1308
|
+
)
|
|
1309
|
+
|
|
1301
1310
|
# The check is queued for mailing.
|
|
1302
1311
|
PENDING_MAILING =
|
|
1303
1312
|
T.let(:pending_mailing, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
@@ -1429,6 +1438,13 @@ module Increase
|
|
|
1429
1438
|
Increase::CheckTransfer::StopPaymentRequest::Reason::TaggedSymbol
|
|
1430
1439
|
)
|
|
1431
1440
|
|
|
1441
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
1442
|
+
VALID_UNTIL_DATE_PASSED =
|
|
1443
|
+
T.let(
|
|
1444
|
+
:valid_until_date_passed,
|
|
1445
|
+
Increase::CheckTransfer::StopPaymentRequest::Reason::TaggedSymbol
|
|
1446
|
+
)
|
|
1447
|
+
|
|
1432
1448
|
# The check was stopped for another reason.
|
|
1433
1449
|
UNKNOWN =
|
|
1434
1450
|
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 review.
|
|
264
|
+
PENDING_REVIEWING =
|
|
265
265
|
T.let(
|
|
266
|
-
:
|
|
266
|
+
:pending_reviewing,
|
|
267
267
|
Increase::CheckTransferListParams::Status::In::TaggedSymbol
|
|
268
268
|
)
|
|
269
269
|
|
|
@@ -281,6 +281,13 @@ 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
|
+
|
|
284
291
|
# The check is queued for mailing.
|
|
285
292
|
PENDING_MAILING =
|
|
286
293
|
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,9 +525,10 @@ module Increase
|
|
|
525
525
|
type status =
|
|
526
526
|
:pending_approval
|
|
527
527
|
| :canceled
|
|
528
|
-
| :
|
|
528
|
+
| :pending_reviewing
|
|
529
529
|
| :requires_attention
|
|
530
530
|
| :rejected
|
|
531
|
+
| :pending_submission
|
|
531
532
|
| :pending_mailing
|
|
532
533
|
| :mailed
|
|
533
534
|
| :deposited
|
|
@@ -543,8 +544,8 @@ module Increase
|
|
|
543
544
|
# The transfer has been canceled.
|
|
544
545
|
CANCELED: :canceled
|
|
545
546
|
|
|
546
|
-
# The transfer is pending
|
|
547
|
-
|
|
547
|
+
# The transfer is pending review.
|
|
548
|
+
PENDING_REVIEWING: :pending_reviewing
|
|
548
549
|
|
|
549
550
|
# The transfer requires attention from an Increase operator.
|
|
550
551
|
REQUIRES_ATTENTION: :requires_attention
|
|
@@ -552,6 +553,9 @@ module Increase
|
|
|
552
553
|
# The transfer has been rejected.
|
|
553
554
|
REJECTED: :rejected
|
|
554
555
|
|
|
556
|
+
# The transfer is pending submission.
|
|
557
|
+
PENDING_SUBMISSION: :pending_submission
|
|
558
|
+
|
|
555
559
|
# The check is queued for mailing.
|
|
556
560
|
PENDING_MAILING: :pending_mailing
|
|
557
561
|
|
|
@@ -605,6 +609,7 @@ module Increase
|
|
|
605
609
|
:mail_delivery_failed
|
|
606
610
|
| :rejected_by_increase
|
|
607
611
|
| :not_authorized
|
|
612
|
+
| :valid_until_date_passed
|
|
608
613
|
| :unknown
|
|
609
614
|
|
|
610
615
|
module Reason
|
|
@@ -619,6 +624,9 @@ module Increase
|
|
|
619
624
|
# The check was not authorized.
|
|
620
625
|
NOT_AUTHORIZED: :not_authorized
|
|
621
626
|
|
|
627
|
+
# The check was stopped for `valid_until_date` being in the past.
|
|
628
|
+
VALID_UNTIL_DATE_PASSED: :valid_until_date_passed
|
|
629
|
+
|
|
622
630
|
# The check was stopped for another reason.
|
|
623
631
|
UNKNOWN: :unknown
|
|
624
632
|
|
|
@@ -119,9 +119,10 @@ module Increase
|
|
|
119
119
|
type in_ =
|
|
120
120
|
:pending_approval
|
|
121
121
|
| :canceled
|
|
122
|
-
| :
|
|
122
|
+
| :pending_reviewing
|
|
123
123
|
| :requires_attention
|
|
124
124
|
| :rejected
|
|
125
|
+
| :pending_submission
|
|
125
126
|
| :pending_mailing
|
|
126
127
|
| :mailed
|
|
127
128
|
| :deposited
|
|
@@ -137,8 +138,8 @@ module Increase
|
|
|
137
138
|
# The transfer has been canceled.
|
|
138
139
|
CANCELED: :canceled
|
|
139
140
|
|
|
140
|
-
# The transfer is pending
|
|
141
|
-
|
|
141
|
+
# The transfer is pending review.
|
|
142
|
+
PENDING_REVIEWING: :pending_reviewing
|
|
142
143
|
|
|
143
144
|
# The transfer requires attention from an Increase operator.
|
|
144
145
|
REQUIRES_ATTENTION: :requires_attention
|
|
@@ -146,6 +147,9 @@ module Increase
|
|
|
146
147
|
# The transfer has been rejected.
|
|
147
148
|
REJECTED: :rejected
|
|
148
149
|
|
|
150
|
+
# The transfer is pending submission.
|
|
151
|
+
PENDING_SUBMISSION: :pending_submission
|
|
152
|
+
|
|
149
153
|
# The check is queued for mailing.
|
|
150
154
|
PENDING_MAILING: :pending_mailing
|
|
151
155
|
|
|
@@ -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
|
|