increase 1.256.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/card_push_transfer.rb +3 -0
- data/lib/increase/models/card_validation.rb +3 -0
- data/lib/increase/models/entity.rb +5 -3
- data/lib/increase/models/simulations/card_token_create_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_push_transfer.rbi +7 -0
- data/rbi/increase/models/card_validation.rbi +7 -0
- data/rbi/increase/models/entity.rbi +6 -3
- data/rbi/increase/models/simulations/card_token_create_params.rbi +7 -0
- data/sig/increase/models/card_push_transfer.rbs +4 -0
- data/sig/increase/models/card_validation.rbs +4 -0
- data/sig/increase/models/simulations/card_token_create_params.rbs +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0019928ab71337730b230b65c73d9ec33f1d1944f40ae825088b108bfa1cf95
|
|
4
|
+
data.tar.gz: '09cb726bc0a0b5a12d7d434bec9cdfbf614792116a4241079ed9e941084ac734'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5c59221b6c8e55430c8e409db657e13b80b50a94dde60d9565add23371085d86eb2e3707adb6027a6290462a0a8f5264c42732fbdc3900ce4976381aedb4c73
|
|
7
|
+
data.tar.gz: 10ace9bb2ca727bb0c680eec4487bfb7f87e6f7083b83eb487bdd818fd3c85872df3d075a693ce1b66c0f936f050176870e291b39c9c2752a4202e12ff798019
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
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
|
+
|
|
11
|
+
## 1.257.0 (2026-03-16)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.256.0...v1.257.0](https://github.com/Increase/increase-ruby/compare/v1.256.0...v1.257.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([12de5d2](https://github.com/Increase/increase-ruby/commit/12de5d2f8c42641a9ed33e406715876089cebd9b))
|
|
18
|
+
|
|
3
19
|
## 1.256.0 (2026-03-16)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.255.0...v1.256.0](https://github.com/Increase/increase-ruby/compare/v1.255.0...v1.256.0)
|
data/README.md
CHANGED
|
@@ -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
|
|
|
@@ -122,7 +122,8 @@ module Increase
|
|
|
122
122
|
required :type, enum: -> { Increase::Entity::Type }
|
|
123
123
|
|
|
124
124
|
# @!attribute validation
|
|
125
|
-
# The validation results for the entity.
|
|
125
|
+
# The validation results for the entity. Learn more about
|
|
126
|
+
# [validations](/documentation/entity-validation).
|
|
126
127
|
#
|
|
127
128
|
# @return [Increase::Models::Entity::Validation, nil]
|
|
128
129
|
required :validation, -> { Increase::Entity::Validation }, nil?: true
|
|
@@ -169,7 +170,7 @@ module Increase
|
|
|
169
170
|
#
|
|
170
171
|
# @param type [Symbol, Increase::Models::Entity::Type] A constant representing the object's type. For this resource it will always be `
|
|
171
172
|
#
|
|
172
|
-
# @param validation [Increase::Models::Entity::Validation, nil] The validation results for the entity.
|
|
173
|
+
# @param validation [Increase::Models::Entity::Validation, nil] The validation results for the entity. Learn more about [validations](/documenta
|
|
173
174
|
|
|
174
175
|
# @see Increase::Models::Entity#corporation
|
|
175
176
|
class Corporation < Increase::Internal::Type::BaseModel
|
|
@@ -1615,7 +1616,8 @@ module Increase
|
|
|
1615
1616
|
# Some parameter documentations has been truncated, see
|
|
1616
1617
|
# {Increase::Models::Entity::Validation} for more details.
|
|
1617
1618
|
#
|
|
1618
|
-
# The validation results for the entity.
|
|
1619
|
+
# The validation results for the entity. Learn more about
|
|
1620
|
+
# [validations](/documentation/entity-validation).
|
|
1619
1621
|
#
|
|
1620
1622
|
# @param issues [Array<Increase::Models::Entity::Validation::Issue>] The list of issues that need to be addressed.
|
|
1621
1623
|
#
|
|
@@ -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
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -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(
|
|
@@ -131,7 +131,8 @@ module Increase
|
|
|
131
131
|
sig { returns(Increase::Entity::Type::TaggedSymbol) }
|
|
132
132
|
attr_accessor :type
|
|
133
133
|
|
|
134
|
-
# The validation results for the entity.
|
|
134
|
+
# The validation results for the entity. Learn more about
|
|
135
|
+
# [validations](/documentation/entity-validation).
|
|
135
136
|
sig { returns(T.nilable(Increase::Entity::Validation)) }
|
|
136
137
|
attr_reader :validation
|
|
137
138
|
|
|
@@ -217,7 +218,8 @@ module Increase
|
|
|
217
218
|
# A constant representing the object's type. For this resource it will always be
|
|
218
219
|
# `entity`.
|
|
219
220
|
type:,
|
|
220
|
-
# The validation results for the entity.
|
|
221
|
+
# The validation results for the entity. Learn more about
|
|
222
|
+
# [validations](/documentation/entity-validation).
|
|
221
223
|
validation:
|
|
222
224
|
)
|
|
223
225
|
end
|
|
@@ -2750,7 +2752,8 @@ module Increase
|
|
|
2750
2752
|
sig { returns(Increase::Entity::Validation::Status::TaggedSymbol) }
|
|
2751
2753
|
attr_accessor :status
|
|
2752
2754
|
|
|
2753
|
-
# The validation results for the entity.
|
|
2755
|
+
# The validation results for the entity. Learn more about
|
|
2756
|
+
# [validations](/documentation/entity-validation).
|
|
2754
2757
|
sig do
|
|
2755
2758
|
params(
|
|
2756
2759
|
issues: T::Array[Increase::Entity::Validation::Issue::OrHash],
|
|
@@ -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
|
|