increase 1.257.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: 4b4d6b2fc83727cfe5579a8c720a8e60d117dae117ca41a4926ad21b85ebb1aa
4
- data.tar.gz: 7552bf5b94ef626edcf2318f4f8ed88762a8c2f4c90466637231402291686732
3
+ metadata.gz: f643ece5b4b25f6a5aeb365a9fe6f6a122448d754b6b02567c656abafa94c691
4
+ data.tar.gz: 103d9820e11626769f3750193988a5805e344bb68b305ca5f19baccaea5224c5
5
5
  SHA512:
6
- metadata.gz: 8b5b8238076bd445e42aeff71747342dd2aaebc5a4080188dd3deca612cccf20f8accab14b4ad63433d09f8aed8e0318eb6f8b8de421bb5d698460599b283147
7
- data.tar.gz: 9fa78ea094efeb63d4dab046ffcca97f93919401c2d69c9f9274d063fac32081b8407f6e29833ee2d1f4682654f05fc5071d1b9b1f1d75069306cadd8a484cc7
6
+ metadata.gz: b881be645231e77e3c332f9fa831502ced0ef4a36c30169a7debe43e01a2647d01863777ac673ee11b1637884c0bb14de655fa31bef597aaa6ae917739cc9e5d
7
+ data.tar.gz: a6c65eb3aca235771488caa18ef12269382f59458baf194a481702c015c69f132126eb3619671d130ec537f6674bc185f3fde3eb5d200047358add8d95c6b706
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
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
+
16
+ ## 1.258.0 (2026-03-16)
17
+
18
+ Full Changelog: [v1.257.0...v1.258.0](https://github.com/Increase/increase-ruby/compare/v1.257.0...v1.258.0)
19
+
20
+ ### Features
21
+
22
+ * **api:** api update ([a2b5eaa](https://github.com/Increase/increase-ruby/commit/a2b5eaafd317d6c882e308227595a0da041b2b19))
23
+
3
24
  ## 1.257.0 (2026-03-16)
4
25
 
5
26
  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.259.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
 
@@ -669,6 +672,9 @@ module Increase
669
672
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
670
673
  :transaction_does_not_fulfill_anti_money_laundering_requirement
671
674
 
675
+ # The transaction was blocked by the cardholder.
676
+ BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
677
+
672
678
  # The first use of the card has been blocked by the issuer.
673
679
  BLOCKED_FIRST_USE = :blocked_first_use
674
680
 
@@ -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
 
@@ -649,6 +652,9 @@ module Increase
649
652
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
650
653
  :transaction_does_not_fulfill_anti_money_laundering_requirement
651
654
 
655
+ # The transaction was blocked by the cardholder.
656
+ BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
657
+
652
658
  # The first use of the card has been blocked by the issuer.
653
659
  BLOCKED_FIRST_USE = :blocked_first_use
654
660
 
@@ -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
 
@@ -277,6 +280,9 @@ module Increase
277
280
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
278
281
  :transaction_does_not_fulfill_anti_money_laundering_requirement
279
282
 
283
+ # The transaction was blocked by the cardholder.
284
+ BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
285
+
280
286
  # The first use of the card has been blocked by the issuer.
281
287
  BLOCKED_FIRST_USE = :blocked_first_use
282
288
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.257.0"
4
+ VERSION = "1.259.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(
@@ -1175,6 +1182,13 @@ module Increase
1175
1182
  Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
1176
1183
  )
1177
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
+
1178
1192
  # The first use of the card has been blocked by the issuer.
1179
1193
  BLOCKED_FIRST_USE =
1180
1194
  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(
@@ -1219,6 +1226,13 @@ module Increase
1219
1226
  Increase::CardValidation::Decline::Reason::TaggedSymbol
1220
1227
  )
1221
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
+
1222
1236
  # The first use of the card has been blocked by the issuer.
1223
1237
  BLOCKED_FIRST_USE =
1224
1238
  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(
@@ -676,6 +683,13 @@ module Increase
676
683
  Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
677
684
  )
678
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
+
679
693
  # The first use of the card has been blocked by the issuer.
680
694
  BLOCKED_FIRST_USE =
681
695
  T.let(
@@ -424,11 +424,13 @@ 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
430
431
  | :security_violation
431
432
  | :transaction_does_not_fulfill_anti_money_laundering_requirement
433
+ | :blocked_by_cardholder
432
434
  | :blocked_first_use
433
435
  | :credit_issuer_unavailable
434
436
  | :negative_card_verification_value_results
@@ -516,6 +518,9 @@ module Increase
516
518
  # The transaction is not allowed at this terminal.
517
519
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL: :transaction_not_allowed_at_terminal
518
520
 
521
+ # The transaction is not supported or has been blocked by the issuer.
522
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER: :transaction_not_supported_or_blocked_by_issuer
523
+
519
524
  # The transaction has been flagged as suspected fraud and cannot be processed.
520
525
  SUSPECTED_FRAUD: :suspected_fraud
521
526
 
@@ -531,6 +536,9 @@ module Increase
531
536
  # The transaction does not meet the anti-money laundering requirements set by the issuer.
532
537
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
533
538
 
539
+ # The transaction was blocked by the cardholder.
540
+ BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
541
+
534
542
  # The first use of the card has been blocked by the issuer.
535
543
  BLOCKED_FIRST_USE: :blocked_first_use
536
544
 
@@ -422,11 +422,13 @@ 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
428
429
  | :security_violation
429
430
  | :transaction_does_not_fulfill_anti_money_laundering_requirement
431
+ | :blocked_by_cardholder
430
432
  | :blocked_first_use
431
433
  | :credit_issuer_unavailable
432
434
  | :negative_card_verification_value_results
@@ -514,6 +516,9 @@ module Increase
514
516
  # The transaction is not allowed at this terminal.
515
517
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL: :transaction_not_allowed_at_terminal
516
518
 
519
+ # The transaction is not supported or has been blocked by the issuer.
520
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER: :transaction_not_supported_or_blocked_by_issuer
521
+
517
522
  # The transaction has been flagged as suspected fraud and cannot be processed.
518
523
  SUSPECTED_FRAUD: :suspected_fraud
519
524
 
@@ -529,6 +534,9 @@ module Increase
529
534
  # The transaction does not meet the anti-money laundering requirements set by the issuer.
530
535
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
531
536
 
537
+ # The transaction was blocked by the cardholder.
538
+ BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
539
+
532
540
  # The first use of the card has been blocked by the issuer.
533
541
  BLOCKED_FIRST_USE: :blocked_first_use
534
542
 
@@ -216,11 +216,13 @@ 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
222
223
  | :security_violation
223
224
  | :transaction_does_not_fulfill_anti_money_laundering_requirement
225
+ | :blocked_by_cardholder
224
226
  | :blocked_first_use
225
227
  | :credit_issuer_unavailable
226
228
  | :negative_card_verification_value_results
@@ -308,6 +310,9 @@ module Increase
308
310
  # The transaction is not allowed at this terminal.
309
311
  TRANSACTION_NOT_ALLOWED_AT_TERMINAL: :transaction_not_allowed_at_terminal
310
312
 
313
+ # The transaction is not supported or has been blocked by the issuer.
314
+ TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER: :transaction_not_supported_or_blocked_by_issuer
315
+
311
316
  # The transaction has been flagged as suspected fraud and cannot be processed.
312
317
  SUSPECTED_FRAUD: :suspected_fraud
313
318
 
@@ -323,6 +328,9 @@ module Increase
323
328
  # The transaction does not meet the anti-money laundering requirements set by the issuer.
324
329
  TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
325
330
 
331
+ # The transaction was blocked by the cardholder.
332
+ BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
333
+
326
334
  # The first use of the card has been blocked by the issuer.
327
335
  BLOCKED_FIRST_USE: :blocked_first_use
328
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.257.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