increase 1.135.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 343e0ef659d401f13c1e064eae08b46dba7a568c3fb70db36ee062a48a409484
4
- data.tar.gz: 2ff213653543ff445cad3b007b8878b0cfa0a9862ee26ead78d591f2b58b24eb
3
+ metadata.gz: 13d5442b3ee325632fd376c6c280f339c2e3e33e3c9eb7aa377d3b5d5a55b5ec
4
+ data.tar.gz: 925d795b19c13cd58f21fc0ddb3cfd44d866ee27a52c299152c06f72d6000722
5
5
  SHA512:
6
- metadata.gz: d0a589163071e412372ab790c4e887733cc49d901af5aaf0b1a4b145336f0fe4dc22b3d3f423bfbbc3523f6d0ef52038daa5f6e0991ef4fe379a6116174b9b3f
7
- data.tar.gz: fa2a88828df7c99dde45d50c29586abff4566d6629388b60ba3716d2aa10e2bda5e50f8bf5b9c9c429f31135bfdd03a08b21d410e01b9fec022263e79bf2ee1c
6
+ metadata.gz: 90d24e0daffac4fdf426c41efd0aef0fdc369e90524971da0d1627e1548472bce765274386283861bd4a3c9d9fb5733136b2218958a8feeae08a7bce97da57bd
7
+ data.tar.gz: b6ecaafc1bc8d6e60201949a360f7c40584b3f1f5474380745ef2cb5570bc7b5de9ff4d0f2a0a5d4bd99bf8315a8e85c74072b9a7b05f45a4ca6df33b557b565
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 1.136.0 (2025-11-07)
12
+
13
+ Full Changelog: [v1.135.0...v1.136.0](https://github.com/Increase/increase-ruby/compare/v1.135.0...v1.136.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([188ad55](https://github.com/Increase/increase-ruby/commit/188ad55dd47fb860041fea9bc87e7ba74efade09))
18
+
3
19
  ## 1.135.0 (2025-11-07)
4
20
 
5
21
  Full Changelog: [v1.134.0...v1.135.0](https://github.com/Increase/increase-ruby/compare/v1.134.0...v1.135.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.135.0"
18
+ gem "increase", "~> 1.137.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -764,8 +764,8 @@ module Increase
764
764
  # The transfer has been canceled.
765
765
  CANCELED = :canceled
766
766
 
767
- # The transfer is pending submission.
768
- PENDING_SUBMISSION = :pending_submission
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 submission.
137
- PENDING_SUBMISSION = :pending_submission
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
 
@@ -122,7 +122,8 @@ module Increase
122
122
  )
123
123
  end
124
124
 
125
- # Cancel a pending Check Transfer
125
+ # Cancel a Check Transfer with the `pending_approval` status. See
126
+ # [Transfer Approvals](/documentation/transfer-approvals) for more information.
126
127
  #
127
128
  # @overload cancel(check_transfer_id, request_options: {})
128
129
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.135.0"
4
+ VERSION = "1.137.0"
5
5
  end
@@ -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 submission.
1284
- PENDING_SUBMISSION =
1283
+ # The transfer is pending review.
1284
+ PENDING_REVIEWING =
1285
1285
  T.let(
1286
- :pending_submission,
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 submission.
264
- PENDING_SUBMISSION =
263
+ # The transfer is pending review.
264
+ PENDING_REVIEWING =
265
265
  T.let(
266
- :pending_submission,
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(
@@ -116,7 +116,8 @@ module Increase
116
116
  )
117
117
  end
118
118
 
119
- # Cancel a pending Check Transfer
119
+ # Cancel a Check Transfer with the `pending_approval` status. See
120
+ # [Transfer Approvals](/documentation/transfer-approvals) for more information.
120
121
  sig do
121
122
  params(
122
123
  check_transfer_id: String,
@@ -525,9 +525,10 @@ module Increase
525
525
  type status =
526
526
  :pending_approval
527
527
  | :canceled
528
- | :pending_submission
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 submission.
547
- PENDING_SUBMISSION: :pending_submission
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
- | :pending_submission
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 submission.
141
- PENDING_SUBMISSION: :pending_submission
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.135.0
4
+ version: 1.137.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase