increase 0.462.0 → 0.463.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.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/real-time-decisions.d.mts +267 -1
- package/resources/real-time-decisions.d.mts.map +1 -1
- package/resources/real-time-decisions.d.ts +267 -1
- package/resources/real-time-decisions.d.ts.map +1 -1
- package/src/resources/real-time-decisions.ts +352 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.463.0 (2026-03-06)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.462.0...v0.463.0](https://github.com/Increase/increase-typescript/compare/v0.462.0...v0.463.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([c7f2c4c](https://github.com/Increase/increase-typescript/commit/c7f2c4c29fa63c53a305168127434489d61a04c1))
|
|
10
|
+
|
|
3
11
|
## 0.462.0 (2026-03-05)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.461.0...v0.462.0](https://github.com/Increase/increase-typescript/compare/v0.461.0...v0.462.0)
|
package/package.json
CHANGED
|
@@ -105,14 +105,70 @@ export declare namespace RealTimeDecision {
|
|
|
105
105
|
* Fields related to a 3DS authentication attempt.
|
|
106
106
|
*/
|
|
107
107
|
interface CardAuthentication {
|
|
108
|
+
/**
|
|
109
|
+
* A unique identifier assigned by the Access Control Server (us) for this
|
|
110
|
+
* transaction.
|
|
111
|
+
*/
|
|
112
|
+
access_control_server_transaction_id: string;
|
|
108
113
|
/**
|
|
109
114
|
* The identifier of the Account the card belongs to.
|
|
110
115
|
*/
|
|
111
116
|
account_id: string;
|
|
112
117
|
/**
|
|
113
|
-
* The
|
|
118
|
+
* The city of the cardholder billing address associated with the card used for
|
|
119
|
+
* this purchase.
|
|
120
|
+
*/
|
|
121
|
+
billing_address_city: string | null;
|
|
122
|
+
/**
|
|
123
|
+
* The country of the cardholder billing address associated with the card used for
|
|
124
|
+
* this purchase.
|
|
125
|
+
*/
|
|
126
|
+
billing_address_country: string | null;
|
|
127
|
+
/**
|
|
128
|
+
* The first line of the cardholder billing address associated with the card used
|
|
129
|
+
* for this purchase.
|
|
130
|
+
*/
|
|
131
|
+
billing_address_line1: string | null;
|
|
132
|
+
/**
|
|
133
|
+
* The second line of the cardholder billing address associated with the card used
|
|
134
|
+
* for this purchase.
|
|
135
|
+
*/
|
|
136
|
+
billing_address_line2: string | null;
|
|
137
|
+
/**
|
|
138
|
+
* The third line of the cardholder billing address associated with the card used
|
|
139
|
+
* for this purchase.
|
|
140
|
+
*/
|
|
141
|
+
billing_address_line3: string | null;
|
|
142
|
+
/**
|
|
143
|
+
* The postal code of the cardholder billing address associated with the card used
|
|
144
|
+
* for this purchase.
|
|
145
|
+
*/
|
|
146
|
+
billing_address_postal_code: string | null;
|
|
147
|
+
/**
|
|
148
|
+
* The US state of the cardholder billing address associated with the card used for
|
|
149
|
+
* this purchase.
|
|
150
|
+
*/
|
|
151
|
+
billing_address_state: string | null;
|
|
152
|
+
/**
|
|
153
|
+
* The identifier of the Card.
|
|
114
154
|
*/
|
|
115
155
|
card_id: string;
|
|
156
|
+
/**
|
|
157
|
+
* The email address of the cardholder.
|
|
158
|
+
*/
|
|
159
|
+
cardholder_email: string | null;
|
|
160
|
+
/**
|
|
161
|
+
* The name of the cardholder.
|
|
162
|
+
*/
|
|
163
|
+
cardholder_name: string | null;
|
|
164
|
+
/**
|
|
165
|
+
* The category of the card authentication attempt.
|
|
166
|
+
*
|
|
167
|
+
* - `payment_authentication` - The authentication attempt is for a payment.
|
|
168
|
+
* - `non_payment_authentication` - The authentication attempt is not for a
|
|
169
|
+
* payment.
|
|
170
|
+
*/
|
|
171
|
+
category: 'payment_authentication' | 'non_payment_authentication' | null;
|
|
116
172
|
/**
|
|
117
173
|
* Whether or not the authentication attempt was approved.
|
|
118
174
|
*
|
|
@@ -122,12 +178,222 @@ export declare namespace RealTimeDecision {
|
|
|
122
178
|
* - `deny` - Deny the authentication attempt.
|
|
123
179
|
*/
|
|
124
180
|
decision: 'approve' | 'challenge' | 'deny' | null;
|
|
181
|
+
/**
|
|
182
|
+
* The device channel of the card authentication attempt.
|
|
183
|
+
*/
|
|
184
|
+
device_channel: CardAuthentication.DeviceChannel;
|
|
185
|
+
/**
|
|
186
|
+
* A unique identifier assigned by the Directory Server (the card network) for this
|
|
187
|
+
* transaction.
|
|
188
|
+
*/
|
|
189
|
+
directory_server_transaction_id: string;
|
|
190
|
+
/**
|
|
191
|
+
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
192
|
+
* is transacting with.
|
|
193
|
+
*/
|
|
194
|
+
merchant_acceptor_id: string;
|
|
195
|
+
/**
|
|
196
|
+
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
197
|
+
* card is transacting with.
|
|
198
|
+
*/
|
|
199
|
+
merchant_category_code: string;
|
|
200
|
+
/**
|
|
201
|
+
* The country the merchant resides in.
|
|
202
|
+
*/
|
|
203
|
+
merchant_country: string;
|
|
204
|
+
/**
|
|
205
|
+
* The name of the merchant.
|
|
206
|
+
*/
|
|
207
|
+
merchant_name: string;
|
|
208
|
+
/**
|
|
209
|
+
* The ID of a prior Card Authentication that the requestor used to authenticate
|
|
210
|
+
* this cardholder for a previous transaction.
|
|
211
|
+
*/
|
|
212
|
+
prior_card_authentication_id: string | null;
|
|
213
|
+
/**
|
|
214
|
+
* The purchase amount in minor units.
|
|
215
|
+
*/
|
|
216
|
+
purchase_amount: number | null;
|
|
217
|
+
/**
|
|
218
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
219
|
+
* authentication attempt's purchase currency.
|
|
220
|
+
*/
|
|
221
|
+
purchase_currency: string | null;
|
|
222
|
+
/**
|
|
223
|
+
* The 3DS requestor authentication indicator describes why the authentication
|
|
224
|
+
* attempt is performed, such as for a recurring transaction.
|
|
225
|
+
*
|
|
226
|
+
* - `payment_transaction` - The authentication is for a payment transaction.
|
|
227
|
+
* - `recurring_transaction` - The authentication is for a recurring transaction.
|
|
228
|
+
* - `installment_transaction` - The authentication is for an installment
|
|
229
|
+
* transaction.
|
|
230
|
+
* - `add_card` - The authentication is for adding a card.
|
|
231
|
+
* - `maintain_card` - The authentication is for maintaining a card.
|
|
232
|
+
* - `emv_token_cardholder_verification` - The authentication is for EMV token
|
|
233
|
+
* cardholder verification.
|
|
234
|
+
* - `billing_agreement` - The authentication is for a billing agreement.
|
|
235
|
+
*/
|
|
236
|
+
requestor_authentication_indicator: 'payment_transaction' | 'recurring_transaction' | 'installment_transaction' | 'add_card' | 'maintain_card' | 'emv_token_cardholder_verification' | 'billing_agreement' | null;
|
|
237
|
+
/**
|
|
238
|
+
* Indicates whether a challenge is requested for this transaction.
|
|
239
|
+
*
|
|
240
|
+
* - `no_preference` - No preference.
|
|
241
|
+
* - `no_challenge_requested` - No challenge requested.
|
|
242
|
+
* - `challenge_requested_3ds_requestor_preference` - Challenge requested, 3DS
|
|
243
|
+
* Requestor preference.
|
|
244
|
+
* - `challenge_requested_mandate` - Challenge requested, mandate.
|
|
245
|
+
* - `no_challenge_requested_transactional_risk_analysis_already_performed` - No
|
|
246
|
+
* challenge requested, transactional risk analysis already performed.
|
|
247
|
+
* - `no_challenge_requested_data_share_only` - No challenge requested, data share
|
|
248
|
+
* only.
|
|
249
|
+
* - `no_challenge_requested_strong_consumer_authentication_already_performed` - No
|
|
250
|
+
* challenge requested, strong consumer authentication already performed.
|
|
251
|
+
* - `no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required` -
|
|
252
|
+
* No challenge requested, utilize whitelist exemption if no challenge required.
|
|
253
|
+
* - `challenge_requested_whitelist_prompt_requested_if_challenge_required` -
|
|
254
|
+
* Challenge requested, whitelist prompt requested if challenge required.
|
|
255
|
+
*/
|
|
256
|
+
requestor_challenge_indicator: 'no_preference' | 'no_challenge_requested' | 'challenge_requested_3ds_requestor_preference' | 'challenge_requested_mandate' | 'no_challenge_requested_transactional_risk_analysis_already_performed' | 'no_challenge_requested_data_share_only' | 'no_challenge_requested_strong_consumer_authentication_already_performed' | 'no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required' | 'challenge_requested_whitelist_prompt_requested_if_challenge_required' | null;
|
|
257
|
+
/**
|
|
258
|
+
* The name of the 3DS requestor.
|
|
259
|
+
*/
|
|
260
|
+
requestor_name: string;
|
|
261
|
+
/**
|
|
262
|
+
* The URL of the 3DS requestor.
|
|
263
|
+
*/
|
|
264
|
+
requestor_url: string;
|
|
265
|
+
/**
|
|
266
|
+
* The city of the shipping address associated with this purchase.
|
|
267
|
+
*/
|
|
268
|
+
shipping_address_city: string | null;
|
|
269
|
+
/**
|
|
270
|
+
* The country of the shipping address associated with this purchase.
|
|
271
|
+
*/
|
|
272
|
+
shipping_address_country: string | null;
|
|
273
|
+
/**
|
|
274
|
+
* The first line of the shipping address associated with this purchase.
|
|
275
|
+
*/
|
|
276
|
+
shipping_address_line1: string | null;
|
|
277
|
+
/**
|
|
278
|
+
* The second line of the shipping address associated with this purchase.
|
|
279
|
+
*/
|
|
280
|
+
shipping_address_line2: string | null;
|
|
281
|
+
/**
|
|
282
|
+
* The third line of the shipping address associated with this purchase.
|
|
283
|
+
*/
|
|
284
|
+
shipping_address_line3: string | null;
|
|
285
|
+
/**
|
|
286
|
+
* The postal code of the shipping address associated with this purchase.
|
|
287
|
+
*/
|
|
288
|
+
shipping_address_postal_code: string | null;
|
|
289
|
+
/**
|
|
290
|
+
* The US state of the shipping address associated with this purchase.
|
|
291
|
+
*/
|
|
292
|
+
shipping_address_state: string | null;
|
|
293
|
+
/**
|
|
294
|
+
* A unique identifier assigned by the 3DS Server initiating the authentication
|
|
295
|
+
* attempt for this transaction.
|
|
296
|
+
*/
|
|
297
|
+
three_d_secure_server_transaction_id: string;
|
|
298
|
+
/**
|
|
299
|
+
* The type of transaction being authenticated.
|
|
300
|
+
*
|
|
301
|
+
* - `goods_service_purchase` - Purchase of goods or services.
|
|
302
|
+
* - `check_acceptance` - Check acceptance.
|
|
303
|
+
* - `account_funding` - Account funding.
|
|
304
|
+
* - `quasi_cash_transaction` - Quasi-cash transaction.
|
|
305
|
+
* - `prepaid_activation_and_load` - Prepaid activation and load.
|
|
306
|
+
*/
|
|
307
|
+
transaction_type: 'goods_service_purchase' | 'check_acceptance' | 'account_funding' | 'quasi_cash_transaction' | 'prepaid_activation_and_load' | null;
|
|
125
308
|
/**
|
|
126
309
|
* The identifier of the Card Payment this authentication attempt will belong to.
|
|
127
310
|
* Available in the API once the card authentication has completed.
|
|
128
311
|
*/
|
|
129
312
|
upcoming_card_payment_id: string;
|
|
130
313
|
}
|
|
314
|
+
namespace CardAuthentication {
|
|
315
|
+
/**
|
|
316
|
+
* The device channel of the card authentication attempt.
|
|
317
|
+
*/
|
|
318
|
+
interface DeviceChannel {
|
|
319
|
+
/**
|
|
320
|
+
* Fields specific to the browser device channel.
|
|
321
|
+
*/
|
|
322
|
+
browser: DeviceChannel.Browser | null;
|
|
323
|
+
/**
|
|
324
|
+
* The category of the device channel.
|
|
325
|
+
*
|
|
326
|
+
* - `app` - The authentication attempt was made from an app.
|
|
327
|
+
* - `browser` - The authentication attempt was made from a browser.
|
|
328
|
+
* - `three_ds_requestor_initiated` - The authentication attempt was initiated by
|
|
329
|
+
* the 3DS Requestor.
|
|
330
|
+
*/
|
|
331
|
+
category: 'app' | 'browser' | 'three_ds_requestor_initiated';
|
|
332
|
+
/**
|
|
333
|
+
* Fields specific to merchant initiated transactions.
|
|
334
|
+
*/
|
|
335
|
+
merchant_initiated: DeviceChannel.MerchantInitiated | null;
|
|
336
|
+
}
|
|
337
|
+
namespace DeviceChannel {
|
|
338
|
+
/**
|
|
339
|
+
* Fields specific to the browser device channel.
|
|
340
|
+
*/
|
|
341
|
+
interface Browser {
|
|
342
|
+
/**
|
|
343
|
+
* The accept header from the cardholder's browser.
|
|
344
|
+
*/
|
|
345
|
+
accept_header: string | null;
|
|
346
|
+
/**
|
|
347
|
+
* The IP address of the cardholder's browser.
|
|
348
|
+
*/
|
|
349
|
+
ip_address: string | null;
|
|
350
|
+
/**
|
|
351
|
+
* Whether JavaScript is enabled in the cardholder's browser.
|
|
352
|
+
*
|
|
353
|
+
* - `enabled` - JavaScript is enabled in the cardholder's browser.
|
|
354
|
+
* - `disabled` - JavaScript is not enabled in the cardholder's browser.
|
|
355
|
+
*/
|
|
356
|
+
javascript_enabled: 'enabled' | 'disabled' | null;
|
|
357
|
+
/**
|
|
358
|
+
* The language of the cardholder's browser.
|
|
359
|
+
*/
|
|
360
|
+
language: string | null;
|
|
361
|
+
/**
|
|
362
|
+
* The user agent of the cardholder's browser.
|
|
363
|
+
*/
|
|
364
|
+
user_agent: string | null;
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* Fields specific to merchant initiated transactions.
|
|
368
|
+
*/
|
|
369
|
+
interface MerchantInitiated {
|
|
370
|
+
/**
|
|
371
|
+
* The merchant initiated indicator for the transaction.
|
|
372
|
+
*
|
|
373
|
+
* - `recurring_transaction` - Recurring transaction.
|
|
374
|
+
* - `installment_transaction` - Installment transaction.
|
|
375
|
+
* - `add_card` - Add card.
|
|
376
|
+
* - `maintain_card_information` - Maintain card information.
|
|
377
|
+
* - `account_verification` - Account verification.
|
|
378
|
+
* - `split_delayed_shipment` - Split or delayed shipment.
|
|
379
|
+
* - `top_up` - Top up.
|
|
380
|
+
* - `mail_order` - Mail order.
|
|
381
|
+
* - `telephone_order` - Telephone order.
|
|
382
|
+
* - `whitelist_status_check` - Whitelist status check.
|
|
383
|
+
* - `other_payment` - Other payment.
|
|
384
|
+
* - `billing_agreement` - Billing agreement.
|
|
385
|
+
* - `device_binding_status_check` - Device binding status check.
|
|
386
|
+
* - `card_security_code_status_check` - Card security code status check.
|
|
387
|
+
* - `delayed_shipment` - Delayed shipment.
|
|
388
|
+
* - `split_payment` - Split payment.
|
|
389
|
+
* - `fido_credential_deletion` - FIDO credential deletion.
|
|
390
|
+
* - `fido_credential_registration` - FIDO credential registration.
|
|
391
|
+
* - `decoupled_authentication_fallback` - Decoupled authentication fallback.
|
|
392
|
+
*/
|
|
393
|
+
indicator: 'recurring_transaction' | 'installment_transaction' | 'add_card' | 'maintain_card_information' | 'account_verification' | 'split_delayed_shipment' | 'top_up' | 'mail_order' | 'telephone_order' | 'whitelist_status_check' | 'other_payment' | 'billing_agreement' | 'device_binding_status_check' | 'card_security_code_status_check' | 'delayed_shipment' | 'split_payment' | 'fido_credential_deletion' | 'fido_credential_registration' | 'decoupled_authentication_fallback';
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
}
|
|
131
397
|
/**
|
|
132
398
|
* Fields related to a 3DS authentication attempt.
|
|
133
399
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"real-time-decisions.d.mts","sourceRoot":"","sources":["../src/resources/real-time-decisions.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"real-time-decisions.d.mts","sourceRoot":"","sources":["../src/resources/real-time-decisions.ts"],"names":[],"mappings":"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"}
|
|
@@ -105,14 +105,70 @@ export declare namespace RealTimeDecision {
|
|
|
105
105
|
* Fields related to a 3DS authentication attempt.
|
|
106
106
|
*/
|
|
107
107
|
interface CardAuthentication {
|
|
108
|
+
/**
|
|
109
|
+
* A unique identifier assigned by the Access Control Server (us) for this
|
|
110
|
+
* transaction.
|
|
111
|
+
*/
|
|
112
|
+
access_control_server_transaction_id: string;
|
|
108
113
|
/**
|
|
109
114
|
* The identifier of the Account the card belongs to.
|
|
110
115
|
*/
|
|
111
116
|
account_id: string;
|
|
112
117
|
/**
|
|
113
|
-
* The
|
|
118
|
+
* The city of the cardholder billing address associated with the card used for
|
|
119
|
+
* this purchase.
|
|
120
|
+
*/
|
|
121
|
+
billing_address_city: string | null;
|
|
122
|
+
/**
|
|
123
|
+
* The country of the cardholder billing address associated with the card used for
|
|
124
|
+
* this purchase.
|
|
125
|
+
*/
|
|
126
|
+
billing_address_country: string | null;
|
|
127
|
+
/**
|
|
128
|
+
* The first line of the cardholder billing address associated with the card used
|
|
129
|
+
* for this purchase.
|
|
130
|
+
*/
|
|
131
|
+
billing_address_line1: string | null;
|
|
132
|
+
/**
|
|
133
|
+
* The second line of the cardholder billing address associated with the card used
|
|
134
|
+
* for this purchase.
|
|
135
|
+
*/
|
|
136
|
+
billing_address_line2: string | null;
|
|
137
|
+
/**
|
|
138
|
+
* The third line of the cardholder billing address associated with the card used
|
|
139
|
+
* for this purchase.
|
|
140
|
+
*/
|
|
141
|
+
billing_address_line3: string | null;
|
|
142
|
+
/**
|
|
143
|
+
* The postal code of the cardholder billing address associated with the card used
|
|
144
|
+
* for this purchase.
|
|
145
|
+
*/
|
|
146
|
+
billing_address_postal_code: string | null;
|
|
147
|
+
/**
|
|
148
|
+
* The US state of the cardholder billing address associated with the card used for
|
|
149
|
+
* this purchase.
|
|
150
|
+
*/
|
|
151
|
+
billing_address_state: string | null;
|
|
152
|
+
/**
|
|
153
|
+
* The identifier of the Card.
|
|
114
154
|
*/
|
|
115
155
|
card_id: string;
|
|
156
|
+
/**
|
|
157
|
+
* The email address of the cardholder.
|
|
158
|
+
*/
|
|
159
|
+
cardholder_email: string | null;
|
|
160
|
+
/**
|
|
161
|
+
* The name of the cardholder.
|
|
162
|
+
*/
|
|
163
|
+
cardholder_name: string | null;
|
|
164
|
+
/**
|
|
165
|
+
* The category of the card authentication attempt.
|
|
166
|
+
*
|
|
167
|
+
* - `payment_authentication` - The authentication attempt is for a payment.
|
|
168
|
+
* - `non_payment_authentication` - The authentication attempt is not for a
|
|
169
|
+
* payment.
|
|
170
|
+
*/
|
|
171
|
+
category: 'payment_authentication' | 'non_payment_authentication' | null;
|
|
116
172
|
/**
|
|
117
173
|
* Whether or not the authentication attempt was approved.
|
|
118
174
|
*
|
|
@@ -122,12 +178,222 @@ export declare namespace RealTimeDecision {
|
|
|
122
178
|
* - `deny` - Deny the authentication attempt.
|
|
123
179
|
*/
|
|
124
180
|
decision: 'approve' | 'challenge' | 'deny' | null;
|
|
181
|
+
/**
|
|
182
|
+
* The device channel of the card authentication attempt.
|
|
183
|
+
*/
|
|
184
|
+
device_channel: CardAuthentication.DeviceChannel;
|
|
185
|
+
/**
|
|
186
|
+
* A unique identifier assigned by the Directory Server (the card network) for this
|
|
187
|
+
* transaction.
|
|
188
|
+
*/
|
|
189
|
+
directory_server_transaction_id: string;
|
|
190
|
+
/**
|
|
191
|
+
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
192
|
+
* is transacting with.
|
|
193
|
+
*/
|
|
194
|
+
merchant_acceptor_id: string;
|
|
195
|
+
/**
|
|
196
|
+
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
197
|
+
* card is transacting with.
|
|
198
|
+
*/
|
|
199
|
+
merchant_category_code: string;
|
|
200
|
+
/**
|
|
201
|
+
* The country the merchant resides in.
|
|
202
|
+
*/
|
|
203
|
+
merchant_country: string;
|
|
204
|
+
/**
|
|
205
|
+
* The name of the merchant.
|
|
206
|
+
*/
|
|
207
|
+
merchant_name: string;
|
|
208
|
+
/**
|
|
209
|
+
* The ID of a prior Card Authentication that the requestor used to authenticate
|
|
210
|
+
* this cardholder for a previous transaction.
|
|
211
|
+
*/
|
|
212
|
+
prior_card_authentication_id: string | null;
|
|
213
|
+
/**
|
|
214
|
+
* The purchase amount in minor units.
|
|
215
|
+
*/
|
|
216
|
+
purchase_amount: number | null;
|
|
217
|
+
/**
|
|
218
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
219
|
+
* authentication attempt's purchase currency.
|
|
220
|
+
*/
|
|
221
|
+
purchase_currency: string | null;
|
|
222
|
+
/**
|
|
223
|
+
* The 3DS requestor authentication indicator describes why the authentication
|
|
224
|
+
* attempt is performed, such as for a recurring transaction.
|
|
225
|
+
*
|
|
226
|
+
* - `payment_transaction` - The authentication is for a payment transaction.
|
|
227
|
+
* - `recurring_transaction` - The authentication is for a recurring transaction.
|
|
228
|
+
* - `installment_transaction` - The authentication is for an installment
|
|
229
|
+
* transaction.
|
|
230
|
+
* - `add_card` - The authentication is for adding a card.
|
|
231
|
+
* - `maintain_card` - The authentication is for maintaining a card.
|
|
232
|
+
* - `emv_token_cardholder_verification` - The authentication is for EMV token
|
|
233
|
+
* cardholder verification.
|
|
234
|
+
* - `billing_agreement` - The authentication is for a billing agreement.
|
|
235
|
+
*/
|
|
236
|
+
requestor_authentication_indicator: 'payment_transaction' | 'recurring_transaction' | 'installment_transaction' | 'add_card' | 'maintain_card' | 'emv_token_cardholder_verification' | 'billing_agreement' | null;
|
|
237
|
+
/**
|
|
238
|
+
* Indicates whether a challenge is requested for this transaction.
|
|
239
|
+
*
|
|
240
|
+
* - `no_preference` - No preference.
|
|
241
|
+
* - `no_challenge_requested` - No challenge requested.
|
|
242
|
+
* - `challenge_requested_3ds_requestor_preference` - Challenge requested, 3DS
|
|
243
|
+
* Requestor preference.
|
|
244
|
+
* - `challenge_requested_mandate` - Challenge requested, mandate.
|
|
245
|
+
* - `no_challenge_requested_transactional_risk_analysis_already_performed` - No
|
|
246
|
+
* challenge requested, transactional risk analysis already performed.
|
|
247
|
+
* - `no_challenge_requested_data_share_only` - No challenge requested, data share
|
|
248
|
+
* only.
|
|
249
|
+
* - `no_challenge_requested_strong_consumer_authentication_already_performed` - No
|
|
250
|
+
* challenge requested, strong consumer authentication already performed.
|
|
251
|
+
* - `no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required` -
|
|
252
|
+
* No challenge requested, utilize whitelist exemption if no challenge required.
|
|
253
|
+
* - `challenge_requested_whitelist_prompt_requested_if_challenge_required` -
|
|
254
|
+
* Challenge requested, whitelist prompt requested if challenge required.
|
|
255
|
+
*/
|
|
256
|
+
requestor_challenge_indicator: 'no_preference' | 'no_challenge_requested' | 'challenge_requested_3ds_requestor_preference' | 'challenge_requested_mandate' | 'no_challenge_requested_transactional_risk_analysis_already_performed' | 'no_challenge_requested_data_share_only' | 'no_challenge_requested_strong_consumer_authentication_already_performed' | 'no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required' | 'challenge_requested_whitelist_prompt_requested_if_challenge_required' | null;
|
|
257
|
+
/**
|
|
258
|
+
* The name of the 3DS requestor.
|
|
259
|
+
*/
|
|
260
|
+
requestor_name: string;
|
|
261
|
+
/**
|
|
262
|
+
* The URL of the 3DS requestor.
|
|
263
|
+
*/
|
|
264
|
+
requestor_url: string;
|
|
265
|
+
/**
|
|
266
|
+
* The city of the shipping address associated with this purchase.
|
|
267
|
+
*/
|
|
268
|
+
shipping_address_city: string | null;
|
|
269
|
+
/**
|
|
270
|
+
* The country of the shipping address associated with this purchase.
|
|
271
|
+
*/
|
|
272
|
+
shipping_address_country: string | null;
|
|
273
|
+
/**
|
|
274
|
+
* The first line of the shipping address associated with this purchase.
|
|
275
|
+
*/
|
|
276
|
+
shipping_address_line1: string | null;
|
|
277
|
+
/**
|
|
278
|
+
* The second line of the shipping address associated with this purchase.
|
|
279
|
+
*/
|
|
280
|
+
shipping_address_line2: string | null;
|
|
281
|
+
/**
|
|
282
|
+
* The third line of the shipping address associated with this purchase.
|
|
283
|
+
*/
|
|
284
|
+
shipping_address_line3: string | null;
|
|
285
|
+
/**
|
|
286
|
+
* The postal code of the shipping address associated with this purchase.
|
|
287
|
+
*/
|
|
288
|
+
shipping_address_postal_code: string | null;
|
|
289
|
+
/**
|
|
290
|
+
* The US state of the shipping address associated with this purchase.
|
|
291
|
+
*/
|
|
292
|
+
shipping_address_state: string | null;
|
|
293
|
+
/**
|
|
294
|
+
* A unique identifier assigned by the 3DS Server initiating the authentication
|
|
295
|
+
* attempt for this transaction.
|
|
296
|
+
*/
|
|
297
|
+
three_d_secure_server_transaction_id: string;
|
|
298
|
+
/**
|
|
299
|
+
* The type of transaction being authenticated.
|
|
300
|
+
*
|
|
301
|
+
* - `goods_service_purchase` - Purchase of goods or services.
|
|
302
|
+
* - `check_acceptance` - Check acceptance.
|
|
303
|
+
* - `account_funding` - Account funding.
|
|
304
|
+
* - `quasi_cash_transaction` - Quasi-cash transaction.
|
|
305
|
+
* - `prepaid_activation_and_load` - Prepaid activation and load.
|
|
306
|
+
*/
|
|
307
|
+
transaction_type: 'goods_service_purchase' | 'check_acceptance' | 'account_funding' | 'quasi_cash_transaction' | 'prepaid_activation_and_load' | null;
|
|
125
308
|
/**
|
|
126
309
|
* The identifier of the Card Payment this authentication attempt will belong to.
|
|
127
310
|
* Available in the API once the card authentication has completed.
|
|
128
311
|
*/
|
|
129
312
|
upcoming_card_payment_id: string;
|
|
130
313
|
}
|
|
314
|
+
namespace CardAuthentication {
|
|
315
|
+
/**
|
|
316
|
+
* The device channel of the card authentication attempt.
|
|
317
|
+
*/
|
|
318
|
+
interface DeviceChannel {
|
|
319
|
+
/**
|
|
320
|
+
* Fields specific to the browser device channel.
|
|
321
|
+
*/
|
|
322
|
+
browser: DeviceChannel.Browser | null;
|
|
323
|
+
/**
|
|
324
|
+
* The category of the device channel.
|
|
325
|
+
*
|
|
326
|
+
* - `app` - The authentication attempt was made from an app.
|
|
327
|
+
* - `browser` - The authentication attempt was made from a browser.
|
|
328
|
+
* - `three_ds_requestor_initiated` - The authentication attempt was initiated by
|
|
329
|
+
* the 3DS Requestor.
|
|
330
|
+
*/
|
|
331
|
+
category: 'app' | 'browser' | 'three_ds_requestor_initiated';
|
|
332
|
+
/**
|
|
333
|
+
* Fields specific to merchant initiated transactions.
|
|
334
|
+
*/
|
|
335
|
+
merchant_initiated: DeviceChannel.MerchantInitiated | null;
|
|
336
|
+
}
|
|
337
|
+
namespace DeviceChannel {
|
|
338
|
+
/**
|
|
339
|
+
* Fields specific to the browser device channel.
|
|
340
|
+
*/
|
|
341
|
+
interface Browser {
|
|
342
|
+
/**
|
|
343
|
+
* The accept header from the cardholder's browser.
|
|
344
|
+
*/
|
|
345
|
+
accept_header: string | null;
|
|
346
|
+
/**
|
|
347
|
+
* The IP address of the cardholder's browser.
|
|
348
|
+
*/
|
|
349
|
+
ip_address: string | null;
|
|
350
|
+
/**
|
|
351
|
+
* Whether JavaScript is enabled in the cardholder's browser.
|
|
352
|
+
*
|
|
353
|
+
* - `enabled` - JavaScript is enabled in the cardholder's browser.
|
|
354
|
+
* - `disabled` - JavaScript is not enabled in the cardholder's browser.
|
|
355
|
+
*/
|
|
356
|
+
javascript_enabled: 'enabled' | 'disabled' | null;
|
|
357
|
+
/**
|
|
358
|
+
* The language of the cardholder's browser.
|
|
359
|
+
*/
|
|
360
|
+
language: string | null;
|
|
361
|
+
/**
|
|
362
|
+
* The user agent of the cardholder's browser.
|
|
363
|
+
*/
|
|
364
|
+
user_agent: string | null;
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* Fields specific to merchant initiated transactions.
|
|
368
|
+
*/
|
|
369
|
+
interface MerchantInitiated {
|
|
370
|
+
/**
|
|
371
|
+
* The merchant initiated indicator for the transaction.
|
|
372
|
+
*
|
|
373
|
+
* - `recurring_transaction` - Recurring transaction.
|
|
374
|
+
* - `installment_transaction` - Installment transaction.
|
|
375
|
+
* - `add_card` - Add card.
|
|
376
|
+
* - `maintain_card_information` - Maintain card information.
|
|
377
|
+
* - `account_verification` - Account verification.
|
|
378
|
+
* - `split_delayed_shipment` - Split or delayed shipment.
|
|
379
|
+
* - `top_up` - Top up.
|
|
380
|
+
* - `mail_order` - Mail order.
|
|
381
|
+
* - `telephone_order` - Telephone order.
|
|
382
|
+
* - `whitelist_status_check` - Whitelist status check.
|
|
383
|
+
* - `other_payment` - Other payment.
|
|
384
|
+
* - `billing_agreement` - Billing agreement.
|
|
385
|
+
* - `device_binding_status_check` - Device binding status check.
|
|
386
|
+
* - `card_security_code_status_check` - Card security code status check.
|
|
387
|
+
* - `delayed_shipment` - Delayed shipment.
|
|
388
|
+
* - `split_payment` - Split payment.
|
|
389
|
+
* - `fido_credential_deletion` - FIDO credential deletion.
|
|
390
|
+
* - `fido_credential_registration` - FIDO credential registration.
|
|
391
|
+
* - `decoupled_authentication_fallback` - Decoupled authentication fallback.
|
|
392
|
+
*/
|
|
393
|
+
indicator: 'recurring_transaction' | 'installment_transaction' | 'add_card' | 'maintain_card_information' | 'account_verification' | 'split_delayed_shipment' | 'top_up' | 'mail_order' | 'telephone_order' | 'whitelist_status_check' | 'other_payment' | 'billing_agreement' | 'device_binding_status_check' | 'card_security_code_status_check' | 'delayed_shipment' | 'split_payment' | 'fido_credential_deletion' | 'fido_credential_registration' | 'decoupled_authentication_fallback';
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
}
|
|
131
397
|
/**
|
|
132
398
|
* Fields related to a 3DS authentication attempt.
|
|
133
399
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"real-time-decisions.d.ts","sourceRoot":"","sources":["../src/resources/real-time-decisions.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"real-time-decisions.d.ts","sourceRoot":"","sources":["../src/resources/real-time-decisions.ts"],"names":[],"mappings":"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"}
|
|
@@ -137,16 +137,83 @@ export namespace RealTimeDecision {
|
|
|
137
137
|
* Fields related to a 3DS authentication attempt.
|
|
138
138
|
*/
|
|
139
139
|
export interface CardAuthentication {
|
|
140
|
+
/**
|
|
141
|
+
* A unique identifier assigned by the Access Control Server (us) for this
|
|
142
|
+
* transaction.
|
|
143
|
+
*/
|
|
144
|
+
access_control_server_transaction_id: string;
|
|
145
|
+
|
|
140
146
|
/**
|
|
141
147
|
* The identifier of the Account the card belongs to.
|
|
142
148
|
*/
|
|
143
149
|
account_id: string;
|
|
144
150
|
|
|
145
151
|
/**
|
|
146
|
-
* The
|
|
152
|
+
* The city of the cardholder billing address associated with the card used for
|
|
153
|
+
* this purchase.
|
|
154
|
+
*/
|
|
155
|
+
billing_address_city: string | null;
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* The country of the cardholder billing address associated with the card used for
|
|
159
|
+
* this purchase.
|
|
160
|
+
*/
|
|
161
|
+
billing_address_country: string | null;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* The first line of the cardholder billing address associated with the card used
|
|
165
|
+
* for this purchase.
|
|
166
|
+
*/
|
|
167
|
+
billing_address_line1: string | null;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* The second line of the cardholder billing address associated with the card used
|
|
171
|
+
* for this purchase.
|
|
172
|
+
*/
|
|
173
|
+
billing_address_line2: string | null;
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* The third line of the cardholder billing address associated with the card used
|
|
177
|
+
* for this purchase.
|
|
178
|
+
*/
|
|
179
|
+
billing_address_line3: string | null;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* The postal code of the cardholder billing address associated with the card used
|
|
183
|
+
* for this purchase.
|
|
184
|
+
*/
|
|
185
|
+
billing_address_postal_code: string | null;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* The US state of the cardholder billing address associated with the card used for
|
|
189
|
+
* this purchase.
|
|
190
|
+
*/
|
|
191
|
+
billing_address_state: string | null;
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* The identifier of the Card.
|
|
147
195
|
*/
|
|
148
196
|
card_id: string;
|
|
149
197
|
|
|
198
|
+
/**
|
|
199
|
+
* The email address of the cardholder.
|
|
200
|
+
*/
|
|
201
|
+
cardholder_email: string | null;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* The name of the cardholder.
|
|
205
|
+
*/
|
|
206
|
+
cardholder_name: string | null;
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* The category of the card authentication attempt.
|
|
210
|
+
*
|
|
211
|
+
* - `payment_authentication` - The authentication attempt is for a payment.
|
|
212
|
+
* - `non_payment_authentication` - The authentication attempt is not for a
|
|
213
|
+
* payment.
|
|
214
|
+
*/
|
|
215
|
+
category: 'payment_authentication' | 'non_payment_authentication' | null;
|
|
216
|
+
|
|
150
217
|
/**
|
|
151
218
|
* Whether or not the authentication attempt was approved.
|
|
152
219
|
*
|
|
@@ -157,6 +224,179 @@ export namespace RealTimeDecision {
|
|
|
157
224
|
*/
|
|
158
225
|
decision: 'approve' | 'challenge' | 'deny' | null;
|
|
159
226
|
|
|
227
|
+
/**
|
|
228
|
+
* The device channel of the card authentication attempt.
|
|
229
|
+
*/
|
|
230
|
+
device_channel: CardAuthentication.DeviceChannel;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* A unique identifier assigned by the Directory Server (the card network) for this
|
|
234
|
+
* transaction.
|
|
235
|
+
*/
|
|
236
|
+
directory_server_transaction_id: string;
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
240
|
+
* is transacting with.
|
|
241
|
+
*/
|
|
242
|
+
merchant_acceptor_id: string;
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
246
|
+
* card is transacting with.
|
|
247
|
+
*/
|
|
248
|
+
merchant_category_code: string;
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* The country the merchant resides in.
|
|
252
|
+
*/
|
|
253
|
+
merchant_country: string;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* The name of the merchant.
|
|
257
|
+
*/
|
|
258
|
+
merchant_name: string;
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* The ID of a prior Card Authentication that the requestor used to authenticate
|
|
262
|
+
* this cardholder for a previous transaction.
|
|
263
|
+
*/
|
|
264
|
+
prior_card_authentication_id: string | null;
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* The purchase amount in minor units.
|
|
268
|
+
*/
|
|
269
|
+
purchase_amount: number | null;
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
273
|
+
* authentication attempt's purchase currency.
|
|
274
|
+
*/
|
|
275
|
+
purchase_currency: string | null;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* The 3DS requestor authentication indicator describes why the authentication
|
|
279
|
+
* attempt is performed, such as for a recurring transaction.
|
|
280
|
+
*
|
|
281
|
+
* - `payment_transaction` - The authentication is for a payment transaction.
|
|
282
|
+
* - `recurring_transaction` - The authentication is for a recurring transaction.
|
|
283
|
+
* - `installment_transaction` - The authentication is for an installment
|
|
284
|
+
* transaction.
|
|
285
|
+
* - `add_card` - The authentication is for adding a card.
|
|
286
|
+
* - `maintain_card` - The authentication is for maintaining a card.
|
|
287
|
+
* - `emv_token_cardholder_verification` - The authentication is for EMV token
|
|
288
|
+
* cardholder verification.
|
|
289
|
+
* - `billing_agreement` - The authentication is for a billing agreement.
|
|
290
|
+
*/
|
|
291
|
+
requestor_authentication_indicator:
|
|
292
|
+
| 'payment_transaction'
|
|
293
|
+
| 'recurring_transaction'
|
|
294
|
+
| 'installment_transaction'
|
|
295
|
+
| 'add_card'
|
|
296
|
+
| 'maintain_card'
|
|
297
|
+
| 'emv_token_cardholder_verification'
|
|
298
|
+
| 'billing_agreement'
|
|
299
|
+
| null;
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* Indicates whether a challenge is requested for this transaction.
|
|
303
|
+
*
|
|
304
|
+
* - `no_preference` - No preference.
|
|
305
|
+
* - `no_challenge_requested` - No challenge requested.
|
|
306
|
+
* - `challenge_requested_3ds_requestor_preference` - Challenge requested, 3DS
|
|
307
|
+
* Requestor preference.
|
|
308
|
+
* - `challenge_requested_mandate` - Challenge requested, mandate.
|
|
309
|
+
* - `no_challenge_requested_transactional_risk_analysis_already_performed` - No
|
|
310
|
+
* challenge requested, transactional risk analysis already performed.
|
|
311
|
+
* - `no_challenge_requested_data_share_only` - No challenge requested, data share
|
|
312
|
+
* only.
|
|
313
|
+
* - `no_challenge_requested_strong_consumer_authentication_already_performed` - No
|
|
314
|
+
* challenge requested, strong consumer authentication already performed.
|
|
315
|
+
* - `no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required` -
|
|
316
|
+
* No challenge requested, utilize whitelist exemption if no challenge required.
|
|
317
|
+
* - `challenge_requested_whitelist_prompt_requested_if_challenge_required` -
|
|
318
|
+
* Challenge requested, whitelist prompt requested if challenge required.
|
|
319
|
+
*/
|
|
320
|
+
requestor_challenge_indicator:
|
|
321
|
+
| 'no_preference'
|
|
322
|
+
| 'no_challenge_requested'
|
|
323
|
+
| 'challenge_requested_3ds_requestor_preference'
|
|
324
|
+
| 'challenge_requested_mandate'
|
|
325
|
+
| 'no_challenge_requested_transactional_risk_analysis_already_performed'
|
|
326
|
+
| 'no_challenge_requested_data_share_only'
|
|
327
|
+
| 'no_challenge_requested_strong_consumer_authentication_already_performed'
|
|
328
|
+
| 'no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required'
|
|
329
|
+
| 'challenge_requested_whitelist_prompt_requested_if_challenge_required'
|
|
330
|
+
| null;
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* The name of the 3DS requestor.
|
|
334
|
+
*/
|
|
335
|
+
requestor_name: string;
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* The URL of the 3DS requestor.
|
|
339
|
+
*/
|
|
340
|
+
requestor_url: string;
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* The city of the shipping address associated with this purchase.
|
|
344
|
+
*/
|
|
345
|
+
shipping_address_city: string | null;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* The country of the shipping address associated with this purchase.
|
|
349
|
+
*/
|
|
350
|
+
shipping_address_country: string | null;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* The first line of the shipping address associated with this purchase.
|
|
354
|
+
*/
|
|
355
|
+
shipping_address_line1: string | null;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* The second line of the shipping address associated with this purchase.
|
|
359
|
+
*/
|
|
360
|
+
shipping_address_line2: string | null;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* The third line of the shipping address associated with this purchase.
|
|
364
|
+
*/
|
|
365
|
+
shipping_address_line3: string | null;
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* The postal code of the shipping address associated with this purchase.
|
|
369
|
+
*/
|
|
370
|
+
shipping_address_postal_code: string | null;
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* The US state of the shipping address associated with this purchase.
|
|
374
|
+
*/
|
|
375
|
+
shipping_address_state: string | null;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* A unique identifier assigned by the 3DS Server initiating the authentication
|
|
379
|
+
* attempt for this transaction.
|
|
380
|
+
*/
|
|
381
|
+
three_d_secure_server_transaction_id: string;
|
|
382
|
+
|
|
383
|
+
/**
|
|
384
|
+
* The type of transaction being authenticated.
|
|
385
|
+
*
|
|
386
|
+
* - `goods_service_purchase` - Purchase of goods or services.
|
|
387
|
+
* - `check_acceptance` - Check acceptance.
|
|
388
|
+
* - `account_funding` - Account funding.
|
|
389
|
+
* - `quasi_cash_transaction` - Quasi-cash transaction.
|
|
390
|
+
* - `prepaid_activation_and_load` - Prepaid activation and load.
|
|
391
|
+
*/
|
|
392
|
+
transaction_type:
|
|
393
|
+
| 'goods_service_purchase'
|
|
394
|
+
| 'check_acceptance'
|
|
395
|
+
| 'account_funding'
|
|
396
|
+
| 'quasi_cash_transaction'
|
|
397
|
+
| 'prepaid_activation_and_load'
|
|
398
|
+
| null;
|
|
399
|
+
|
|
160
400
|
/**
|
|
161
401
|
* The identifier of the Card Payment this authentication attempt will belong to.
|
|
162
402
|
* Available in the API once the card authentication has completed.
|
|
@@ -164,6 +404,117 @@ export namespace RealTimeDecision {
|
|
|
164
404
|
upcoming_card_payment_id: string;
|
|
165
405
|
}
|
|
166
406
|
|
|
407
|
+
export namespace CardAuthentication {
|
|
408
|
+
/**
|
|
409
|
+
* The device channel of the card authentication attempt.
|
|
410
|
+
*/
|
|
411
|
+
export interface DeviceChannel {
|
|
412
|
+
/**
|
|
413
|
+
* Fields specific to the browser device channel.
|
|
414
|
+
*/
|
|
415
|
+
browser: DeviceChannel.Browser | null;
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* The category of the device channel.
|
|
419
|
+
*
|
|
420
|
+
* - `app` - The authentication attempt was made from an app.
|
|
421
|
+
* - `browser` - The authentication attempt was made from a browser.
|
|
422
|
+
* - `three_ds_requestor_initiated` - The authentication attempt was initiated by
|
|
423
|
+
* the 3DS Requestor.
|
|
424
|
+
*/
|
|
425
|
+
category: 'app' | 'browser' | 'three_ds_requestor_initiated';
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Fields specific to merchant initiated transactions.
|
|
429
|
+
*/
|
|
430
|
+
merchant_initiated: DeviceChannel.MerchantInitiated | null;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
export namespace DeviceChannel {
|
|
434
|
+
/**
|
|
435
|
+
* Fields specific to the browser device channel.
|
|
436
|
+
*/
|
|
437
|
+
export interface Browser {
|
|
438
|
+
/**
|
|
439
|
+
* The accept header from the cardholder's browser.
|
|
440
|
+
*/
|
|
441
|
+
accept_header: string | null;
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* The IP address of the cardholder's browser.
|
|
445
|
+
*/
|
|
446
|
+
ip_address: string | null;
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* Whether JavaScript is enabled in the cardholder's browser.
|
|
450
|
+
*
|
|
451
|
+
* - `enabled` - JavaScript is enabled in the cardholder's browser.
|
|
452
|
+
* - `disabled` - JavaScript is not enabled in the cardholder's browser.
|
|
453
|
+
*/
|
|
454
|
+
javascript_enabled: 'enabled' | 'disabled' | null;
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* The language of the cardholder's browser.
|
|
458
|
+
*/
|
|
459
|
+
language: string | null;
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* The user agent of the cardholder's browser.
|
|
463
|
+
*/
|
|
464
|
+
user_agent: string | null;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/**
|
|
468
|
+
* Fields specific to merchant initiated transactions.
|
|
469
|
+
*/
|
|
470
|
+
export interface MerchantInitiated {
|
|
471
|
+
/**
|
|
472
|
+
* The merchant initiated indicator for the transaction.
|
|
473
|
+
*
|
|
474
|
+
* - `recurring_transaction` - Recurring transaction.
|
|
475
|
+
* - `installment_transaction` - Installment transaction.
|
|
476
|
+
* - `add_card` - Add card.
|
|
477
|
+
* - `maintain_card_information` - Maintain card information.
|
|
478
|
+
* - `account_verification` - Account verification.
|
|
479
|
+
* - `split_delayed_shipment` - Split or delayed shipment.
|
|
480
|
+
* - `top_up` - Top up.
|
|
481
|
+
* - `mail_order` - Mail order.
|
|
482
|
+
* - `telephone_order` - Telephone order.
|
|
483
|
+
* - `whitelist_status_check` - Whitelist status check.
|
|
484
|
+
* - `other_payment` - Other payment.
|
|
485
|
+
* - `billing_agreement` - Billing agreement.
|
|
486
|
+
* - `device_binding_status_check` - Device binding status check.
|
|
487
|
+
* - `card_security_code_status_check` - Card security code status check.
|
|
488
|
+
* - `delayed_shipment` - Delayed shipment.
|
|
489
|
+
* - `split_payment` - Split payment.
|
|
490
|
+
* - `fido_credential_deletion` - FIDO credential deletion.
|
|
491
|
+
* - `fido_credential_registration` - FIDO credential registration.
|
|
492
|
+
* - `decoupled_authentication_fallback` - Decoupled authentication fallback.
|
|
493
|
+
*/
|
|
494
|
+
indicator:
|
|
495
|
+
| 'recurring_transaction'
|
|
496
|
+
| 'installment_transaction'
|
|
497
|
+
| 'add_card'
|
|
498
|
+
| 'maintain_card_information'
|
|
499
|
+
| 'account_verification'
|
|
500
|
+
| 'split_delayed_shipment'
|
|
501
|
+
| 'top_up'
|
|
502
|
+
| 'mail_order'
|
|
503
|
+
| 'telephone_order'
|
|
504
|
+
| 'whitelist_status_check'
|
|
505
|
+
| 'other_payment'
|
|
506
|
+
| 'billing_agreement'
|
|
507
|
+
| 'device_binding_status_check'
|
|
508
|
+
| 'card_security_code_status_check'
|
|
509
|
+
| 'delayed_shipment'
|
|
510
|
+
| 'split_payment'
|
|
511
|
+
| 'fido_credential_deletion'
|
|
512
|
+
| 'fido_credential_registration'
|
|
513
|
+
| 'decoupled_authentication_fallback';
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
|
|
167
518
|
/**
|
|
168
519
|
* Fields related to a 3DS authentication attempt.
|
|
169
520
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.463.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.463.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.463.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.463.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|