increase 1.299.0 → 1.300.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: 2dcbb97b65a4019fadfb9b93f1864578b83a476422bba47d35be25d2049e75d3
4
- data.tar.gz: 9f73650e5fcc2f30d40cce7c29cb2cb9edf93cc34cba87f3f9ef1f1f491845f4
3
+ metadata.gz: 7b49030dedb55b3eb3ef6963ddc079a101a65f3f9ea2a84ca78b2a957c76b6fb
4
+ data.tar.gz: c5761d9626c780531adbd1941d976ab1a327a663046f8f7f9c412ace041952f8
5
5
  SHA512:
6
- metadata.gz: 731d54c17187d9011501f03744e93339e38cd4ea99654365fc0189ab774a5a062387343b141ad074617f12b807fcde001ec42c740e9315693e5a7a64b3b7edd2
7
- data.tar.gz: 3baf0863dd51ffde40f0fea6b3befc39c55ccd14466819372d5ad874fce1cbf6797ab2360cd84b672126dea7b20a938cc6abc63278f6852fdeff38f4f51a95e8
6
+ metadata.gz: 733c1a56b3ae09e0a6a803d10edca57c1a8135b8872c7f8140df340f1f19c2f7fee3fbae6e87750f3255d4762a54d017700e99bb98f7404e1fd00347274bb6ad
7
+ data.tar.gz: 15be88c13613e9ae96f5a2d7b773f91f16c1b7d6abecd293eb15e7e83b3fe1245b2065c6c0cbb070e106b38f2b5f5d4d7661485a86413dc6c5cdfa902bc3dcdf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.300.0 (2026-04-17)
4
+
5
+ Full Changelog: [v1.299.0...v1.300.0](https://github.com/Increase/increase-ruby/compare/v1.299.0...v1.300.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a5aa6f4](https://github.com/Increase/increase-ruby/commit/a5aa6f4d78bfb82e9d9094dbf073584560a61c59))
10
+
3
11
  ## 1.299.0 (2026-04-17)
4
12
 
5
13
  Full Changelog: [v1.298.0...v1.299.0](https://github.com/Increase/increase-ruby/compare/v1.298.0...v1.299.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.299.0"
18
+ gem "increase", "~> 1.300.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -743,6 +743,12 @@ module Increase
743
743
  # @return [Symbol, Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::Category]
744
744
  required :category, enum: -> { Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category }
745
745
 
746
+ # @!attribute country
747
+ # The ISO 3166-1 alpha-2 country code for the country where the event took place.
748
+ #
749
+ # @return [String]
750
+ required :country, String
751
+
746
752
  # @!attribute created_at
747
753
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
748
754
  # the tracking event took place.
@@ -756,13 +762,15 @@ module Increase
756
762
  # @return [String]
757
763
  required :postal_code, String
758
764
 
759
- # @!method initialize(category:, created_at:, postal_code:)
765
+ # @!method initialize(category:, country:, created_at:, postal_code:)
760
766
  # Some parameter documentations has been truncated, see
761
767
  # {Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate} for more
762
768
  # details.
763
769
  #
764
770
  # @param category [Symbol, Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::Category] The type of tracking event.
765
771
  #
772
+ # @param country [String] The ISO 3166-1 alpha-2 country code for the country where the event took place.
773
+ #
766
774
  # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
767
775
  #
768
776
  # @param postal_code [String] The postal code where the event took place.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.299.0"
4
+ VERSION = "1.300.0"
5
5
  end
@@ -1215,6 +1215,10 @@ module Increase
1215
1215
  end
1216
1216
  attr_accessor :category
1217
1217
 
1218
+ # The ISO 3166-1 alpha-2 country code for the country where the event took place.
1219
+ sig { returns(String) }
1220
+ attr_accessor :country
1221
+
1218
1222
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
1219
1223
  # the tracking event took place.
1220
1224
  sig { returns(Time) }
@@ -1228,6 +1232,7 @@ module Increase
1228
1232
  params(
1229
1233
  category:
1230
1234
  Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::OrSymbol,
1235
+ country: String,
1231
1236
  created_at: Time,
1232
1237
  postal_code: String
1233
1238
  ).returns(T.attached_class)
@@ -1235,6 +1240,8 @@ module Increase
1235
1240
  def self.new(
1236
1241
  # The type of tracking event.
1237
1242
  category:,
1243
+ # The ISO 3166-1 alpha-2 country code for the country where the event took place.
1244
+ country:,
1238
1245
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
1239
1246
  # the tracking event took place.
1240
1247
  created_at:,
@@ -1248,6 +1255,7 @@ module Increase
1248
1255
  {
1249
1256
  category:
1250
1257
  Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol,
1258
+ country: String,
1251
1259
  created_at: Time,
1252
1260
  postal_code: String
1253
1261
  }
@@ -487,6 +487,7 @@ module Increase
487
487
  type tracking_update =
488
488
  {
489
489
  category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
490
+ country: String,
490
491
  created_at: Time,
491
492
  postal_code: String
492
493
  }
@@ -494,18 +495,22 @@ module Increase
494
495
  class TrackingUpdate < Increase::Internal::Type::BaseModel
495
496
  attr_accessor category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category
496
497
 
498
+ attr_accessor country: String
499
+
497
500
  attr_accessor created_at: Time
498
501
 
499
502
  attr_accessor postal_code: String
500
503
 
501
504
  def initialize: (
502
505
  category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
506
+ country: String,
503
507
  created_at: Time,
504
508
  postal_code: String
505
509
  ) -> void
506
510
 
507
511
  def to_hash: -> {
508
512
  category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
513
+ country: String,
509
514
  created_at: Time,
510
515
  postal_code: String
511
516
  }
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.299.0
4
+ version: 1.300.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase