Skip to content

Commit e181609

Browse files
feat(api): api update (#926)
1 parent a050a04 commit e181609

File tree

5 files changed

+25
-1
lines changed

5 files changed

+25
-1
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 201
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-936415a7c13aa6a9b75c94e06d628346ea373e89a34c5f4281dbfd68a5114b3c.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-97fb48534a75d68acd544082e2352e69557d798f912cf62c85825e78d9102eca.yml

src/increase/types/card_payment.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ class ElementCardAuthorizationNetworkDetailsVisa(BaseModel):
152152
"invalid_cardholder_authentication_verification_value",
153153
"internal_visa_error",
154154
"merchant_transaction_advisory_service_authentication_required",
155+
"payment_fraud_disruption_acquirer_block",
155156
"other",
156157
]
157158
] = None
@@ -173,6 +174,9 @@ class ElementCardAuthorizationNetworkDetailsVisa(BaseModel):
173174
has enabled Visa's Transaction Advisory Service and requires further
174175
authentication to perform the transaction. In practice this is often utilized
175176
at fuel pumps to tell the cardholder to see the cashier.
177+
- `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
178+
Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
179+
such as card testing.
176180
- `other` - An unspecific reason for stand-in processing.
177181
"""
178182

@@ -565,6 +569,7 @@ class ElementCardDeclineNetworkDetailsVisa(BaseModel):
565569
"invalid_cardholder_authentication_verification_value",
566570
"internal_visa_error",
567571
"merchant_transaction_advisory_service_authentication_required",
572+
"payment_fraud_disruption_acquirer_block",
568573
"other",
569574
]
570575
] = None
@@ -586,6 +591,9 @@ class ElementCardDeclineNetworkDetailsVisa(BaseModel):
586591
has enabled Visa's Transaction Advisory Service and requires further
587592
authentication to perform the transaction. In practice this is often utilized
588593
at fuel pumps to tell the cardholder to see the cashier.
594+
- `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
595+
Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
596+
such as card testing.
589597
- `other` - An unspecific reason for stand-in processing.
590598
"""
591599

@@ -2411,6 +2419,7 @@ class ElementCardValidationNetworkDetailsVisa(BaseModel):
24112419
"invalid_cardholder_authentication_verification_value",
24122420
"internal_visa_error",
24132421
"merchant_transaction_advisory_service_authentication_required",
2422+
"payment_fraud_disruption_acquirer_block",
24142423
"other",
24152424
]
24162425
] = None
@@ -2432,6 +2441,9 @@ class ElementCardValidationNetworkDetailsVisa(BaseModel):
24322441
has enabled Visa's Transaction Advisory Service and requires further
24332442
authentication to perform the transaction. In practice this is often utilized
24342443
at fuel pumps to tell the cardholder to see the cashier.
2444+
- `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
2445+
Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
2446+
such as card testing.
24352447
- `other` - An unspecific reason for stand-in processing.
24362448
"""
24372449

src/increase/types/declined_transaction.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ class SourceCardDeclineNetworkDetailsVisa(BaseModel):
200200
"invalid_cardholder_authentication_verification_value",
201201
"internal_visa_error",
202202
"merchant_transaction_advisory_service_authentication_required",
203+
"payment_fraud_disruption_acquirer_block",
203204
"other",
204205
]
205206
] = None
@@ -221,6 +222,9 @@ class SourceCardDeclineNetworkDetailsVisa(BaseModel):
221222
has enabled Visa's Transaction Advisory Service and requires further
222223
authentication to perform the transaction. In practice this is often utilized
223224
at fuel pumps to tell the cardholder to see the cashier.
225+
- `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
226+
Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
227+
such as card testing.
224228
- `other` - An unspecific reason for stand-in processing.
225229
"""
226230

src/increase/types/pending_transaction.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ class SourceCardAuthorizationNetworkDetailsVisa(BaseModel):
147147
"invalid_cardholder_authentication_verification_value",
148148
"internal_visa_error",
149149
"merchant_transaction_advisory_service_authentication_required",
150+
"payment_fraud_disruption_acquirer_block",
150151
"other",
151152
]
152153
] = None
@@ -168,6 +169,9 @@ class SourceCardAuthorizationNetworkDetailsVisa(BaseModel):
168169
has enabled Visa's Transaction Advisory Service and requires further
169170
authentication to perform the transaction. In practice this is often utilized
170171
at fuel pumps to tell the cardholder to see the cashier.
172+
- `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
173+
Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
174+
such as card testing.
171175
- `other` - An unspecific reason for stand-in processing.
172176
"""
173177

src/increase/types/real_time_decision.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ class CardAuthorizationNetworkDetailsVisa(BaseModel):
162162
"invalid_cardholder_authentication_verification_value",
163163
"internal_visa_error",
164164
"merchant_transaction_advisory_service_authentication_required",
165+
"payment_fraud_disruption_acquirer_block",
165166
"other",
166167
]
167168
] = None
@@ -183,6 +184,9 @@ class CardAuthorizationNetworkDetailsVisa(BaseModel):
183184
has enabled Visa's Transaction Advisory Service and requires further
184185
authentication to perform the transaction. In practice this is often utilized
185186
at fuel pumps to tell the cardholder to see the cashier.
187+
- `payment_fraud_disruption_acquirer_block` - The transaction was blocked by
188+
Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior,
189+
such as card testing.
186190
- `other` - An unspecific reason for stand-in processing.
187191
"""
188192

0 commit comments

Comments
 (0)