Skip to content

Commit a694abf

Browse files
authored
Merge pull request #526 from maxmind/horgh/disposition
Remove documentation for non existing disposition action
2 parents 55873c3 + 5b70753 commit a694abf

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ CHANGELOG
3030
4.0.1 (2021-06-29)
3131
------------------
3232

33-
* Fix: IP address response is optional. [Issue 515](https://github.com/maxmind/minfraud-api-node/issues/515)
33+
* Fix: IP address response is optional. [Issue 515](https://github.com/maxmind/minfraud-api-node/issues/515)
3434

3535
4.0.0 (2021-06-21)
3636
------------------

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Factors, and Report Transaction web services](https://dev.maxmind.com/minfraud/)
77

88
## Requirements
99

10-
MaxMind has tested this API with Node.js versions 12 and 14. We aim to support
10+
MaxMind has tested this API with Node.js versions 12 and 14. We aim to support
1111
active LTS versions of Node.js, as well as the latest stable release.
1212

1313
## Installation
@@ -37,7 +37,7 @@ const client = new minFraud.Client("1234", "LICENSEKEY");
3737

3838
Then create a new `Transaction` object. This represents the transaction that
3939
you are sending to minFraud. Each transaction property is instantiated by creating
40-
a new instance of each property's class. For example:
40+
a new instance of each property's class. For example:
4141

4242
```js
4343
const transaction = new minFraud.Transaction({
@@ -85,7 +85,7 @@ MaxMind encourages the use of this API, as data received through this channel
8585
is continually used to improve the accuracy of our fraud detection algorithms.
8686

8787
To use the Report Transactions API, create a new `TransactionReport` object. An
88-
IP address and a valid tag are required key values. Additional key values may
88+
IP address and a valid tag are required key values. Additional key values may
8989
also be set, as documented below.
9090

9191
See the API documentation for more details.

src/response/records.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ export interface Disposition {
320320
*/
321321
readonly action: DispositionAction;
322322
/**
323-
* The reason for the action. The current possible values are "custom_rule",
324-
* "block_list", and "default". If you do not have custom rules set up, `null`
325-
* will be returned.
323+
* The reason for the action. The current possible values are "custom_rule"
324+
* and "default". If you do not have custom rules set up, `null` will be
325+
* returned.
326326
*/
327327
readonly reason: DispositionReason;
328328
/**

0 commit comments

Comments
 (0)