increase 1.258.0 → 1.259.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: b0019928ab71337730b230b65c73d9ec33f1d1944f40ae825088b108bfa1cf95
4
- data.tar.gz: '09cb726bc0a0b5a12d7d434bec9cdfbf614792116a4241079ed9e941084ac734'
3
+ metadata.gz: f643ece5b4b25f6a5aeb365a9fe6f6a122448d754b6b02567c656abafa94c691
4
+ data.tar.gz: 103d9820e11626769f3750193988a5805e344bb68b305ca5f19baccaea5224c5
5
5
  SHA512:
6
- metadata.gz: b5c59221b6c8e55430c8e409db657e13b80b50a94dde60d9565add23371085d86eb2e3707adb6027a6290462a0a8f5264c42732fbdc3900ce4976381aedb4c73
7
- data.tar.gz: 10ace9bb2ca727bb0c680eec4487bfb7f87e6f7083b83eb487bdd818fd3c85872df3d075a693ce1b66c0f936f050176870e291b39c9c2752a4202e12ff798019
6
+ metadata.gz: b881be645231e77e3c332f9fa831502ced0ef4a36c30169a7debe43e01a2647d01863777ac673ee11b1637884c0bb14de655fa31bef597aaa6ae917739cc9e5d
7
+ data.tar.gz: a6c65eb3aca235771488caa18ef12269382f59458baf194a481702c015c69f132126eb3619671d130ec537f6674bc185f3fde3eb5d200047358add8d95c6b706
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.259.0 (2026-03-18)
4
+
5
+ Full Changelog: [v1.258.0...v1.259.0](https://github.com/Increase/increase-ruby/compare/v1.258.0...v1.259.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([5cb54ff](https://github.com/Increase/increase-ruby/commit/5cb54ffa72d3ce76ddad8bdb1eba83ff8abf89db))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **internal:** tweak CI branches ([8d5b90e](https://github.com/Increase/increase-ruby/commit/8d5b90e28e85a242a720375c9e9055226ddb450d))
15
+
3
16
  ## 1.258.0 (2026-03-16)
4
17
 
5
18
  Full Changelog: [v1.257.0...v1.258.0](https://github.com/Increase/increase-ruby/compare/v1.257.0...v1.258.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.258.0"
18
+ gem "increase", "~> 1.259.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -672,6 +672,9 @@ module Increase
672
672
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
673
673
  :transaction_does_not_fulfill_anti_money_laundering_requirement
674
674
 
675
+ # The transaction was blocked by the cardholder.
676
+ BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
677
+
675
678
  # The first use of the card has been blocked by the issuer.
676
679
  BLOCKED_FIRST_USE = :blocked_first_use
677
680
 
@@ -652,6 +652,9 @@ module Increase
652
652
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
653
653
  :transaction_does_not_fulfill_anti_money_laundering_requirement
654
654
 
655
+ # The transaction was blocked by the cardholder.
656
+ BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
657
+
655
658
  # The first use of the card has been blocked by the issuer.
656
659
  BLOCKED_FIRST_USE = :blocked_first_use
657
660
 
@@ -280,6 +280,9 @@ module Increase
280
280
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
281
281
  :transaction_does_not_fulfill_anti_money_laundering_requirement
282
282
 
283
+ # The transaction was blocked by the cardholder.
284
+ BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
285
+
283
286
  # The first use of the card has been blocked by the issuer.
284
287
  BLOCKED_FIRST_USE = :blocked_first_use
285
288
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.258.0"
4
+ VERSION = "1.259.0"
5
5
  end
@@ -1182,6 +1182,13 @@ module Increase
1182
1182
  Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
1183
1183
  )
1184
1184
 
1185
+ # The transaction was blocked by the cardholder.
1186
+ BLOCKED_BY_CARDHOLDER =
1187
+ T.let(
1188
+ :blocked_by_cardholder,
1189
+ Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
1190
+ )
1191
+
1185
1192
  # The first use of the card has been blocked by the issuer.
1186
1193
  BLOCKED_FIRST_USE =
1187
1194
  T.let(
@@ -1226,6 +1226,13 @@ module Increase
1226
1226
  Increase::CardValidation::Decline::Reason::TaggedSymbol
1227
1227
  )
1228
1228
 
1229
+ # The transaction was blocked by the cardholder.
1230
+ BLOCKED_BY_CARDHOLDER =
1231
+ T.let(
1232
+ :blocked_by_cardholder,
1233
+ Increase::CardValidation::Decline::Reason::TaggedSymbol
1234
+ )
1235
+
1229
1236
  # The first use of the card has been blocked by the issuer.
1230
1237
  BLOCKED_FIRST_USE =
1231
1238
  T.let(
@@ -683,6 +683,13 @@ module Increase
683
683
  Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
684
684
  )
685
685
 
686
+ # The transaction was blocked by the cardholder.
687
+ BLOCKED_BY_CARDHOLDER =
688
+ T.let(
689
+ :blocked_by_cardholder,
690
+ Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
691
+ )
692
+
686
693
  # The first use of the card has been blocked by the issuer.
687
694
  BLOCKED_FIRST_USE =
688
695
  T.let(
@@ -430,6 +430,7 @@ module Increase
430
430
  | :restricted_card
431
431
  | :security_violation
432
432
  | :transaction_does_not_fulfill_anti_money_laundering_requirement
433
+ | :blocked_by_cardholder
433
434
  | :blocked_first_use
434
435
  | :credit_issuer_unavailable
435
436
  | :negative_card_verification_value_results
@@ -535,6 +536,9 @@ module Increase
535
536
  # The transaction does not meet the anti-money laundering requirements set by the issuer.
536
537
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
537
538
 
539
+ # The transaction was blocked by the cardholder.
540
+ BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
541
+
538
542
  # The first use of the card has been blocked by the issuer.
539
543
  BLOCKED_FIRST_USE: :blocked_first_use
540
544
 
@@ -428,6 +428,7 @@ module Increase
428
428
  | :restricted_card
429
429
  | :security_violation
430
430
  | :transaction_does_not_fulfill_anti_money_laundering_requirement
431
+ | :blocked_by_cardholder
431
432
  | :blocked_first_use
432
433
  | :credit_issuer_unavailable
433
434
  | :negative_card_verification_value_results
@@ -533,6 +534,9 @@ module Increase
533
534
  # The transaction does not meet the anti-money laundering requirements set by the issuer.
534
535
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
535
536
 
537
+ # The transaction was blocked by the cardholder.
538
+ BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
539
+
536
540
  # The first use of the card has been blocked by the issuer.
537
541
  BLOCKED_FIRST_USE: :blocked_first_use
538
542
 
@@ -222,6 +222,7 @@ module Increase
222
222
  | :restricted_card
223
223
  | :security_violation
224
224
  | :transaction_does_not_fulfill_anti_money_laundering_requirement
225
+ | :blocked_by_cardholder
225
226
  | :blocked_first_use
226
227
  | :credit_issuer_unavailable
227
228
  | :negative_card_verification_value_results
@@ -327,6 +328,9 @@ module Increase
327
328
  # The transaction does not meet the anti-money laundering requirements set by the issuer.
328
329
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
329
330
 
331
+ # The transaction was blocked by the cardholder.
332
+ BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
333
+
330
334
  # The first use of the card has been blocked by the issuer.
331
335
  BLOCKED_FIRST_USE: :blocked_first_use
332
336
 
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.258.0
4
+ version: 1.259.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-16 00:00:00.000000000 Z
11
+ date: 2026-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi