increase 0.37.1 → 0.38.1
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 +30 -0
- package/README.md +50 -4
- package/core.d.ts.map +1 -1
- package/core.js +2 -2
- package/core.js.map +1 -1
- package/core.mjs +2 -2
- package/core.mjs.map +1 -1
- package/error.js +1 -1
- package/error.js.map +1 -1
- package/error.mjs +1 -1
- package/error.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/card-payments.d.ts +20 -0
- package/resources/card-payments.d.ts.map +1 -1
- package/resources/card-payments.js.map +1 -1
- package/resources/card-payments.mjs.map +1 -1
- package/resources/cards.d.ts +0 -5
- package/resources/cards.d.ts.map +1 -1
- package/resources/cards.js.map +1 -1
- package/resources/cards.mjs.map +1 -1
- package/resources/declined-transactions.d.ts +5 -0
- package/resources/declined-transactions.d.ts.map +1 -1
- package/resources/declined-transactions.js.map +1 -1
- package/resources/declined-transactions.mjs.map +1 -1
- package/resources/pending-transactions.d.ts +5 -0
- package/resources/pending-transactions.d.ts.map +1 -1
- package/resources/pending-transactions.js.map +1 -1
- package/resources/pending-transactions.mjs.map +1 -1
- package/resources/physical-cards.d.ts +0 -4
- package/resources/physical-cards.d.ts.map +1 -1
- package/resources/physical-cards.js.map +1 -1
- package/resources/physical-cards.mjs.map +1 -1
- package/resources/real-time-decisions.d.ts +5 -9
- package/resources/real-time-decisions.d.ts.map +1 -1
- package/resources/real-time-decisions.js.map +1 -1
- package/resources/real-time-decisions.mjs.map +1 -1
- package/resources/real-time-payments-transfers.d.ts +2 -1
- package/resources/real-time-payments-transfers.d.ts.map +1 -1
- package/resources/real-time-payments-transfers.js.map +1 -1
- package/resources/real-time-payments-transfers.mjs.map +1 -1
- package/resources/simulations/ach-transfers.d.ts +9 -1
- package/resources/simulations/ach-transfers.d.ts.map +1 -1
- package/resources/simulations/ach-transfers.js.map +1 -1
- package/resources/simulations/ach-transfers.mjs.map +1 -1
- package/resources/simulations/cards.d.ts +10 -0
- package/resources/simulations/cards.d.ts.map +1 -1
- package/resources/simulations/cards.js.map +1 -1
- package/resources/simulations/cards.mjs.map +1 -1
- package/resources/simulations/real-time-payments-transfers.d.ts +5 -0
- package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
- package/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
- package/resources/wire-transfers.d.ts +2 -1
- package/resources/wire-transfers.d.ts.map +1 -1
- package/resources/wire-transfers.js.map +1 -1
- package/resources/wire-transfers.mjs.map +1 -1
- package/src/core.ts +3 -2
- package/src/error.ts +1 -1
- package/src/resources/card-payments.ts +24 -0
- package/src/resources/cards.ts +0 -6
- package/src/resources/declined-transactions.ts +6 -0
- package/src/resources/pending-transactions.ts +6 -0
- package/src/resources/physical-cards.ts +0 -5
- package/src/resources/real-time-decisions.ts +6 -11
- package/src/resources/real-time-payments-transfers.ts +2 -0
- package/src/resources/simulations/ach-transfers.ts +11 -1
- package/src/resources/simulations/cards.ts +12 -0
- package/src/resources/simulations/real-time-payments-transfers.ts +6 -0
- package/src/resources/wire-transfers.ts +2 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -408,6 +408,12 @@ export namespace CardAuthorizationSimulation {
|
|
|
408
408
|
*/
|
|
409
409
|
network_identifiers: CardDecline.NetworkIdentifiers;
|
|
410
410
|
|
|
411
|
+
/**
|
|
412
|
+
* The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
413
|
+
* Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
414
|
+
*/
|
|
415
|
+
network_risk_score: number | null;
|
|
416
|
+
|
|
411
417
|
/**
|
|
412
418
|
* If the authorization was made in-person with a physical card, the Physical Card
|
|
413
419
|
* that was used.
|
|
@@ -1504,6 +1510,12 @@ export namespace CardAuthorizationSimulation {
|
|
|
1504
1510
|
*/
|
|
1505
1511
|
network_identifiers: CardAuthorization.NetworkIdentifiers;
|
|
1506
1512
|
|
|
1513
|
+
/**
|
|
1514
|
+
* The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
1515
|
+
* Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
1516
|
+
*/
|
|
1517
|
+
network_risk_score: number | null;
|
|
1518
|
+
|
|
1507
1519
|
/**
|
|
1508
1520
|
* The identifier of the Pending Transaction associated with this Transaction.
|
|
1509
1521
|
*/
|
|
@@ -407,6 +407,12 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
407
407
|
*/
|
|
408
408
|
network_identifiers: CardDecline.NetworkIdentifiers;
|
|
409
409
|
|
|
410
|
+
/**
|
|
411
|
+
* The risk score generated by the card network. For Visa this is the Visa Advanced
|
|
412
|
+
* Authorization risk score, from 0 to 99, where 99 is the riskiest.
|
|
413
|
+
*/
|
|
414
|
+
network_risk_score: number | null;
|
|
415
|
+
|
|
410
416
|
/**
|
|
411
417
|
* If the authorization was made in-person with a physical card, the Physical Card
|
|
412
418
|
* that was used.
|
|
@@ -217,6 +217,7 @@ export interface WireTransfer {
|
|
|
217
217
|
* - `canceled` - The transfer has been canceled.
|
|
218
218
|
* - `requires_attention` - The transfer requires attention from an Increase
|
|
219
219
|
* operator.
|
|
220
|
+
* - `pending_reviewing` - The transfer is pending review by Increase.
|
|
220
221
|
* - `pending_approval` - The transfer is pending approval.
|
|
221
222
|
* - `rejected` - The transfer has been rejected.
|
|
222
223
|
* - `reversed` - The transfer has been reversed.
|
|
@@ -226,6 +227,7 @@ export interface WireTransfer {
|
|
|
226
227
|
status:
|
|
227
228
|
| 'canceled'
|
|
228
229
|
| 'requires_attention'
|
|
230
|
+
| 'pending_reviewing'
|
|
229
231
|
| 'pending_approval'
|
|
230
232
|
| 'rejected'
|
|
231
233
|
| 'reversed'
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.38.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.38.1";
|
|
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.38.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|