increase 1.266.0 → 1.267.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: 2004aa8a5a6a522e42aaaf06ff7e15006af3bbc40d79c449a899430ea278c9f5
4
- data.tar.gz: 17da2c665efc77645a3b6824239d551f1f00bf74d2be89a54a43f554d9526cd2
3
+ metadata.gz: 71a846fd3523676d2f98394288fb462c2ad7f2502cdc63fec5fab29f9ea8f44b
4
+ data.tar.gz: 84cb49a1e1a38b6a7b301af7c1f8e82c3ad928b5cfe8acd724d7cdb0925fd7be
5
5
  SHA512:
6
- metadata.gz: 4e7fdc7f3b1b17c3f461228a621b78782d15819d06c41db7db0f7b11c4c0674ab6b36b91deb975c3cca05ec0e551a75eaa8cc58028e936c60e51d0ffadbfc5b5
7
- data.tar.gz: e744612f5db09add446c9b62f3fea7c37585c8f7484f1d328ee3391b59ec3cb96180eeb33d6611eaef5248332278cbbfb361934d59fe32aac6bfdc473fe609f0
6
+ metadata.gz: a52a2a965e86259a3037a21b60e331afc2b6020fe71014703593c7137aece0e97c0e74b25c2890cf44b5f1ac37e95cb3289e4105f644811b2406ef9e557fbb5d
7
+ data.tar.gz: dcd20582bec10a981c6acfe9214f1ce2f416f35b669070ac29f3b9270a14d47e88333e0baa6110d098ecd58c47cd7873c18a428b6552bff52821c3705f3255c6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.267.0 (2026-03-24)
4
+
5
+ Full Changelog: [v1.266.0...v1.267.0](https://github.com/Increase/increase-ruby/compare/v1.266.0...v1.267.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([dbb0581](https://github.com/Increase/increase-ruby/commit/dbb05810285983b2d54ed9b1d36997f94201c860))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **ci:** skip lint on metadata-only changes ([f5f9efb](https://github.com/Increase/increase-ruby/commit/f5f9efbce8a00b9299b41a5bf91ff7efe25f6ca6))
15
+ * **tests:** bump steady to v0.19.7 ([a6a3a7a](https://github.com/Increase/increase-ruby/commit/a6a3a7a3d2d749f2a46ec24e4cec958230392930))
16
+
3
17
  ## 1.266.0 (2026-03-23)
4
18
 
5
19
  Full Changelog: [v1.265.0...v1.266.0](https://github.com/Increase/increase-ruby/compare/v1.265.0...v1.266.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.266.0"
18
+ gem "increase", "~> 1.267.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -1117,7 +1117,7 @@ module Increase
1117
1117
  class Passport < Increase::Internal::Type::BaseModel
1118
1118
  # @!attribute country
1119
1119
  # The two-character ISO 3166-1 code representing the country that issued the
1120
- # passport (e.g., `US`).
1120
+ # document (e.g., `US`).
1121
1121
  #
1122
1122
  # @return [String]
1123
1123
  required :country, String
@@ -1142,7 +1142,7 @@ module Increase
1142
1142
  # Information about the passport used for identification. Required if `method` is
1143
1143
  # equal to `passport`.
1144
1144
  #
1145
- # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
1145
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
1146
1146
  #
1147
1147
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
1148
1148
  #
@@ -1434,7 +1434,7 @@ module Increase
1434
1434
  class Passport < Increase::Internal::Type::BaseModel
1435
1435
  # @!attribute country
1436
1436
  # The two-character ISO 3166-1 code representing the country that issued the
1437
- # passport (e.g., `US`).
1437
+ # document (e.g., `US`).
1438
1438
  #
1439
1439
  # @return [String]
1440
1440
  required :country, String
@@ -1459,7 +1459,7 @@ module Increase
1459
1459
  # Information about the passport used for identification. Required if `method` is
1460
1460
  # equal to `passport`.
1461
1461
  #
1462
- # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
1462
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
1463
1463
  #
1464
1464
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
1465
1465
  #
@@ -2069,7 +2069,7 @@ module Increase
2069
2069
  class Passport < Increase::Internal::Type::BaseModel
2070
2070
  # @!attribute country
2071
2071
  # The two-character ISO 3166-1 code representing the country that issued the
2072
- # passport (e.g., `US`).
2072
+ # document (e.g., `US`).
2073
2073
  #
2074
2074
  # @return [String]
2075
2075
  required :country, String
@@ -2094,7 +2094,7 @@ module Increase
2094
2094
  # Information about the passport used for identification. Required if `method` is
2095
2095
  # equal to `passport`.
2096
2096
  #
2097
- # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
2097
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
2098
2098
  #
2099
2099
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
2100
2100
  #
@@ -2385,7 +2385,7 @@ module Increase
2385
2385
  class Passport < Increase::Internal::Type::BaseModel
2386
2386
  # @!attribute country
2387
2387
  # The two-character ISO 3166-1 code representing the country that issued the
2388
- # passport (e.g., `US`).
2388
+ # document (e.g., `US`).
2389
2389
  #
2390
2390
  # @return [String]
2391
2391
  required :country, String
@@ -2410,7 +2410,7 @@ module Increase
2410
2410
  # Information about the passport used for identification. Required if `method` is
2411
2411
  # equal to `passport`.
2412
2412
  #
2413
- # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp
2413
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
2414
2414
  #
2415
2415
  # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
2416
2416
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.266.0"
4
+ VERSION = "1.267.0"
5
5
  end
@@ -2089,7 +2089,7 @@ module Increase
2089
2089
  end
2090
2090
 
2091
2091
  # The two-character ISO 3166-1 code representing the country that issued the
2092
- # passport (e.g., `US`).
2092
+ # document (e.g., `US`).
2093
2093
  sig { returns(String) }
2094
2094
  attr_accessor :country
2095
2095
 
@@ -2112,7 +2112,7 @@ module Increase
2112
2112
  end
2113
2113
  def self.new(
2114
2114
  # The two-character ISO 3166-1 code representing the country that issued the
2115
- # passport (e.g., `US`).
2115
+ # document (e.g., `US`).
2116
2116
  country:,
2117
2117
  # The passport's expiration date in YYYY-MM-DD format.
2118
2118
  expiration_date:,
@@ -2650,7 +2650,7 @@ module Increase
2650
2650
  end
2651
2651
 
2652
2652
  # The two-character ISO 3166-1 code representing the country that issued the
2653
- # passport (e.g., `US`).
2653
+ # document (e.g., `US`).
2654
2654
  sig { returns(String) }
2655
2655
  attr_accessor :country
2656
2656
 
@@ -2673,7 +2673,7 @@ module Increase
2673
2673
  end
2674
2674
  def self.new(
2675
2675
  # The two-character ISO 3166-1 code representing the country that issued the
2676
- # passport (e.g., `US`).
2676
+ # document (e.g., `US`).
2677
2677
  country:,
2678
2678
  # The passport's expiration date in YYYY-MM-DD format.
2679
2679
  expiration_date:,
@@ -3823,7 +3823,7 @@ module Increase
3823
3823
  end
3824
3824
 
3825
3825
  # The two-character ISO 3166-1 code representing the country that issued the
3826
- # passport (e.g., `US`).
3826
+ # document (e.g., `US`).
3827
3827
  sig { returns(String) }
3828
3828
  attr_accessor :country
3829
3829
 
@@ -3846,7 +3846,7 @@ module Increase
3846
3846
  end
3847
3847
  def self.new(
3848
3848
  # The two-character ISO 3166-1 code representing the country that issued the
3849
- # passport (e.g., `US`).
3849
+ # document (e.g., `US`).
3850
3850
  country:,
3851
3851
  # The passport's expiration date in YYYY-MM-DD format.
3852
3852
  expiration_date:,
@@ -4383,7 +4383,7 @@ module Increase
4383
4383
  end
4384
4384
 
4385
4385
  # The two-character ISO 3166-1 code representing the country that issued the
4386
- # passport (e.g., `US`).
4386
+ # document (e.g., `US`).
4387
4387
  sig { returns(String) }
4388
4388
  attr_accessor :country
4389
4389
 
@@ -4406,7 +4406,7 @@ module Increase
4406
4406
  end
4407
4407
  def self.new(
4408
4408
  # The two-character ISO 3166-1 code representing the country that issued the
4409
- # passport (e.g., `US`).
4409
+ # document (e.g., `US`).
4410
4410
  country:,
4411
4411
  # The passport's expiration date in YYYY-MM-DD format.
4412
4412
  expiration_date:,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.266.0
4
+ version: 1.267.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-23 00:00:00.000000000 Z
11
+ date: 2026-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi