increase 1.136.0 → 1.137.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/check_transfer.rb +5 -2
- data/lib/increase/models/check_transfer_list_params.rb +5 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +10 -3
- data/rbi/increase/models/check_transfer_list_params.rbi +10 -3
- data/sig/increase/models/check_transfer.rbs +7 -3
- data/sig/increase/models/check_transfer_list_params.rbs +7 -3
- 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: 13d5442b3ee325632fd376c6c280f339c2e3e33e3c9eb7aa377d3b5d5a55b5ec
|
|
4
|
+
data.tar.gz: 925d795b19c13cd58f21fc0ddb3cfd44d866ee27a52c299152c06f72d6000722
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90d24e0daffac4fdf426c41efd0aef0fdc369e90524971da0d1627e1548472bce765274386283861bd4a3c9d9fb5733136b2218958a8feeae08a7bce97da57bd
|
|
7
|
+
data.tar.gz: b6ecaafc1bc8d6e60201949a360f7c40584b3f1f5474380745ef2cb5570bc7b5de9ff4d0f2a0a5d4bd99bf8315a8e85c74072b9a7b05f45a4ca6df33b557b565
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.137.0 (2025-11-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.136.0...v1.137.0](https://github.com/Increase/increase-ruby/compare/v1.136.0...v1.137.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([8330df2](https://github.com/Increase/increase-ruby/commit/8330df29012e8f52ab048144dc1005ae35406dde))
|
|
10
|
+
|
|
3
11
|
## 1.136.0 (2025-11-07)
|
|
4
12
|
|
|
5
13
|
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
|
@@ -764,8 +764,8 @@ module Increase
|
|
|
764
764
|
# The transfer has been canceled.
|
|
765
765
|
CANCELED = :canceled
|
|
766
766
|
|
|
767
|
-
# The transfer is pending
|
|
768
|
-
|
|
767
|
+
# The transfer is pending review.
|
|
768
|
+
PENDING_REVIEWING = :pending_reviewing
|
|
769
769
|
|
|
770
770
|
# The transfer requires attention from an Increase operator.
|
|
771
771
|
REQUIRES_ATTENTION = :requires_attention
|
|
@@ -773,6 +773,9 @@ module Increase
|
|
|
773
773
|
# The transfer has been rejected.
|
|
774
774
|
REJECTED = :rejected
|
|
775
775
|
|
|
776
|
+
# The transfer is pending submission.
|
|
777
|
+
PENDING_SUBMISSION = :pending_submission
|
|
778
|
+
|
|
776
779
|
# The check is queued for mailing.
|
|
777
780
|
PENDING_MAILING = :pending_mailing
|
|
778
781
|
|
|
@@ -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
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -1280,10 +1280,10 @@ module Increase
|
|
|
1280
1280
|
CANCELED =
|
|
1281
1281
|
T.let(:canceled, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
1282
1282
|
|
|
1283
|
-
# The transfer is pending
|
|
1284
|
-
|
|
1283
|
+
# The transfer is pending review.
|
|
1284
|
+
PENDING_REVIEWING =
|
|
1285
1285
|
T.let(
|
|
1286
|
-
:
|
|
1286
|
+
:pending_reviewing,
|
|
1287
1287
|
Increase::CheckTransfer::Status::TaggedSymbol
|
|
1288
1288
|
)
|
|
1289
1289
|
|
|
@@ -1298,6 +1298,13 @@ module Increase
|
|
|
1298
1298
|
REJECTED =
|
|
1299
1299
|
T.let(:rejected, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
1300
1300
|
|
|
1301
|
+
# The transfer is pending submission.
|
|
1302
|
+
PENDING_SUBMISSION =
|
|
1303
|
+
T.let(
|
|
1304
|
+
:pending_submission,
|
|
1305
|
+
Increase::CheckTransfer::Status::TaggedSymbol
|
|
1306
|
+
)
|
|
1307
|
+
|
|
1301
1308
|
# The check is queued for mailing.
|
|
1302
1309
|
PENDING_MAILING =
|
|
1303
1310
|
T.let(:pending_mailing, Increase::CheckTransfer::Status::TaggedSymbol)
|
|
@@ -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(
|
|
@@ -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
|
|
|
@@ -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
|
|