increase 1.161.0 → 1.162.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 +3 -0
- data/lib/increase/models/physical_card.rb +3 -0
- data/lib/increase/models/simulations/physical_card_create_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +7 -0
- data/rbi/increase/models/physical_card.rbi +7 -0
- data/rbi/increase/models/simulations/physical_card_create_params.rbi +7 -0
- data/sig/increase/models/check_transfer.rbs +4 -0
- data/sig/increase/models/physical_card.rbs +4 -0
- data/sig/increase/models/simulations/physical_card_create_params.rbs +4 -0
- 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: 95a8747fa00f6f4934dc38e1a4a23a192cc319730c52f32816ec9a25306c5f73
|
|
4
|
+
data.tar.gz: e7e4d7388577b4098f2d1030803f9c2a73c4acc555cb0a628f42dc1d0be3f792
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d6ecaa1dafe96ea8367365bf9f0fadb6300f408a5a28408cd52621afc00d6cf822f61ea1c23e6192aaba37235c73ec17eec3b32dbf9d8f2e4773dffcec2026f
|
|
7
|
+
data.tar.gz: 73f2c6e2dae4a0cf0b6c28fc77f8d16ee2483c7c7d2d9e6c13c3a5c7e0795d8b98894d7b4c935d1b5dceb4e452e086eb49af05e1862027cc3a305fd942d11df8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.162.0 (2025-12-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.161.0...v1.162.0](https://github.com/Increase/increase-ruby/compare/v1.161.0...v1.162.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a8c7867](https://github.com/Increase/increase-ruby/commit/a8c7867005c29bc8b4da16f7ee57b22c3c4abde5))
|
|
10
|
+
|
|
3
11
|
## 1.161.0 (2025-12-15)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.160.0...v1.161.0](https://github.com/Increase/increase-ruby/compare/v1.160.0...v1.161.0)
|
data/README.md
CHANGED
|
@@ -778,6 +778,9 @@ module Increase
|
|
|
778
778
|
# The check has been delivered.
|
|
779
779
|
DELIVERED = :delivered
|
|
780
780
|
|
|
781
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the check will be returned to sender.
|
|
782
|
+
DELIVERY_ISSUE = :delivery_issue
|
|
783
|
+
|
|
781
784
|
# Delivery failed and the check was returned to sender.
|
|
782
785
|
RETURNED_TO_SENDER = :returned_to_sender
|
|
783
786
|
|
|
@@ -431,6 +431,9 @@ module Increase
|
|
|
431
431
|
# The physical card has been delivered.
|
|
432
432
|
DELIVERED = :delivered
|
|
433
433
|
|
|
434
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
435
|
+
DELIVERY_ISSUE = :delivery_issue
|
|
436
|
+
|
|
434
437
|
# Delivery failed and the physical card was returned to sender.
|
|
435
438
|
RETURNED_TO_SENDER = :returned_to_sender
|
|
436
439
|
|
|
@@ -68,6 +68,9 @@ module Increase
|
|
|
68
68
|
# The physical card has been delivered.
|
|
69
69
|
DELIVERED = :delivered
|
|
70
70
|
|
|
71
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
72
|
+
DELIVERY_ISSUE = :delivery_issue
|
|
73
|
+
|
|
71
74
|
# Delivery failed and the physical card was returned to sender.
|
|
72
75
|
RETURNED_TO_SENDER = :returned_to_sender
|
|
73
76
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -1271,6 +1271,13 @@ module Increase
|
|
|
1271
1271
|
Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol
|
|
1272
1272
|
)
|
|
1273
1273
|
|
|
1274
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the check will be returned to sender.
|
|
1275
|
+
DELIVERY_ISSUE =
|
|
1276
|
+
T.let(
|
|
1277
|
+
:delivery_issue,
|
|
1278
|
+
Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol
|
|
1279
|
+
)
|
|
1280
|
+
|
|
1274
1281
|
# Delivery failed and the check was returned to sender.
|
|
1275
1282
|
RETURNED_TO_SENDER =
|
|
1276
1283
|
T.let(
|
|
@@ -690,6 +690,13 @@ module Increase
|
|
|
690
690
|
Increase::PhysicalCard::Shipment::Tracking::Update::Category::TaggedSymbol
|
|
691
691
|
)
|
|
692
692
|
|
|
693
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
694
|
+
DELIVERY_ISSUE =
|
|
695
|
+
T.let(
|
|
696
|
+
:delivery_issue,
|
|
697
|
+
Increase::PhysicalCard::Shipment::Tracking::Update::Category::TaggedSymbol
|
|
698
|
+
)
|
|
699
|
+
|
|
693
700
|
# Delivery failed and the physical card was returned to sender.
|
|
694
701
|
RETURNED_TO_SENDER =
|
|
695
702
|
T.let(
|
|
@@ -129,6 +129,13 @@ module Increase
|
|
|
129
129
|
Increase::Simulations::PhysicalCardCreateParams::Category::TaggedSymbol
|
|
130
130
|
)
|
|
131
131
|
|
|
132
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
133
|
+
DELIVERY_ISSUE =
|
|
134
|
+
T.let(
|
|
135
|
+
:delivery_issue,
|
|
136
|
+
Increase::Simulations::PhysicalCardCreateParams::Category::TaggedSymbol
|
|
137
|
+
)
|
|
138
|
+
|
|
132
139
|
# Delivery failed and the physical card was returned to sender.
|
|
133
140
|
RETURNED_TO_SENDER =
|
|
134
141
|
T.let(
|
|
@@ -515,6 +515,7 @@ module Increase
|
|
|
515
515
|
:in_transit
|
|
516
516
|
| :processed_for_delivery
|
|
517
517
|
| :delivered
|
|
518
|
+
| :delivery_issue
|
|
518
519
|
| :returned_to_sender
|
|
519
520
|
|
|
520
521
|
module Category
|
|
@@ -529,6 +530,9 @@ module Increase
|
|
|
529
530
|
# The check has been delivered.
|
|
530
531
|
DELIVERED: :delivered
|
|
531
532
|
|
|
533
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the check will be returned to sender.
|
|
534
|
+
DELIVERY_ISSUE: :delivery_issue
|
|
535
|
+
|
|
532
536
|
# Delivery failed and the check was returned to sender.
|
|
533
537
|
RETURNED_TO_SENDER: :returned_to_sender
|
|
534
538
|
|
|
@@ -315,6 +315,7 @@ module Increase
|
|
|
315
315
|
:in_transit
|
|
316
316
|
| :processed_for_delivery
|
|
317
317
|
| :delivered
|
|
318
|
+
| :delivery_issue
|
|
318
319
|
| :returned_to_sender
|
|
319
320
|
|
|
320
321
|
module Category
|
|
@@ -329,6 +330,9 @@ module Increase
|
|
|
329
330
|
# The physical card has been delivered.
|
|
330
331
|
DELIVERED: :delivered
|
|
331
332
|
|
|
333
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
334
|
+
DELIVERY_ISSUE: :delivery_issue
|
|
335
|
+
|
|
332
336
|
# Delivery failed and the physical card was returned to sender.
|
|
333
337
|
RETURNED_TO_SENDER: :returned_to_sender
|
|
334
338
|
|
|
@@ -55,6 +55,7 @@ module Increase
|
|
|
55
55
|
:in_transit
|
|
56
56
|
| :processed_for_delivery
|
|
57
57
|
| :delivered
|
|
58
|
+
| :delivery_issue
|
|
58
59
|
| :returned_to_sender
|
|
59
60
|
|
|
60
61
|
module Category
|
|
@@ -69,6 +70,9 @@ module Increase
|
|
|
69
70
|
# The physical card has been delivered.
|
|
70
71
|
DELIVERED: :delivered
|
|
71
72
|
|
|
73
|
+
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
74
|
+
DELIVERY_ISSUE: :delivery_issue
|
|
75
|
+
|
|
72
76
|
# Delivery failed and the physical card was returned to sender.
|
|
73
77
|
RETURNED_TO_SENDER: :returned_to_sender
|
|
74
78
|
|