increase 1.266.0 → 1.268.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: be9aec778181cc9c83ff0a0063796671084f184985092060bde4729ed1bcc9e1
4
+ data.tar.gz: b8158da91e965fc0e32370c1e84b150746520a0d2cf02ecebc8b4088ba2d525e
5
5
  SHA512:
6
- metadata.gz: 4e7fdc7f3b1b17c3f461228a621b78782d15819d06c41db7db0f7b11c4c0674ab6b36b91deb975c3cca05ec0e551a75eaa8cc58028e936c60e51d0ffadbfc5b5
7
- data.tar.gz: e744612f5db09add446c9b62f3fea7c37585c8f7484f1d328ee3391b59ec3cb96180eeb33d6611eaef5248332278cbbfb361934d59fe32aac6bfdc473fe609f0
6
+ metadata.gz: 9bac3761e3aee222047f60de694c83ec3132faa69c02af576575458d79dbb5172249190d7e86057602cfe2c8084c530998cbeb46ab4555724dcbf190be61bc86
7
+ data.tar.gz: e1d7221607ff10c63250d915eb068e80c768c65c45a2128b0c2b142d2c2bf9f84724918f35f534802bbc44825f3006085be9860aa641e073f13a7ea8a37039bb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.268.0 (2026-03-24)
4
+
5
+ Full Changelog: [v1.267.0...v1.268.0](https://github.com/Increase/increase-ruby/compare/v1.267.0...v1.268.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([b63d832](https://github.com/Increase/increase-ruby/commit/b63d83233aa99cdd3f1415a2d375fe927e8a5f7e))
10
+
11
+ ## 1.267.0 (2026-03-24)
12
+
13
+ Full Changelog: [v1.266.0...v1.267.0](https://github.com/Increase/increase-ruby/compare/v1.266.0...v1.267.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([dbb0581](https://github.com/Increase/increase-ruby/commit/dbb05810285983b2d54ed9b1d36997f94201c860))
18
+
19
+
20
+ ### Chores
21
+
22
+ * **ci:** skip lint on metadata-only changes ([f5f9efb](https://github.com/Increase/increase-ruby/commit/f5f9efbce8a00b9299b41a5bf91ff7efe25f6ca6))
23
+ * **tests:** bump steady to v0.19.7 ([a6a3a7a](https://github.com/Increase/increase-ruby/commit/a6a3a7a3d2d749f2a46ec24e4cec958230392930))
24
+
3
25
  ## 1.266.0 (2026-03-23)
4
26
 
5
27
  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.268.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
  #
@@ -45,16 +45,6 @@ module Increase
45
45
  # @return [String, nil]
46
46
  optional :debtor_name, String
47
47
 
48
- # @!attribute destination_account_number
49
- #
50
- # @return [String, nil]
51
- optional :destination_account_number, String
52
-
53
- # @!attribute destination_routing_number
54
- #
55
- # @return [String, nil]
56
- optional :destination_routing_number, String
57
-
58
48
  # @!attribute external_account_id
59
49
  # The ID of an External Account to initiate a transfer to. If this parameter is
60
50
  # provided, `account_number` and `routing_number` must be absent.
@@ -89,7 +79,7 @@ module Increase
89
79
  # @return [String, nil]
90
80
  optional :ultimate_debtor_name, String
91
81
 
92
- # @!method initialize(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, destination_account_number: nil, destination_routing_number: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
82
+ # @!method initialize(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
93
83
  # Some parameter documentations has been truncated, see
94
84
  # {Increase::Models::RealTimePaymentsTransferCreateParams} for more details.
95
85
  #
@@ -105,10 +95,6 @@ module Increase
105
95
  #
106
96
  # @param debtor_name [String] The name of the transfer's sender. If not provided, defaults to the name of the
107
97
  #
108
- # @param destination_account_number [String]
109
- #
110
- # @param destination_routing_number [String]
111
- #
112
98
  # @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
113
99
  #
114
100
  # @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
@@ -8,7 +8,7 @@ module Increase
8
8
  #
9
9
  # Create a Real-Time Payments Transfer
10
10
  #
11
- # @overload create(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, destination_account_number: nil, destination_routing_number: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
11
+ # @overload create(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
12
12
  #
13
13
  # @param amount [Integer] The transfer amount in USD cents. For Real-Time Payments transfers, must be posi
14
14
  #
@@ -22,10 +22,6 @@ module Increase
22
22
  #
23
23
  # @param debtor_name [String] The name of the transfer's sender. If not provided, defaults to the name of the
24
24
  #
25
- # @param destination_account_number [String]
26
- #
27
- # @param destination_routing_number [String]
28
- #
29
25
  # @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
30
26
  #
31
27
  # @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.266.0"
4
+ VERSION = "1.268.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:,
@@ -46,18 +46,6 @@ module Increase
46
46
  sig { params(debtor_name: String).void }
47
47
  attr_writer :debtor_name
48
48
 
49
- sig { returns(T.nilable(String)) }
50
- attr_reader :destination_account_number
51
-
52
- sig { params(destination_account_number: String).void }
53
- attr_writer :destination_account_number
54
-
55
- sig { returns(T.nilable(String)) }
56
- attr_reader :destination_routing_number
57
-
58
- sig { params(destination_routing_number: String).void }
59
- attr_writer :destination_routing_number
60
-
61
49
  # The ID of an External Account to initiate a transfer to. If this parameter is
62
50
  # provided, `account_number` and `routing_number` must be absent.
63
51
  sig { returns(T.nilable(String)) }
@@ -105,8 +93,6 @@ module Increase
105
93
  unstructured_remittance_information: String,
106
94
  account_number: String,
107
95
  debtor_name: String,
108
- destination_account_number: String,
109
- destination_routing_number: String,
110
96
  external_account_id: String,
111
97
  require_approval: T::Boolean,
112
98
  routing_number: String,
@@ -130,8 +116,6 @@ module Increase
130
116
  # The name of the transfer's sender. If not provided, defaults to the name of the
131
117
  # account's entity.
132
118
  debtor_name: nil,
133
- destination_account_number: nil,
134
- destination_routing_number: nil,
135
119
  # The ID of an External Account to initiate a transfer to. If this parameter is
136
120
  # provided, `account_number` and `routing_number` must be absent.
137
121
  external_account_id: nil,
@@ -159,8 +143,6 @@ module Increase
159
143
  unstructured_remittance_information: String,
160
144
  account_number: String,
161
145
  debtor_name: String,
162
- destination_account_number: String,
163
- destination_routing_number: String,
164
146
  external_account_id: String,
165
147
  require_approval: T::Boolean,
166
148
  routing_number: String,
@@ -12,8 +12,6 @@ module Increase
12
12
  unstructured_remittance_information: String,
13
13
  account_number: String,
14
14
  debtor_name: String,
15
- destination_account_number: String,
16
- destination_routing_number: String,
17
15
  external_account_id: String,
18
16
  require_approval: T::Boolean,
19
17
  routing_number: String,
@@ -37,8 +35,6 @@ module Increase
37
35
  # The name of the transfer's sender. If not provided, defaults to the name of the
38
36
  # account's entity.
39
37
  debtor_name: nil,
40
- destination_account_number: nil,
41
- destination_routing_number: nil,
42
38
  # The ID of an External Account to initiate a transfer to. If this parameter is
43
39
  # provided, `account_number` and `routing_number` must be absent.
44
40
  external_account_id: nil,
@@ -8,8 +8,6 @@ module Increase
8
8
  unstructured_remittance_information: String,
9
9
  account_number: String,
10
10
  debtor_name: String,
11
- destination_account_number: String,
12
- destination_routing_number: String,
13
11
  external_account_id: String,
14
12
  require_approval: bool,
15
13
  routing_number: String,
@@ -38,14 +36,6 @@ module Increase
38
36
 
39
37
  def debtor_name=: (String) -> String
40
38
 
41
- attr_reader destination_account_number: String?
42
-
43
- def destination_account_number=: (String) -> String
44
-
45
- attr_reader destination_routing_number: String?
46
-
47
- def destination_routing_number=: (String) -> String
48
-
49
39
  attr_reader external_account_id: String?
50
40
 
51
41
  def external_account_id=: (String) -> String
@@ -73,8 +63,6 @@ module Increase
73
63
  unstructured_remittance_information: String,
74
64
  ?account_number: String,
75
65
  ?debtor_name: String,
76
- ?destination_account_number: String,
77
- ?destination_routing_number: String,
78
66
  ?external_account_id: String,
79
67
  ?require_approval: bool,
80
68
  ?routing_number: String,
@@ -90,8 +78,6 @@ module Increase
90
78
  unstructured_remittance_information: String,
91
79
  account_number: String,
92
80
  debtor_name: String,
93
- destination_account_number: String,
94
- destination_routing_number: String,
95
81
  external_account_id: String,
96
82
  require_approval: bool,
97
83
  routing_number: String,
@@ -8,8 +8,6 @@ module Increase
8
8
  unstructured_remittance_information: String,
9
9
  ?account_number: String,
10
10
  ?debtor_name: String,
11
- ?destination_account_number: String,
12
- ?destination_routing_number: String,
13
11
  ?external_account_id: String,
14
12
  ?require_approval: bool,
15
13
  ?routing_number: String,
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.268.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