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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2df5db26b14da4e0451d17b1559fabde133a6939fd0edfeb23e293c2cd642db7
4
- data.tar.gz: '0548b5bbb7636f936be4203a20dcfc8e12bf6839fe5c85e4571c50574e00ceb7'
3
+ metadata.gz: 95a8747fa00f6f4934dc38e1a4a23a192cc319730c52f32816ec9a25306c5f73
4
+ data.tar.gz: e7e4d7388577b4098f2d1030803f9c2a73c4acc555cb0a628f42dc1d0be3f792
5
5
  SHA512:
6
- metadata.gz: a5146ea4ac1d46af76974ba72ee987c46926724b310043d6a35f336b243ed6361af545f105ae19daa414a955b8c183af4ae0d134d937acd0222a3544f1654d87
7
- data.tar.gz: 6e098fa35dde7b1fa943a7b738a8a859e9fd47d523a618f80ac2dc70672fe7948a29d4806481b7bf29d53f56e60d6f40fb1da6cabd5b8a2ef6e1cc99f22924a2
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
@@ -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.161.0"
18
+ gem "increase", "~> 1.162.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.161.0"
4
+ VERSION = "1.162.0"
5
5
  end
@@ -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
 
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.161.0
4
+ version: 1.162.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase