increase 1.268.0 → 1.269.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: be9aec778181cc9c83ff0a0063796671084f184985092060bde4729ed1bcc9e1
4
- data.tar.gz: b8158da91e965fc0e32370c1e84b150746520a0d2cf02ecebc8b4088ba2d525e
3
+ metadata.gz: 8971f61ddc00be46dc4ff23cb3bf23ef2d0beb890b904d85852f376f59f91a5d
4
+ data.tar.gz: bb219a8985374faf4614e5dd50000d6e19ea258615223b7258cbcd81efa56f97
5
5
  SHA512:
6
- metadata.gz: 9bac3761e3aee222047f60de694c83ec3132faa69c02af576575458d79dbb5172249190d7e86057602cfe2c8084c530998cbeb46ab4555724dcbf190be61bc86
7
- data.tar.gz: e1d7221607ff10c63250d915eb068e80c768c65c45a2128b0c2b142d2c2bf9f84724918f35f534802bbc44825f3006085be9860aa641e073f13a7ea8a37039bb
6
+ metadata.gz: bdba3f753711504b7d8dbc0fd4a9c898cf14ba2bd2d90ba8ffe06720c8bdfb94c72d566e1b474cf75a8a1e5efb5c5ceca4776115cf1ba1c0c5dbc22f1b0fb346
7
+ data.tar.gz: 8c945366cc4573c3903f9e93fd65b8b89546bb196aa4f77c22572ded8ddb64f90a6d18ebfa4e9438dc88768609deb37a922010ff14edee4895eac84145d926de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.269.0 (2026-03-24)
4
+
5
+ Full Changelog: [v1.268.0...v1.269.0](https://github.com/Increase/increase-ruby/compare/v1.268.0...v1.269.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a2fef35](https://github.com/Increase/increase-ruby/commit/a2fef35b582e081732a3b8e100d4b8a35ce460d6))
10
+
3
11
  ## 1.268.0 (2026-03-24)
4
12
 
5
13
  Full Changelog: [v1.267.0...v1.268.0](https://github.com/Increase/increase-ruby/compare/v1.267.0...v1.268.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.268.0"
18
+ gem "increase", "~> 1.269.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -115,13 +115,53 @@ module Increase
115
115
  # @return [String]
116
116
  required :source_account_number_id, String
117
117
 
118
+ # @!attribute merchant_legal_business_name
119
+ # The legal business name of the merchant (generally your business) sending the
120
+ # transfer. Required if the card is issued in Canada.
121
+ #
122
+ # @return [String, nil]
123
+ optional :merchant_legal_business_name, String
124
+
125
+ # @!attribute merchant_street_address
126
+ # The street address of the merchant (generally your business) sending the
127
+ # transfer. Required if the card is issued in Canada.
128
+ #
129
+ # @return [String, nil]
130
+ optional :merchant_street_address, String
131
+
132
+ # @!attribute recipient_address_city
133
+ # The city of the recipient. Required if the card is issued in Canada.
134
+ #
135
+ # @return [String, nil]
136
+ optional :recipient_address_city, String
137
+
138
+ # @!attribute recipient_address_line1
139
+ # The first line of the recipient's address. Required if the card is issued in
140
+ # Canada.
141
+ #
142
+ # @return [String, nil]
143
+ optional :recipient_address_line1, String
144
+
145
+ # @!attribute recipient_address_postal_code
146
+ # The postal code of the recipient. Required if the card is issued in Canada.
147
+ #
148
+ # @return [String, nil]
149
+ optional :recipient_address_postal_code, String
150
+
151
+ # @!attribute recipient_address_state
152
+ # The state or province of the recipient. Required if the card is issued in
153
+ # Canada.
154
+ #
155
+ # @return [String, nil]
156
+ optional :recipient_address_state, String
157
+
118
158
  # @!attribute require_approval
119
159
  # Whether the transfer requires explicit approval via the dashboard or API.
120
160
  #
121
161
  # @return [Boolean, nil]
122
162
  optional :require_approval, Increase::Internal::Type::Boolean
123
163
 
124
- # @!method initialize(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, require_approval: nil, request_options: {})
164
+ # @!method initialize(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, merchant_legal_business_name: nil, merchant_street_address: nil, recipient_address_city: nil, recipient_address_line1: nil, recipient_address_postal_code: nil, recipient_address_state: nil, require_approval: nil, request_options: {})
125
165
  # Some parameter documentations has been truncated, see
126
166
  # {Increase::Models::CardPushTransferCreateParams} for more details.
127
167
  #
@@ -157,6 +197,18 @@ module Increase
157
197
  #
158
198
  # @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer.
159
199
  #
200
+ # @param merchant_legal_business_name [String] The legal business name of the merchant (generally your business) sending the tr
201
+ #
202
+ # @param merchant_street_address [String] The street address of the merchant (generally your business) sending the transfe
203
+ #
204
+ # @param recipient_address_city [String] The city of the recipient. Required if the card is issued in Canada.
205
+ #
206
+ # @param recipient_address_line1 [String] The first line of the recipient's address. Required if the card is issued in Can
207
+ #
208
+ # @param recipient_address_postal_code [String] The postal code of the recipient. Required if the card is issued in Canada.
209
+ #
210
+ # @param recipient_address_state [String] The state or province of the recipient. Required if the card is issued in Canada
211
+ #
160
212
  # @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
161
213
  #
162
214
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
@@ -8,7 +8,7 @@ module Increase
8
8
  #
9
9
  # Create a Card Push Transfer
10
10
  #
11
- # @overload create(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, require_approval: nil, request_options: {})
11
+ # @overload create(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, merchant_legal_business_name: nil, merchant_street_address: nil, recipient_address_city: nil, recipient_address_line1: nil, recipient_address_postal_code: nil, recipient_address_state: nil, require_approval: nil, request_options: {})
12
12
  #
13
13
  # @param business_application_identifier [Symbol, Increase::Models::CardPushTransferCreateParams::BusinessApplicationIdentifier] The Business Application Identifier describes the type of transaction being perf
14
14
  #
@@ -42,6 +42,18 @@ module Increase
42
42
  #
43
43
  # @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer.
44
44
  #
45
+ # @param merchant_legal_business_name [String] The legal business name of the merchant (generally your business) sending the tr
46
+ #
47
+ # @param merchant_street_address [String] The street address of the merchant (generally your business) sending the transfe
48
+ #
49
+ # @param recipient_address_city [String] The city of the recipient. Required if the card is issued in Canada.
50
+ #
51
+ # @param recipient_address_line1 [String] The first line of the recipient's address. Required if the card is issued in Can
52
+ #
53
+ # @param recipient_address_postal_code [String] The postal code of the recipient. Required if the card is issued in Canada.
54
+ #
55
+ # @param recipient_address_state [String] The state or province of the recipient. Required if the card is issued in Canada
56
+ #
45
57
  # @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
46
58
  #
47
59
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.268.0"
4
+ VERSION = "1.269.0"
5
5
  end
@@ -101,6 +101,52 @@ module Increase
101
101
  sig { returns(String) }
102
102
  attr_accessor :source_account_number_id
103
103
 
104
+ # The legal business name of the merchant (generally your business) sending the
105
+ # transfer. Required if the card is issued in Canada.
106
+ sig { returns(T.nilable(String)) }
107
+ attr_reader :merchant_legal_business_name
108
+
109
+ sig { params(merchant_legal_business_name: String).void }
110
+ attr_writer :merchant_legal_business_name
111
+
112
+ # The street address of the merchant (generally your business) sending the
113
+ # transfer. Required if the card is issued in Canada.
114
+ sig { returns(T.nilable(String)) }
115
+ attr_reader :merchant_street_address
116
+
117
+ sig { params(merchant_street_address: String).void }
118
+ attr_writer :merchant_street_address
119
+
120
+ # The city of the recipient. Required if the card is issued in Canada.
121
+ sig { returns(T.nilable(String)) }
122
+ attr_reader :recipient_address_city
123
+
124
+ sig { params(recipient_address_city: String).void }
125
+ attr_writer :recipient_address_city
126
+
127
+ # The first line of the recipient's address. Required if the card is issued in
128
+ # Canada.
129
+ sig { returns(T.nilable(String)) }
130
+ attr_reader :recipient_address_line1
131
+
132
+ sig { params(recipient_address_line1: String).void }
133
+ attr_writer :recipient_address_line1
134
+
135
+ # The postal code of the recipient. Required if the card is issued in Canada.
136
+ sig { returns(T.nilable(String)) }
137
+ attr_reader :recipient_address_postal_code
138
+
139
+ sig { params(recipient_address_postal_code: String).void }
140
+ attr_writer :recipient_address_postal_code
141
+
142
+ # The state or province of the recipient. Required if the card is issued in
143
+ # Canada.
144
+ sig { returns(T.nilable(String)) }
145
+ attr_reader :recipient_address_state
146
+
147
+ sig { params(recipient_address_state: String).void }
148
+ attr_writer :recipient_address_state
149
+
104
150
  # Whether the transfer requires explicit approval via the dashboard or API.
105
151
  sig { returns(T.nilable(T::Boolean)) }
106
152
  attr_reader :require_approval
@@ -128,6 +174,12 @@ module Increase
128
174
  sender_address_state: String,
129
175
  sender_name: String,
130
176
  source_account_number_id: String,
177
+ merchant_legal_business_name: String,
178
+ merchant_street_address: String,
179
+ recipient_address_city: String,
180
+ recipient_address_line1: String,
181
+ recipient_address_postal_code: String,
182
+ recipient_address_state: String,
131
183
  require_approval: T::Boolean,
132
184
  request_options: Increase::RequestOptions::OrHash
133
185
  ).returns(T.attached_class)
@@ -176,6 +228,22 @@ module Increase
176
228
  sender_name:,
177
229
  # The identifier of the Account Number from which to send the transfer.
178
230
  source_account_number_id:,
231
+ # The legal business name of the merchant (generally your business) sending the
232
+ # transfer. Required if the card is issued in Canada.
233
+ merchant_legal_business_name: nil,
234
+ # The street address of the merchant (generally your business) sending the
235
+ # transfer. Required if the card is issued in Canada.
236
+ merchant_street_address: nil,
237
+ # The city of the recipient. Required if the card is issued in Canada.
238
+ recipient_address_city: nil,
239
+ # The first line of the recipient's address. Required if the card is issued in
240
+ # Canada.
241
+ recipient_address_line1: nil,
242
+ # The postal code of the recipient. Required if the card is issued in Canada.
243
+ recipient_address_postal_code: nil,
244
+ # The state or province of the recipient. Required if the card is issued in
245
+ # Canada.
246
+ recipient_address_state: nil,
179
247
  # Whether the transfer requires explicit approval via the dashboard or API.
180
248
  require_approval: nil,
181
249
  request_options: {}
@@ -203,6 +271,12 @@ module Increase
203
271
  sender_address_state: String,
204
272
  sender_name: String,
205
273
  source_account_number_id: String,
274
+ merchant_legal_business_name: String,
275
+ merchant_street_address: String,
276
+ recipient_address_city: String,
277
+ recipient_address_line1: String,
278
+ recipient_address_postal_code: String,
279
+ recipient_address_state: String,
206
280
  require_approval: T::Boolean,
207
281
  request_options: Increase::RequestOptions
208
282
  }
@@ -24,6 +24,12 @@ module Increase
24
24
  sender_address_state: String,
25
25
  sender_name: String,
26
26
  source_account_number_id: String,
27
+ merchant_legal_business_name: String,
28
+ merchant_street_address: String,
29
+ recipient_address_city: String,
30
+ recipient_address_line1: String,
31
+ recipient_address_postal_code: String,
32
+ recipient_address_state: String,
27
33
  require_approval: T::Boolean,
28
34
  request_options: Increase::RequestOptions::OrHash
29
35
  ).returns(Increase::CardPushTransfer)
@@ -72,6 +78,22 @@ module Increase
72
78
  sender_name:,
73
79
  # The identifier of the Account Number from which to send the transfer.
74
80
  source_account_number_id:,
81
+ # The legal business name of the merchant (generally your business) sending the
82
+ # transfer. Required if the card is issued in Canada.
83
+ merchant_legal_business_name: nil,
84
+ # The street address of the merchant (generally your business) sending the
85
+ # transfer. Required if the card is issued in Canada.
86
+ merchant_street_address: nil,
87
+ # The city of the recipient. Required if the card is issued in Canada.
88
+ recipient_address_city: nil,
89
+ # The first line of the recipient's address. Required if the card is issued in
90
+ # Canada.
91
+ recipient_address_line1: nil,
92
+ # The postal code of the recipient. Required if the card is issued in Canada.
93
+ recipient_address_postal_code: nil,
94
+ # The state or province of the recipient. Required if the card is issued in
95
+ # Canada.
96
+ recipient_address_state: nil,
75
97
  # Whether the transfer requires explicit approval via the dashboard or API.
76
98
  require_approval: nil,
77
99
  request_options: {}
@@ -18,6 +18,12 @@ module Increase
18
18
  sender_address_state: String,
19
19
  sender_name: String,
20
20
  source_account_number_id: String,
21
+ merchant_legal_business_name: String,
22
+ merchant_street_address: String,
23
+ recipient_address_city: String,
24
+ :recipient_address_line1 => String,
25
+ recipient_address_postal_code: String,
26
+ recipient_address_state: String,
21
27
  require_approval: bool
22
28
  }
23
29
  & Increase::Internal::Type::request_parameters
@@ -58,6 +64,30 @@ module Increase
58
64
 
59
65
  attr_accessor source_account_number_id: String
60
66
 
67
+ attr_reader merchant_legal_business_name: String?
68
+
69
+ def merchant_legal_business_name=: (String) -> String
70
+
71
+ attr_reader merchant_street_address: String?
72
+
73
+ def merchant_street_address=: (String) -> String
74
+
75
+ attr_reader recipient_address_city: String?
76
+
77
+ def recipient_address_city=: (String) -> String
78
+
79
+ attr_reader recipient_address_line1: String?
80
+
81
+ def recipient_address_line1=: (String) -> String
82
+
83
+ attr_reader recipient_address_postal_code: String?
84
+
85
+ def recipient_address_postal_code=: (String) -> String
86
+
87
+ attr_reader recipient_address_state: String?
88
+
89
+ def recipient_address_state=: (String) -> String
90
+
61
91
  attr_reader require_approval: bool?
62
92
 
63
93
  def require_approval=: (bool) -> bool
@@ -79,6 +109,12 @@ module Increase
79
109
  sender_address_state: String,
80
110
  sender_name: String,
81
111
  source_account_number_id: String,
112
+ ?merchant_legal_business_name: String,
113
+ ?merchant_street_address: String,
114
+ ?recipient_address_city: String,
115
+ ?recipient_address_line1: String,
116
+ ?recipient_address_postal_code: String,
117
+ ?recipient_address_state: String,
82
118
  ?require_approval: bool,
83
119
  ?request_options: Increase::request_opts
84
120
  ) -> void
@@ -100,6 +136,12 @@ module Increase
100
136
  sender_address_state: String,
101
137
  sender_name: String,
102
138
  source_account_number_id: String,
139
+ merchant_legal_business_name: String,
140
+ merchant_street_address: String,
141
+ recipient_address_city: String,
142
+ :recipient_address_line1 => String,
143
+ recipient_address_postal_code: String,
144
+ recipient_address_state: String,
103
145
  require_approval: bool,
104
146
  request_options: Increase::RequestOptions
105
147
  }
@@ -18,6 +18,12 @@ module Increase
18
18
  sender_address_state: String,
19
19
  sender_name: String,
20
20
  source_account_number_id: String,
21
+ ?merchant_legal_business_name: String,
22
+ ?merchant_street_address: String,
23
+ ?recipient_address_city: String,
24
+ ?recipient_address_line1: String,
25
+ ?recipient_address_postal_code: String,
26
+ ?recipient_address_state: String,
21
27
  ?require_approval: bool,
22
28
  ?request_options: Increase::request_opts
23
29
  ) -> Increase::CardPushTransfer
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.268.0
4
+ version: 1.269.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase