increase 1.257.0 → 1.258.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: 4b4d6b2fc83727cfe5579a8c720a8e60d117dae117ca41a4926ad21b85ebb1aa
4
- data.tar.gz: 7552bf5b94ef626edcf2318f4f8ed88762a8c2f4c90466637231402291686732
3
+ metadata.gz: b0019928ab71337730b230b65c73d9ec33f1d1944f40ae825088b108bfa1cf95
4
+ data.tar.gz: '09cb726bc0a0b5a12d7d434bec9cdfbf614792116a4241079ed9e941084ac734'
5
5
  SHA512:
6
- metadata.gz: 8b5b8238076bd445e42aeff71747342dd2aaebc5a4080188dd3deca612cccf20f8accab14b4ad63433d09f8aed8e0318eb6f8b8de421bb5d698460599b283147
7
- data.tar.gz: 9fa78ea094efeb63d4dab046ffcca97f93919401c2d69c9f9274d063fac32081b8407f6e29833ee2d1f4682654f05fc5071d1b9b1f1d75069306cadd8a484cc7
6
+ metadata.gz: b5c59221b6c8e55430c8e409db657e13b80b50a94dde60d9565add23371085d86eb2e3707adb6027a6290462a0a8f5264c42732fbdc3900ce4976381aedb4c73
7
+ data.tar.gz: 10ace9bb2ca727bb0c680eec4487bfb7f87e6f7083b83eb487bdd818fd3c85872df3d075a693ce1b66c0f936f050176870e291b39c9c2752a4202e12ff798019
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.258.0 (2026-03-16)
4
+
5
+ Full Changelog: [v1.257.0...v1.258.0](https://github.com/Increase/increase-ruby/compare/v1.257.0...v1.258.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a2b5eaa](https://github.com/Increase/increase-ruby/commit/a2b5eaafd317d6c882e308227595a0da041b2b19))
10
+
3
11
  ## 1.257.0 (2026-03-16)
4
12
 
5
13
  Full Changelog: [v1.256.0...v1.257.0](https://github.com/Increase/increase-ruby/compare/v1.256.0...v1.257.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.257.0"
18
+ gem "increase", "~> 1.258.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -653,6 +653,9 @@ module Increase
653
653
  # The transaction is not allowed at this terminal.
654
654
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL = :transaction_not_allowed_at_terminal
655
655
 
656
+ # The transaction is not supported or has been blocked by the issuer.
657
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER = :transaction_not_supported_or_blocked_by_issuer
658
+
656
659
  # The transaction has been flagged as suspected fraud and cannot be processed.
657
660
  SUSPECTED_FRAUD = :suspected_fraud
658
661
 
@@ -633,6 +633,9 @@ module Increase
633
633
  # The transaction is not allowed at this terminal.
634
634
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL = :transaction_not_allowed_at_terminal
635
635
 
636
+ # The transaction is not supported or has been blocked by the issuer.
637
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER = :transaction_not_supported_or_blocked_by_issuer
638
+
636
639
  # The transaction has been flagged as suspected fraud and cannot be processed.
637
640
  SUSPECTED_FRAUD = :suspected_fraud
638
641
 
@@ -261,6 +261,9 @@ module Increase
261
261
  # The transaction is not allowed at this terminal.
262
262
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL = :transaction_not_allowed_at_terminal
263
263
 
264
+ # The transaction is not supported or has been blocked by the issuer.
265
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER = :transaction_not_supported_or_blocked_by_issuer
266
+
264
267
  # The transaction has been flagged as suspected fraud and cannot be processed.
265
268
  SUSPECTED_FRAUD = :suspected_fraud
266
269
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.257.0"
4
+ VERSION = "1.258.0"
5
5
  end
@@ -1140,6 +1140,13 @@ module Increase
1140
1140
  Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
1141
1141
  )
1142
1142
 
1143
+ # The transaction is not supported or has been blocked by the issuer.
1144
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER =
1145
+ T.let(
1146
+ :transaction_not_supported_or_blocked_by_issuer,
1147
+ Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
1148
+ )
1149
+
1143
1150
  # The transaction has been flagged as suspected fraud and cannot be processed.
1144
1151
  SUSPECTED_FRAUD =
1145
1152
  T.let(
@@ -1184,6 +1184,13 @@ module Increase
1184
1184
  Increase::CardValidation::Decline::Reason::TaggedSymbol
1185
1185
  )
1186
1186
 
1187
+ # The transaction is not supported or has been blocked by the issuer.
1188
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER =
1189
+ T.let(
1190
+ :transaction_not_supported_or_blocked_by_issuer,
1191
+ Increase::CardValidation::Decline::Reason::TaggedSymbol
1192
+ )
1193
+
1187
1194
  # The transaction has been flagged as suspected fraud and cannot be processed.
1188
1195
  SUSPECTED_FRAUD =
1189
1196
  T.let(
@@ -641,6 +641,13 @@ module Increase
641
641
  Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
642
642
  )
643
643
 
644
+ # The transaction is not supported or has been blocked by the issuer.
645
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER =
646
+ T.let(
647
+ :transaction_not_supported_or_blocked_by_issuer,
648
+ Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
649
+ )
650
+
644
651
  # The transaction has been flagged as suspected fraud and cannot be processed.
645
652
  SUSPECTED_FRAUD =
646
653
  T.let(
@@ -424,6 +424,7 @@ module Increase
424
424
  | :expired_card
425
425
  | :transaction_not_permitted_to_cardholder
426
426
  | :transaction_not_allowed_at_terminal
427
+ | :transaction_not_supported_or_blocked_by_issuer
427
428
  | :suspected_fraud
428
429
  | :activity_amount_limit_exceeded
429
430
  | :restricted_card
@@ -516,6 +517,9 @@ module Increase
516
517
  # The transaction is not allowed at this terminal.
517
518
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL: :transaction_not_allowed_at_terminal
518
519
 
520
+ # The transaction is not supported or has been blocked by the issuer.
521
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER: :transaction_not_supported_or_blocked_by_issuer
522
+
519
523
  # The transaction has been flagged as suspected fraud and cannot be processed.
520
524
  SUSPECTED_FRAUD: :suspected_fraud
521
525
 
@@ -422,6 +422,7 @@ module Increase
422
422
  | :expired_card
423
423
  | :transaction_not_permitted_to_cardholder
424
424
  | :transaction_not_allowed_at_terminal
425
+ | :transaction_not_supported_or_blocked_by_issuer
425
426
  | :suspected_fraud
426
427
  | :activity_amount_limit_exceeded
427
428
  | :restricted_card
@@ -514,6 +515,9 @@ module Increase
514
515
  # The transaction is not allowed at this terminal.
515
516
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL: :transaction_not_allowed_at_terminal
516
517
 
518
+ # The transaction is not supported or has been blocked by the issuer.
519
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER: :transaction_not_supported_or_blocked_by_issuer
520
+
517
521
  # The transaction has been flagged as suspected fraud and cannot be processed.
518
522
  SUSPECTED_FRAUD: :suspected_fraud
519
523
 
@@ -216,6 +216,7 @@ module Increase
216
216
  | :expired_card
217
217
  | :transaction_not_permitted_to_cardholder
218
218
  | :transaction_not_allowed_at_terminal
219
+ | :transaction_not_supported_or_blocked_by_issuer
219
220
  | :suspected_fraud
220
221
  | :activity_amount_limit_exceeded
221
222
  | :restricted_card
@@ -308,6 +309,9 @@ module Increase
308
309
  # The transaction is not allowed at this terminal.
309
310
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL: :transaction_not_allowed_at_terminal
310
311
 
312
+ # The transaction is not supported or has been blocked by the issuer.
313
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER: :transaction_not_supported_or_blocked_by_issuer
314
+
311
315
  # The transaction has been flagged as suspected fraud and cannot be processed.
312
316
  SUSPECTED_FRAUD: :suspected_fraud
313
317
 
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.257.0
4
+ version: 1.258.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase