increase 1.15.0 → 1.17.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: 796b831ce7df2c61d203a9787d51a0cb370e7ea8e7322f0e390bce68ef998ecd
4
- data.tar.gz: e9510cf1c447c8685f83669ad869eee1f58fb291acb5a18f16ff31133b69bc1a
3
+ metadata.gz: e4751022fb4db283da10510001aa083e9718ff7d47f993333cac2499ad679775
4
+ data.tar.gz: 42df9e670311bddcda22cf4b9a10c695586ef163ff378726af84638103847df9
5
5
  SHA512:
6
- metadata.gz: f62828b9eeef0bd19ea3ddbdef8b15c6c8478b3c8dce2c00bbb3737c89b77629387b8ba19ab7f4e2a1fe81254a741d073ddae00f1c89342a9de438163a60b869
7
- data.tar.gz: e291ea64da1db9ff30e1c263872a9022af6a1541e0ff80762532b587cf4660626ebdf9eb87b1fc724c5f172b25def44b3854471ab882e2dc23dfb24b16767faf
6
+ metadata.gz: c59f3526e41ca03d1f8da2a733d9964f629971aba689cccbcf753cf896737857e7d53d71985227f0e1b28e831b43b8470b67f3faf1095d9aa9c9d05fa6760f20
7
+ data.tar.gz: e8b971711dc664aa6d9f4ab1147e6325fde30f92394e948ea3a649886d90f54736c71947dcc10242a42c1e4cf3037cf1050ea9ae1f29438d279edd1cf919f6ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.17.0 (2025-07-22)
4
+
5
+ Full Changelog: [v1.16.0...v1.17.0](https://github.com/Increase/increase-ruby/compare/v1.16.0...v1.17.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([c97cfd4](https://github.com/Increase/increase-ruby/commit/c97cfd42049607113b683af73cca4c3dad439d7d))
10
+
11
+ ## 1.16.0 (2025-07-22)
12
+
13
+ Full Changelog: [v1.15.0...v1.16.0](https://github.com/Increase/increase-ruby/compare/v1.15.0...v1.16.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([3ab5ee5](https://github.com/Increase/increase-ruby/commit/3ab5ee553ac93933b48ba84ca19f0ee3097e0af8))
18
+
3
19
  ## 1.15.0 (2025-07-21)
4
20
 
5
21
  Full Changelog: [v1.14.0...v1.15.0](https://github.com/Increase/increase-ruby/compare/v1.14.0...v1.15.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.15.0"
18
+ gem "increase", "~> 1.17.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -172,6 +172,12 @@ module Increase
172
172
  # @return [String]
173
173
  required :city, String
174
174
 
175
+ # @!attribute country
176
+ # The country of the shipping address.
177
+ #
178
+ # @return [String]
179
+ required :country, String
180
+
175
181
  # @!attribute line1
176
182
  # The first line of the shipping address.
177
183
  #
@@ -203,16 +209,18 @@ module Increase
203
209
  required :postal_code, String
204
210
 
205
211
  # @!attribute state
206
- # The US state of the shipping address.
212
+ # The state of the shipping address.
207
213
  #
208
214
  # @return [String]
209
215
  required :state, String
210
216
 
211
- # @!method initialize(city:, line1:, line2:, line3:, name:, postal_code:, state:)
217
+ # @!method initialize(city:, country:, line1:, line2:, line3:, name:, postal_code:, state:)
212
218
  # The location to where the card's packing label is addressed.
213
219
  #
214
220
  # @param city [String] The city of the shipping address.
215
221
  #
222
+ # @param country [String] The country of the shipping address.
223
+ #
216
224
  # @param line1 [String] The first line of the shipping address.
217
225
  #
218
226
  # @param line2 [String, nil] The second line of the shipping address.
@@ -223,7 +231,7 @@ module Increase
223
231
  #
224
232
  # @param postal_code [String] The postal code of the shipping address.
225
233
  #
226
- # @param state [String] The US state of the shipping address.
234
+ # @param state [String] The state of the shipping address.
227
235
  end
228
236
 
229
237
  # The shipping method.
@@ -232,7 +240,7 @@ module Increase
232
240
  module Method
233
241
  extend Increase::Internal::Type::Enum
234
242
 
235
- # USPS Post with tracking.
243
+ # USPS Post.
236
244
  USPS = :usps
237
245
 
238
246
  # FedEx Priority Overnight, no signature.
@@ -241,6 +249,9 @@ module Increase
241
249
  # FedEx 2-day.
242
250
  FEDEX_2_DAY = :fedex_2_day
243
251
 
252
+ # DHL Worldwide Express, international shipping only.
253
+ DHL_WORLDWIDE_EXPRESS = :dhl_worldwide_express
254
+
244
255
  # @!method self.values
245
256
  # @return [Array<Symbol>]
246
257
  end
@@ -133,11 +133,20 @@ module Increase
133
133
  required :postal_code, String
134
134
 
135
135
  # @!attribute state
136
- # The US state of the shipping address.
136
+ # The state of the shipping address.
137
137
  #
138
138
  # @return [String]
139
139
  required :state, String
140
140
 
141
+ # @!attribute country
142
+ # The two-character ISO 3166-1 code of the country where the card should be
143
+ # shipped (e.g., `US`). Please reach out to
144
+ # [support@increase.com](mailto:support@increase.com) to ship cards
145
+ # internationally.
146
+ #
147
+ # @return [String, nil]
148
+ optional :country, String
149
+
141
150
  # @!attribute line2
142
151
  # The second line of the shipping address.
143
152
  #
@@ -156,7 +165,11 @@ module Increase
156
165
  # @return [String, nil]
157
166
  optional :phone_number, String
158
167
 
159
- # @!method initialize(city:, line1:, name:, postal_code:, state:, line2: nil, line3: nil, phone_number: nil)
168
+ # @!method initialize(city:, line1:, name:, postal_code:, state:, country: nil, line2: nil, line3: nil, phone_number: nil)
169
+ # Some parameter documentations has been truncated, see
170
+ # {Increase::Models::PhysicalCardCreateParams::Shipment::Address} for more
171
+ # details.
172
+ #
160
173
  # The address to where the card should be shipped.
161
174
  #
162
175
  # @param city [String] The city of the shipping address.
@@ -167,7 +180,9 @@ module Increase
167
180
  #
168
181
  # @param postal_code [String] The postal code of the shipping address.
169
182
  #
170
- # @param state [String] The US state of the shipping address.
183
+ # @param state [String] The state of the shipping address.
184
+ #
185
+ # @param country [String] The two-character ISO 3166-1 code of the country where the card should be shippe
171
186
  #
172
187
  # @param line2 [String] The second line of the shipping address.
173
188
  #
@@ -182,7 +197,7 @@ module Increase
182
197
  module Method
183
198
  extend Increase::Internal::Type::Enum
184
199
 
185
- # USPS Post with tracking.
200
+ # USPS Post.
186
201
  USPS = :usps
187
202
 
188
203
  # FedEx Priority Overnight, no signature.
@@ -191,6 +206,9 @@ module Increase
191
206
  # FedEx 2-day.
192
207
  FEDEX_2_DAY = :fedex_2_day
193
208
 
209
+ # DHL Worldwide Express, international shipping only.
210
+ DHL_WORLDWIDE_EXPRESS = :dhl_worldwide_express
211
+
194
212
  # @!method self.values
195
213
  # @return [Array<Symbol>]
196
214
  end
@@ -43,13 +43,6 @@ module Increase
43
43
  # @return [String, nil]
44
44
  optional :digital_wallet_token_id, String
45
45
 
46
- # @!attribute direction
47
- # The direction describes the direction the funds will move, either from the
48
- # cardholder to the merchant or from the merchant to the cardholder.
49
- #
50
- # @return [Symbol, Increase::Models::Simulations::CardAuthorizationCreateParams::Direction, nil]
51
- optional :direction, enum: -> { Increase::Simulations::CardAuthorizationCreateParams::Direction }
52
-
53
46
  # @!attribute event_subscription_id
54
47
  # The identifier of the Event Subscription to use. If provided, will override the
55
48
  # default real time event subscription. Because you can only create one real time
@@ -116,6 +109,14 @@ module Increase
116
109
  # @return [String, nil]
117
110
  optional :physical_card_id, String
118
111
 
112
+ # @!attribute processing_category
113
+ # Fields specific to a specific type of authorization, such as Automatic Fuel
114
+ # Dispensers, Refund Authorizations, or Cash Disbursements.
115
+ #
116
+ # @return [Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory, nil]
117
+ optional :processing_category,
118
+ -> { Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory }
119
+
119
120
  # @!attribute terminal_id
120
121
  # The terminal identifier (commonly abbreviated as TID) of the terminal the card
121
122
  # is transacting with.
@@ -123,7 +124,7 @@ module Increase
123
124
  # @return [String, nil]
124
125
  optional :terminal_id, String
125
126
 
126
- # @!method initialize(amount:, authenticated_card_payment_id: nil, card_id: nil, decline_reason: nil, digital_wallet_token_id: nil, direction: nil, event_subscription_id: nil, merchant_acceptor_id: nil, merchant_category_code: nil, merchant_city: nil, merchant_country: nil, merchant_descriptor: nil, merchant_state: nil, network_details: nil, network_risk_score: nil, physical_card_id: nil, terminal_id: nil, request_options: {})
127
+ # @!method initialize(amount:, authenticated_card_payment_id: nil, card_id: nil, decline_reason: nil, digital_wallet_token_id: nil, event_subscription_id: nil, merchant_acceptor_id: nil, merchant_category_code: nil, merchant_city: nil, merchant_country: nil, merchant_descriptor: nil, merchant_state: nil, network_details: nil, network_risk_score: nil, physical_card_id: nil, processing_category: nil, terminal_id: nil, request_options: {})
127
128
  # Some parameter documentations has been truncated, see
128
129
  # {Increase::Models::Simulations::CardAuthorizationCreateParams} for more details.
129
130
  #
@@ -137,8 +138,6 @@ module Increase
137
138
  #
138
139
  # @param digital_wallet_token_id [String] The identifier of the Digital Wallet Token to be authorized.
139
140
  #
140
- # @param direction [Symbol, Increase::Models::Simulations::CardAuthorizationCreateParams::Direction] The direction describes the direction the funds will move, either from the cardh
141
- #
142
141
  # @param event_subscription_id [String] The identifier of the Event Subscription to use. If provided, will override the
143
142
  #
144
143
  # @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
@@ -159,6 +158,8 @@ module Increase
159
158
  #
160
159
  # @param physical_card_id [String] The identifier of the Physical Card to be authorized.
161
160
  #
161
+ # @param processing_category [Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory] Fields specific to a specific type of authorization, such as Automatic Fuel Disp
162
+ #
162
163
  # @param terminal_id [String] The terminal identifier (commonly abbreviated as TID) of the terminal the card i
163
164
  #
164
165
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
@@ -232,21 +233,6 @@ module Increase
232
233
  # @return [Array<Symbol>]
233
234
  end
234
235
 
235
- # The direction describes the direction the funds will move, either from the
236
- # cardholder to the merchant or from the merchant to the cardholder.
237
- module Direction
238
- extend Increase::Internal::Type::Enum
239
-
240
- # A regular card authorization where funds are debited from the cardholder.
241
- SETTLEMENT = :settlement
242
-
243
- # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
244
- REFUND = :refund
245
-
246
- # @!method self.values
247
- # @return [Array<Symbol>]
248
- end
249
-
250
236
  class NetworkDetails < Increase::Internal::Type::BaseModel
251
237
  # @!attribute visa
252
238
  # Fields specific to the Visa network.
@@ -309,6 +295,63 @@ module Increase
309
295
  end
310
296
  end
311
297
  end
298
+
299
+ class ProcessingCategory < Increase::Internal::Type::BaseModel
300
+ # @!attribute category
301
+ # The processing category describes the intent behind the authorization, such as
302
+ # whether it was used for bill payments or an automatic fuel dispenser.
303
+ #
304
+ # @return [Symbol, Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category]
305
+ required :category,
306
+ enum: -> {
307
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category
308
+ }
309
+
310
+ # @!method initialize(category:)
311
+ # Some parameter documentations has been truncated, see
312
+ # {Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory}
313
+ # for more details.
314
+ #
315
+ # Fields specific to a specific type of authorization, such as Automatic Fuel
316
+ # Dispensers, Refund Authorizations, or Cash Disbursements.
317
+ #
318
+ # @param category [Symbol, Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category] The processing category describes the intent behind the authorization, such as w
319
+
320
+ # The processing category describes the intent behind the authorization, such as
321
+ # whether it was used for bill payments or an automatic fuel dispenser.
322
+ #
323
+ # @see Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory#category
324
+ module Category
325
+ extend Increase::Internal::Type::Enum
326
+
327
+ # Account funding transactions are transactions used to e.g., fund an account or transfer funds between accounts.
328
+ ACCOUNT_FUNDING = :account_funding
329
+
330
+ # Automatic fuel dispenser authorizations occur when a card is used at a gas pump, prior to the actual transaction amount being known. They are followed by an advice message that updates the amount of the pending transaction.
331
+ AUTOMATIC_FUEL_DISPENSER = :automatic_fuel_dispenser
332
+
333
+ # A transaction used to pay a bill.
334
+ BILL_PAYMENT = :bill_payment
335
+
336
+ # Original credit transactions are used to send money to a cardholder.
337
+ ORIGINAL_CREDIT = :original_credit
338
+
339
+ # A regular purchase.
340
+ PURCHASE = :purchase
341
+
342
+ # Quasi-cash transactions represent purchases of items which may be convertible to cash.
343
+ QUASI_CASH = :quasi_cash
344
+
345
+ # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
346
+ REFUND = :refund
347
+
348
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
349
+ CASH_DISBURSEMENT = :cash_disbursement
350
+
351
+ # @!method self.values
352
+ # @return [Array<Symbol>]
353
+ end
354
+ end
312
355
  end
313
356
  end
314
357
  end
@@ -15,7 +15,7 @@ module Increase
15
15
  # [Digital Wallet Token](#digital-wallet-tokens) id to simulate the two different
16
16
  # ways purchases can be made.
17
17
  #
18
- # @overload create(amount:, authenticated_card_payment_id: nil, card_id: nil, decline_reason: nil, digital_wallet_token_id: nil, direction: nil, event_subscription_id: nil, merchant_acceptor_id: nil, merchant_category_code: nil, merchant_city: nil, merchant_country: nil, merchant_descriptor: nil, merchant_state: nil, network_details: nil, network_risk_score: nil, physical_card_id: nil, terminal_id: nil, request_options: {})
18
+ # @overload create(amount:, authenticated_card_payment_id: nil, card_id: nil, decline_reason: nil, digital_wallet_token_id: nil, event_subscription_id: nil, merchant_acceptor_id: nil, merchant_category_code: nil, merchant_city: nil, merchant_country: nil, merchant_descriptor: nil, merchant_state: nil, network_details: nil, network_risk_score: nil, physical_card_id: nil, processing_category: nil, terminal_id: nil, request_options: {})
19
19
  #
20
20
  # @param amount [Integer] The authorization amount in cents.
21
21
  #
@@ -27,8 +27,6 @@ module Increase
27
27
  #
28
28
  # @param digital_wallet_token_id [String] The identifier of the Digital Wallet Token to be authorized.
29
29
  #
30
- # @param direction [Symbol, Increase::Models::Simulations::CardAuthorizationCreateParams::Direction] The direction describes the direction the funds will move, either from the cardh
31
- #
32
30
  # @param event_subscription_id [String] The identifier of the Event Subscription to use. If provided, will override the
33
31
  #
34
32
  # @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
@@ -49,6 +47,8 @@ module Increase
49
47
  #
50
48
  # @param physical_card_id [String] The identifier of the Physical Card to be authorized.
51
49
  #
50
+ # @param processing_category [Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory] Fields specific to a specific type of authorization, such as Automatic Fuel Disp
51
+ #
52
52
  # @param terminal_id [String] The terminal identifier (commonly abbreviated as TID) of the terminal the card i
53
53
  #
54
54
  # @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.15.0"
4
+ VERSION = "1.17.0"
5
5
  end
@@ -258,6 +258,10 @@ module Increase
258
258
  sig { returns(String) }
259
259
  attr_accessor :city
260
260
 
261
+ # The country of the shipping address.
262
+ sig { returns(String) }
263
+ attr_accessor :country
264
+
261
265
  # The first line of the shipping address.
262
266
  sig { returns(String) }
263
267
  attr_accessor :line1
@@ -278,7 +282,7 @@ module Increase
278
282
  sig { returns(String) }
279
283
  attr_accessor :postal_code
280
284
 
281
- # The US state of the shipping address.
285
+ # The state of the shipping address.
282
286
  sig { returns(String) }
283
287
  attr_accessor :state
284
288
 
@@ -286,6 +290,7 @@ module Increase
286
290
  sig do
287
291
  params(
288
292
  city: String,
293
+ country: String,
289
294
  line1: String,
290
295
  line2: T.nilable(String),
291
296
  line3: T.nilable(String),
@@ -297,6 +302,8 @@ module Increase
297
302
  def self.new(
298
303
  # The city of the shipping address.
299
304
  city:,
305
+ # The country of the shipping address.
306
+ country:,
300
307
  # The first line of the shipping address.
301
308
  line1:,
302
309
  # The second line of the shipping address.
@@ -307,7 +314,7 @@ module Increase
307
314
  name:,
308
315
  # The postal code of the shipping address.
309
316
  postal_code:,
310
- # The US state of the shipping address.
317
+ # The state of the shipping address.
311
318
  state:
312
319
  )
313
320
  end
@@ -316,6 +323,7 @@ module Increase
316
323
  override.returns(
317
324
  {
318
325
  city: String,
326
+ country: String,
319
327
  line1: String,
320
328
  line2: T.nilable(String),
321
329
  line3: T.nilable(String),
@@ -339,7 +347,7 @@ module Increase
339
347
  end
340
348
  OrSymbol = T.type_alias { T.any(Symbol, String) }
341
349
 
342
- # USPS Post with tracking.
350
+ # USPS Post.
343
351
  USPS =
344
352
  T.let(:usps, Increase::PhysicalCard::Shipment::Method::TaggedSymbol)
345
353
 
@@ -357,6 +365,13 @@ module Increase
357
365
  Increase::PhysicalCard::Shipment::Method::TaggedSymbol
358
366
  )
359
367
 
368
+ # DHL Worldwide Express, international shipping only.
369
+ DHL_WORLDWIDE_EXPRESS =
370
+ T.let(
371
+ :dhl_worldwide_express,
372
+ Increase::PhysicalCard::Shipment::Method::TaggedSymbol
373
+ )
374
+
360
375
  sig do
361
376
  override.returns(
362
377
  T::Array[Increase::PhysicalCard::Shipment::Method::TaggedSymbol]
@@ -233,10 +233,20 @@ module Increase
233
233
  sig { returns(String) }
234
234
  attr_accessor :postal_code
235
235
 
236
- # The US state of the shipping address.
236
+ # The state of the shipping address.
237
237
  sig { returns(String) }
238
238
  attr_accessor :state
239
239
 
240
+ # The two-character ISO 3166-1 code of the country where the card should be
241
+ # shipped (e.g., `US`). Please reach out to
242
+ # [support@increase.com](mailto:support@increase.com) to ship cards
243
+ # internationally.
244
+ sig { returns(T.nilable(String)) }
245
+ attr_reader :country
246
+
247
+ sig { params(country: String).void }
248
+ attr_writer :country
249
+
240
250
  # The second line of the shipping address.
241
251
  sig { returns(T.nilable(String)) }
242
252
  attr_reader :line2
@@ -266,6 +276,7 @@ module Increase
266
276
  name: String,
267
277
  postal_code: String,
268
278
  state: String,
279
+ country: String,
269
280
  line2: String,
270
281
  line3: String,
271
282
  phone_number: String
@@ -280,8 +291,13 @@ module Increase
280
291
  name:,
281
292
  # The postal code of the shipping address.
282
293
  postal_code:,
283
- # The US state of the shipping address.
294
+ # The state of the shipping address.
284
295
  state:,
296
+ # The two-character ISO 3166-1 code of the country where the card should be
297
+ # shipped (e.g., `US`). Please reach out to
298
+ # [support@increase.com](mailto:support@increase.com) to ship cards
299
+ # internationally.
300
+ country: nil,
285
301
  # The second line of the shipping address.
286
302
  line2: nil,
287
303
  # The third line of the shipping address.
@@ -299,6 +315,7 @@ module Increase
299
315
  name: String,
300
316
  postal_code: String,
301
317
  state: String,
318
+ country: String,
302
319
  line2: String,
303
320
  line3: String,
304
321
  phone_number: String
@@ -322,7 +339,7 @@ module Increase
322
339
  end
323
340
  OrSymbol = T.type_alias { T.any(Symbol, String) }
324
341
 
325
- # USPS Post with tracking.
342
+ # USPS Post.
326
343
  USPS =
327
344
  T.let(
328
345
  :usps,
@@ -343,6 +360,13 @@ module Increase
343
360
  Increase::PhysicalCardCreateParams::Shipment::Method::TaggedSymbol
344
361
  )
345
362
 
363
+ # DHL Worldwide Express, international shipping only.
364
+ DHL_WORLDWIDE_EXPRESS =
365
+ T.let(
366
+ :dhl_worldwide_express,
367
+ Increase::PhysicalCardCreateParams::Shipment::Method::TaggedSymbol
368
+ )
369
+
346
370
  sig do
347
371
  override.returns(
348
372
  T::Array[
@@ -60,25 +60,6 @@ module Increase
60
60
  sig { params(digital_wallet_token_id: String).void }
61
61
  attr_writer :digital_wallet_token_id
62
62
 
63
- # The direction describes the direction the funds will move, either from the
64
- # cardholder to the merchant or from the merchant to the cardholder.
65
- sig do
66
- returns(
67
- T.nilable(
68
- Increase::Simulations::CardAuthorizationCreateParams::Direction::OrSymbol
69
- )
70
- )
71
- end
72
- attr_reader :direction
73
-
74
- sig do
75
- params(
76
- direction:
77
- Increase::Simulations::CardAuthorizationCreateParams::Direction::OrSymbol
78
- ).void
79
- end
80
- attr_writer :direction
81
-
82
63
  # The identifier of the Event Subscription to use. If provided, will override the
83
64
  # default real time event subscription. Because you can only create one real time
84
65
  # decision event subscription, you can use this field to route events to any
@@ -166,6 +147,25 @@ module Increase
166
147
  sig { params(physical_card_id: String).void }
167
148
  attr_writer :physical_card_id
168
149
 
150
+ # Fields specific to a specific type of authorization, such as Automatic Fuel
151
+ # Dispensers, Refund Authorizations, or Cash Disbursements.
152
+ sig do
153
+ returns(
154
+ T.nilable(
155
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory
156
+ )
157
+ )
158
+ end
159
+ attr_reader :processing_category
160
+
161
+ sig do
162
+ params(
163
+ processing_category:
164
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::OrHash
165
+ ).void
166
+ end
167
+ attr_writer :processing_category
168
+
169
169
  # The terminal identifier (commonly abbreviated as TID) of the terminal the card
170
170
  # is transacting with.
171
171
  sig { returns(T.nilable(String)) }
@@ -182,8 +182,6 @@ module Increase
182
182
  decline_reason:
183
183
  Increase::Simulations::CardAuthorizationCreateParams::DeclineReason::OrSymbol,
184
184
  digital_wallet_token_id: String,
185
- direction:
186
- Increase::Simulations::CardAuthorizationCreateParams::Direction::OrSymbol,
187
185
  event_subscription_id: String,
188
186
  merchant_acceptor_id: String,
189
187
  merchant_category_code: String,
@@ -195,6 +193,8 @@ module Increase
195
193
  Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails::OrHash,
196
194
  network_risk_score: Integer,
197
195
  physical_card_id: String,
196
+ processing_category:
197
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::OrHash,
198
198
  terminal_id: String,
199
199
  request_options: Increase::RequestOptions::OrHash
200
200
  ).returns(T.attached_class)
@@ -212,9 +212,6 @@ module Increase
212
212
  decline_reason: nil,
213
213
  # The identifier of the Digital Wallet Token to be authorized.
214
214
  digital_wallet_token_id: nil,
215
- # The direction describes the direction the funds will move, either from the
216
- # cardholder to the merchant or from the merchant to the cardholder.
217
- direction: nil,
218
215
  # The identifier of the Event Subscription to use. If provided, will override the
219
216
  # default real time event subscription. Because you can only create one real time
220
217
  # decision event subscription, you can use this field to route events to any
@@ -241,6 +238,9 @@ module Increase
241
238
  network_risk_score: nil,
242
239
  # The identifier of the Physical Card to be authorized.
243
240
  physical_card_id: nil,
241
+ # Fields specific to a specific type of authorization, such as Automatic Fuel
242
+ # Dispensers, Refund Authorizations, or Cash Disbursements.
243
+ processing_category: nil,
244
244
  # The terminal identifier (commonly abbreviated as TID) of the terminal the card
245
245
  # is transacting with.
246
246
  terminal_id: nil,
@@ -257,8 +257,6 @@ module Increase
257
257
  decline_reason:
258
258
  Increase::Simulations::CardAuthorizationCreateParams::DeclineReason::OrSymbol,
259
259
  digital_wallet_token_id: String,
260
- direction:
261
- Increase::Simulations::CardAuthorizationCreateParams::Direction::OrSymbol,
262
260
  event_subscription_id: String,
263
261
  merchant_acceptor_id: String,
264
262
  merchant_category_code: String,
@@ -270,6 +268,8 @@ module Increase
270
268
  Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails,
271
269
  network_risk_score: Integer,
272
270
  physical_card_id: String,
271
+ processing_category:
272
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory,
273
273
  terminal_id: String,
274
274
  request_options: Increase::RequestOptions
275
275
  }
@@ -443,45 +443,6 @@ module Increase
443
443
  end
444
444
  end
445
445
 
446
- # The direction describes the direction the funds will move, either from the
447
- # cardholder to the merchant or from the merchant to the cardholder.
448
- module Direction
449
- extend Increase::Internal::Type::Enum
450
-
451
- TaggedSymbol =
452
- T.type_alias do
453
- T.all(
454
- Symbol,
455
- Increase::Simulations::CardAuthorizationCreateParams::Direction
456
- )
457
- end
458
- OrSymbol = T.type_alias { T.any(Symbol, String) }
459
-
460
- # A regular card authorization where funds are debited from the cardholder.
461
- SETTLEMENT =
462
- T.let(
463
- :settlement,
464
- Increase::Simulations::CardAuthorizationCreateParams::Direction::TaggedSymbol
465
- )
466
-
467
- # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
468
- REFUND =
469
- T.let(
470
- :refund,
471
- Increase::Simulations::CardAuthorizationCreateParams::Direction::TaggedSymbol
472
- )
473
-
474
- sig do
475
- override.returns(
476
- T::Array[
477
- Increase::Simulations::CardAuthorizationCreateParams::Direction::TaggedSymbol
478
- ]
479
- )
480
- end
481
- def self.values
482
- end
483
- end
484
-
485
446
  class NetworkDetails < Increase::Internal::Type::BaseModel
486
447
  OrHash =
487
448
  T.type_alias do
@@ -656,6 +617,132 @@ module Increase
656
617
  end
657
618
  end
658
619
  end
620
+
621
+ class ProcessingCategory < Increase::Internal::Type::BaseModel
622
+ OrHash =
623
+ T.type_alias do
624
+ T.any(
625
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory,
626
+ Increase::Internal::AnyHash
627
+ )
628
+ end
629
+
630
+ # The processing category describes the intent behind the authorization, such as
631
+ # whether it was used for bill payments or an automatic fuel dispenser.
632
+ sig do
633
+ returns(
634
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::OrSymbol
635
+ )
636
+ end
637
+ attr_accessor :category
638
+
639
+ # Fields specific to a specific type of authorization, such as Automatic Fuel
640
+ # Dispensers, Refund Authorizations, or Cash Disbursements.
641
+ sig do
642
+ params(
643
+ category:
644
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::OrSymbol
645
+ ).returns(T.attached_class)
646
+ end
647
+ def self.new(
648
+ # The processing category describes the intent behind the authorization, such as
649
+ # whether it was used for bill payments or an automatic fuel dispenser.
650
+ category:
651
+ )
652
+ end
653
+
654
+ sig do
655
+ override.returns(
656
+ {
657
+ category:
658
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::OrSymbol
659
+ }
660
+ )
661
+ end
662
+ def to_hash
663
+ end
664
+
665
+ # The processing category describes the intent behind the authorization, such as
666
+ # whether it was used for bill payments or an automatic fuel dispenser.
667
+ module Category
668
+ extend Increase::Internal::Type::Enum
669
+
670
+ TaggedSymbol =
671
+ T.type_alias do
672
+ T.all(
673
+ Symbol,
674
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category
675
+ )
676
+ end
677
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
678
+
679
+ # Account funding transactions are transactions used to e.g., fund an account or transfer funds between accounts.
680
+ ACCOUNT_FUNDING =
681
+ T.let(
682
+ :account_funding,
683
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
684
+ )
685
+
686
+ # Automatic fuel dispenser authorizations occur when a card is used at a gas pump, prior to the actual transaction amount being known. They are followed by an advice message that updates the amount of the pending transaction.
687
+ AUTOMATIC_FUEL_DISPENSER =
688
+ T.let(
689
+ :automatic_fuel_dispenser,
690
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
691
+ )
692
+
693
+ # A transaction used to pay a bill.
694
+ BILL_PAYMENT =
695
+ T.let(
696
+ :bill_payment,
697
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
698
+ )
699
+
700
+ # Original credit transactions are used to send money to a cardholder.
701
+ ORIGINAL_CREDIT =
702
+ T.let(
703
+ :original_credit,
704
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
705
+ )
706
+
707
+ # A regular purchase.
708
+ PURCHASE =
709
+ T.let(
710
+ :purchase,
711
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
712
+ )
713
+
714
+ # Quasi-cash transactions represent purchases of items which may be convertible to cash.
715
+ QUASI_CASH =
716
+ T.let(
717
+ :quasi_cash,
718
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
719
+ )
720
+
721
+ # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
722
+ REFUND =
723
+ T.let(
724
+ :refund,
725
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
726
+ )
727
+
728
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
729
+ CASH_DISBURSEMENT =
730
+ T.let(
731
+ :cash_disbursement,
732
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
733
+ )
734
+
735
+ sig do
736
+ override.returns(
737
+ T::Array[
738
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Category::TaggedSymbol
739
+ ]
740
+ )
741
+ end
742
+ def self.values
743
+ end
744
+ end
745
+ end
659
746
  end
660
747
  end
661
748
  end
@@ -19,8 +19,6 @@ module Increase
19
19
  decline_reason:
20
20
  Increase::Simulations::CardAuthorizationCreateParams::DeclineReason::OrSymbol,
21
21
  digital_wallet_token_id: String,
22
- direction:
23
- Increase::Simulations::CardAuthorizationCreateParams::Direction::OrSymbol,
24
22
  event_subscription_id: String,
25
23
  merchant_acceptor_id: String,
26
24
  merchant_category_code: String,
@@ -32,6 +30,8 @@ module Increase
32
30
  Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails::OrHash,
33
31
  network_risk_score: Integer,
34
32
  physical_card_id: String,
33
+ processing_category:
34
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::OrHash,
35
35
  terminal_id: String,
36
36
  request_options: Increase::RequestOptions::OrHash
37
37
  ).returns(
@@ -51,9 +51,6 @@ module Increase
51
51
  decline_reason: nil,
52
52
  # The identifier of the Digital Wallet Token to be authorized.
53
53
  digital_wallet_token_id: nil,
54
- # The direction describes the direction the funds will move, either from the
55
- # cardholder to the merchant or from the merchant to the cardholder.
56
- direction: nil,
57
54
  # The identifier of the Event Subscription to use. If provided, will override the
58
55
  # default real time event subscription. Because you can only create one real time
59
56
  # decision event subscription, you can use this field to route events to any
@@ -80,6 +77,9 @@ module Increase
80
77
  network_risk_score: nil,
81
78
  # The identifier of the Physical Card to be authorized.
82
79
  physical_card_id: nil,
80
+ # Fields specific to a specific type of authorization, such as Automatic Fuel
81
+ # Dispensers, Refund Authorizations, or Cash Disbursements.
82
+ processing_category: nil,
83
83
  # The terminal identifier (commonly abbreviated as TID) of the terminal the card
84
84
  # is transacting with.
85
85
  terminal_id: nil,
@@ -107,6 +107,7 @@ module Increase
107
107
  type address =
108
108
  {
109
109
  city: String,
110
+ country: String,
110
111
  :line1 => String,
111
112
  :line2 => String?,
112
113
  :line3 => String?,
@@ -118,6 +119,8 @@ module Increase
118
119
  class Address < Increase::Internal::Type::BaseModel
119
120
  attr_accessor city: String
120
121
 
122
+ attr_accessor country: String
123
+
121
124
  attr_accessor line1: String
122
125
 
123
126
  attr_accessor line2: String?
@@ -132,6 +135,7 @@ module Increase
132
135
 
133
136
  def initialize: (
134
137
  city: String,
138
+ country: String,
135
139
  line1: String,
136
140
  line2: String?,
137
141
  line3: String?,
@@ -142,6 +146,7 @@ module Increase
142
146
 
143
147
  def to_hash: -> {
144
148
  city: String,
149
+ country: String,
145
150
  :line1 => String,
146
151
  :line2 => String?,
147
152
  :line3 => String?,
@@ -151,12 +156,16 @@ module Increase
151
156
  }
152
157
  end
153
158
 
154
- type method_ = :usps | :fedex_priority_overnight | :fedex_2_day
159
+ type method_ =
160
+ :usps
161
+ | :fedex_priority_overnight
162
+ | :fedex_2_day
163
+ | :dhl_worldwide_express
155
164
 
156
165
  module Method
157
166
  extend Increase::Internal::Type::Enum
158
167
 
159
- # USPS Post with tracking.
168
+ # USPS Post.
160
169
  USPS: :usps
161
170
 
162
171
  # FedEx Priority Overnight, no signature.
@@ -165,6 +174,9 @@ module Increase
165
174
  # FedEx 2-day.
166
175
  FEDEX_2_DAY: :fedex_2_day
167
176
 
177
+ # DHL Worldwide Express, international shipping only.
178
+ DHL_WORLDWIDE_EXPRESS: :dhl_worldwide_express
179
+
168
180
  def self?.values: -> ::Array[Increase::Models::PhysicalCard::Shipment::method_]
169
181
  end
170
182
 
@@ -88,6 +88,7 @@ module Increase
88
88
  name: String,
89
89
  postal_code: String,
90
90
  state: String,
91
+ country: String,
91
92
  :line2 => String,
92
93
  :line3 => String,
93
94
  phone_number: String
@@ -104,6 +105,10 @@ module Increase
104
105
 
105
106
  attr_accessor state: String
106
107
 
108
+ attr_reader country: String?
109
+
110
+ def country=: (String) -> String
111
+
107
112
  attr_reader line2: String?
108
113
 
109
114
  def line2=: (String) -> String
@@ -122,6 +127,7 @@ module Increase
122
127
  name: String,
123
128
  postal_code: String,
124
129
  state: String,
130
+ ?country: String,
125
131
  ?line2: String,
126
132
  ?line3: String,
127
133
  ?phone_number: String
@@ -133,18 +139,23 @@ module Increase
133
139
  name: String,
134
140
  postal_code: String,
135
141
  state: String,
142
+ country: String,
136
143
  :line2 => String,
137
144
  :line3 => String,
138
145
  phone_number: String
139
146
  }
140
147
  end
141
148
 
142
- type method_ = :usps | :fedex_priority_overnight | :fedex_2_day
149
+ type method_ =
150
+ :usps
151
+ | :fedex_priority_overnight
152
+ | :fedex_2_day
153
+ | :dhl_worldwide_express
143
154
 
144
155
  module Method
145
156
  extend Increase::Internal::Type::Enum
146
157
 
147
- # USPS Post with tracking.
158
+ # USPS Post.
148
159
  USPS: :usps
149
160
 
150
161
  # FedEx Priority Overnight, no signature.
@@ -153,6 +164,9 @@ module Increase
153
164
  # FedEx 2-day.
154
165
  FEDEX_2_DAY: :fedex_2_day
155
166
 
167
+ # DHL Worldwide Express, international shipping only.
168
+ DHL_WORLDWIDE_EXPRESS: :dhl_worldwide_express
169
+
156
170
  def self?.values: -> ::Array[Increase::Models::PhysicalCardCreateParams::Shipment::method_]
157
171
  end
158
172
 
@@ -8,7 +8,6 @@ module Increase
8
8
  card_id: String,
9
9
  decline_reason: Increase::Models::Simulations::CardAuthorizationCreateParams::decline_reason,
10
10
  digital_wallet_token_id: String,
11
- direction: Increase::Models::Simulations::CardAuthorizationCreateParams::direction,
12
11
  event_subscription_id: String,
13
12
  merchant_acceptor_id: String,
14
13
  merchant_category_code: String,
@@ -19,6 +18,7 @@ module Increase
19
18
  network_details: Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails,
20
19
  network_risk_score: Integer,
21
20
  physical_card_id: String,
21
+ processing_category: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory,
22
22
  terminal_id: String
23
23
  }
24
24
  & Increase::Internal::Type::request_parameters
@@ -47,12 +47,6 @@ module Increase
47
47
 
48
48
  def digital_wallet_token_id=: (String) -> String
49
49
 
50
- attr_reader direction: Increase::Models::Simulations::CardAuthorizationCreateParams::direction?
51
-
52
- def direction=: (
53
- Increase::Models::Simulations::CardAuthorizationCreateParams::direction
54
- ) -> Increase::Models::Simulations::CardAuthorizationCreateParams::direction
55
-
56
50
  attr_reader event_subscription_id: String?
57
51
 
58
52
  def event_subscription_id=: (String) -> String
@@ -95,6 +89,12 @@ module Increase
95
89
 
96
90
  def physical_card_id=: (String) -> String
97
91
 
92
+ attr_reader processing_category: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory?
93
+
94
+ def processing_category=: (
95
+ Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory
96
+ ) -> Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory
97
+
98
98
  attr_reader terminal_id: String?
99
99
 
100
100
  def terminal_id=: (String) -> String
@@ -105,7 +105,6 @@ module Increase
105
105
  ?card_id: String,
106
106
  ?decline_reason: Increase::Models::Simulations::CardAuthorizationCreateParams::decline_reason,
107
107
  ?digital_wallet_token_id: String,
108
- ?direction: Increase::Models::Simulations::CardAuthorizationCreateParams::direction,
109
108
  ?event_subscription_id: String,
110
109
  ?merchant_acceptor_id: String,
111
110
  ?merchant_category_code: String,
@@ -116,6 +115,7 @@ module Increase
116
115
  ?network_details: Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails,
117
116
  ?network_risk_score: Integer,
118
117
  ?physical_card_id: String,
118
+ ?processing_category: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory,
119
119
  ?terminal_id: String,
120
120
  ?request_options: Increase::request_opts
121
121
  ) -> void
@@ -126,7 +126,6 @@ module Increase
126
126
  card_id: String,
127
127
  decline_reason: Increase::Models::Simulations::CardAuthorizationCreateParams::decline_reason,
128
128
  digital_wallet_token_id: String,
129
- direction: Increase::Models::Simulations::CardAuthorizationCreateParams::direction,
130
129
  event_subscription_id: String,
131
130
  merchant_acceptor_id: String,
132
131
  merchant_category_code: String,
@@ -137,6 +136,7 @@ module Increase
137
136
  network_details: Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails,
138
137
  network_risk_score: Integer,
139
138
  physical_card_id: String,
139
+ processing_category: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory,
140
140
  terminal_id: String,
141
141
  request_options: Increase::RequestOptions
142
142
  }
@@ -229,20 +229,6 @@ module Increase
229
229
  def self?.values: -> ::Array[Increase::Models::Simulations::CardAuthorizationCreateParams::decline_reason]
230
230
  end
231
231
 
232
- type direction = :settlement | :refund
233
-
234
- module Direction
235
- extend Increase::Internal::Type::Enum
236
-
237
- # A regular card authorization where funds are debited from the cardholder.
238
- SETTLEMENT: :settlement
239
-
240
- # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
241
- REFUND: :refund
242
-
243
- def self?.values: -> ::Array[Increase::Models::Simulations::CardAuthorizationCreateParams::direction]
244
- end
245
-
246
232
  type network_details =
247
233
  {
248
234
  visa: Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails::Visa
@@ -316,6 +302,63 @@ module Increase
316
302
  end
317
303
  end
318
304
  end
305
+
306
+ type processing_category =
307
+ {
308
+ category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
309
+ }
310
+
311
+ class ProcessingCategory < Increase::Internal::Type::BaseModel
312
+ attr_accessor category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
313
+
314
+ def initialize: (
315
+ category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
316
+ ) -> void
317
+
318
+ def to_hash: -> {
319
+ category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
320
+ }
321
+
322
+ type category =
323
+ :account_funding
324
+ | :automatic_fuel_dispenser
325
+ | :bill_payment
326
+ | :original_credit
327
+ | :purchase
328
+ | :quasi_cash
329
+ | :refund
330
+ | :cash_disbursement
331
+
332
+ module Category
333
+ extend Increase::Internal::Type::Enum
334
+
335
+ # Account funding transactions are transactions used to e.g., fund an account or transfer funds between accounts.
336
+ ACCOUNT_FUNDING: :account_funding
337
+
338
+ # Automatic fuel dispenser authorizations occur when a card is used at a gas pump, prior to the actual transaction amount being known. They are followed by an advice message that updates the amount of the pending transaction.
339
+ AUTOMATIC_FUEL_DISPENSER: :automatic_fuel_dispenser
340
+
341
+ # A transaction used to pay a bill.
342
+ BILL_PAYMENT: :bill_payment
343
+
344
+ # Original credit transactions are used to send money to a cardholder.
345
+ ORIGINAL_CREDIT: :original_credit
346
+
347
+ # A regular purchase.
348
+ PURCHASE: :purchase
349
+
350
+ # Quasi-cash transactions represent purchases of items which may be convertible to cash.
351
+ QUASI_CASH: :quasi_cash
352
+
353
+ # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder.
354
+ REFUND: :refund
355
+
356
+ # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
357
+ CASH_DISBURSEMENT: :cash_disbursement
358
+
359
+ def self?.values: -> ::Array[Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category]
360
+ end
361
+ end
319
362
  end
320
363
  end
321
364
  end
@@ -8,7 +8,6 @@ module Increase
8
8
  ?card_id: String,
9
9
  ?decline_reason: Increase::Models::Simulations::CardAuthorizationCreateParams::decline_reason,
10
10
  ?digital_wallet_token_id: String,
11
- ?direction: Increase::Models::Simulations::CardAuthorizationCreateParams::direction,
12
11
  ?event_subscription_id: String,
13
12
  ?merchant_acceptor_id: String,
14
13
  ?merchant_category_code: String,
@@ -19,6 +18,7 @@ module Increase
19
18
  ?network_details: Increase::Simulations::CardAuthorizationCreateParams::NetworkDetails,
20
19
  ?network_risk_score: Integer,
21
20
  ?physical_card_id: String,
21
+ ?processing_category: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory,
22
22
  ?terminal_id: String,
23
23
  ?request_options: Increase::request_opts
24
24
  ) -> Increase::Models::Simulations::CardAuthorizationCreateResponse
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.15.0
4
+ version: 1.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-21 00:00:00.000000000 Z
11
+ date: 2025-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool