increase 0.356.0 → 0.357.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/account-transfers.d.ts +1 -6
- package/resources/account-transfers.d.ts.map +1 -1
- package/resources/account-transfers.js.map +1 -1
- package/resources/account-transfers.mjs.map +1 -1
- package/resources/accounts.d.ts +1 -6
- package/resources/accounts.d.ts.map +1 -1
- package/resources/accounts.js.map +1 -1
- package/resources/accounts.mjs.map +1 -1
- package/resources/ach-transfers.d.ts +2 -12
- package/resources/ach-transfers.d.ts.map +1 -1
- package/resources/ach-transfers.js.map +1 -1
- package/resources/ach-transfers.mjs.map +1 -1
- package/resources/card-payments.d.ts +14 -84
- 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/card-push-transfers.d.ts +1 -6
- package/resources/card-push-transfers.d.ts.map +1 -1
- package/resources/card-push-transfers.js.map +1 -1
- package/resources/card-push-transfers.mjs.map +1 -1
- package/resources/check-deposits.d.ts +4 -24
- package/resources/check-deposits.d.ts.map +1 -1
- package/resources/check-deposits.js.map +1 -1
- package/resources/check-deposits.mjs.map +1 -1
- package/resources/check-transfers.d.ts +1 -6
- package/resources/check-transfers.d.ts.map +1 -1
- package/resources/check-transfers.js.map +1 -1
- package/resources/check-transfers.mjs.map +1 -1
- package/resources/declined-transactions.d.ts +4 -24
- 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/fednow-transfers.d.ts +1 -6
- package/resources/fednow-transfers.d.ts.map +1 -1
- package/resources/fednow-transfers.js.map +1 -1
- package/resources/fednow-transfers.mjs.map +1 -1
- package/resources/inbound-check-deposits.d.ts +1 -6
- package/resources/inbound-check-deposits.d.ts.map +1 -1
- package/resources/inbound-check-deposits.js.map +1 -1
- package/resources/inbound-check-deposits.mjs.map +1 -1
- package/resources/inbound-fednow-transfers.d.ts +1 -6
- package/resources/inbound-fednow-transfers.d.ts.map +1 -1
- package/resources/inbound-fednow-transfers.js.map +1 -1
- package/resources/inbound-fednow-transfers.mjs.map +1 -1
- package/resources/inbound-real-time-payments-transfers.d.ts +1 -6
- package/resources/inbound-real-time-payments-transfers.d.ts.map +1 -1
- package/resources/inbound-real-time-payments-transfers.js.map +1 -1
- package/resources/inbound-real-time-payments-transfers.mjs.map +1 -1
- package/resources/intrafi-balances.d.ts +1 -6
- package/resources/intrafi-balances.d.ts.map +1 -1
- package/resources/pending-transactions.d.ts +6 -36
- 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/real-time-payments-transfers.d.ts +1 -6
- 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/transactions.d.ts +17 -102
- package/resources/transactions.d.ts.map +1 -1
- package/resources/transactions.js.map +1 -1
- package/resources/transactions.mjs.map +1 -1
- package/resources/wire-transfers.d.ts +1 -6
- 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/resources/account-transfers.ts +1 -6
- package/src/resources/accounts.ts +1 -6
- package/src/resources/ach-transfers.ts +2 -12
- package/src/resources/card-payments.ts +14 -84
- package/src/resources/card-push-transfers.ts +1 -6
- package/src/resources/check-deposits.ts +4 -24
- package/src/resources/check-transfers.ts +1 -6
- package/src/resources/declined-transactions.ts +4 -24
- package/src/resources/fednow-transfers.ts +1 -6
- package/src/resources/inbound-check-deposits.ts +1 -6
- package/src/resources/inbound-fednow-transfers.ts +1 -6
- package/src/resources/inbound-real-time-payments-transfers.ts +1 -6
- package/src/resources/intrafi-balances.ts +1 -6
- package/src/resources/pending-transactions.ts +6 -36
- package/src/resources/real-time-payments-transfers.ts +1 -6
- package/src/resources/transactions.ts +17 -102
- package/src/resources/wire-transfers.ts +1 -6
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -82,14 +82,9 @@ export interface Transaction {
|
|
|
82
82
|
* Transaction's currency. This will match the currency on the Transaction's
|
|
83
83
|
* Account.
|
|
84
84
|
*
|
|
85
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
86
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
87
|
-
* - `EUR` - Euro (EUR)
|
|
88
|
-
* - `GBP` - British Pound (GBP)
|
|
89
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
90
85
|
* - `USD` - US Dollar (USD)
|
|
91
86
|
*/
|
|
92
|
-
currency: '
|
|
87
|
+
currency: 'USD';
|
|
93
88
|
|
|
94
89
|
/**
|
|
95
90
|
* An informational message describing this transaction. Use the fields in `source`
|
|
@@ -589,14 +584,9 @@ export namespace Transaction {
|
|
|
589
584
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the destination
|
|
590
585
|
* account currency.
|
|
591
586
|
*
|
|
592
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
593
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
594
|
-
* - `EUR` - Euro (EUR)
|
|
595
|
-
* - `GBP` - British Pound (GBP)
|
|
596
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
597
587
|
* - `USD` - US Dollar (USD)
|
|
598
588
|
*/
|
|
599
|
-
currency: '
|
|
589
|
+
currency: 'USD';
|
|
600
590
|
|
|
601
591
|
/**
|
|
602
592
|
* The description you chose to give the transfer.
|
|
@@ -1096,14 +1086,9 @@ export namespace Transaction {
|
|
|
1096
1086
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
1097
1087
|
* transaction's currency.
|
|
1098
1088
|
*
|
|
1099
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
1100
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
1101
|
-
* - `EUR` - Euro (EUR)
|
|
1102
|
-
* - `GBP` - British Pound (GBP)
|
|
1103
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
1104
1089
|
* - `USD` - US Dollar (USD)
|
|
1105
1090
|
*/
|
|
1106
|
-
currency: '
|
|
1091
|
+
currency: 'USD';
|
|
1107
1092
|
|
|
1108
1093
|
/**
|
|
1109
1094
|
* If the authorization was made via a Digital Wallet Token (such as an Apple Pay
|
|
@@ -1811,14 +1796,9 @@ export namespace Transaction {
|
|
|
1811
1796
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
1812
1797
|
* transaction's settlement currency.
|
|
1813
1798
|
*
|
|
1814
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
1815
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
1816
|
-
* - `EUR` - Euro (EUR)
|
|
1817
|
-
* - `GBP` - British Pound (GBP)
|
|
1818
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
1819
1799
|
* - `USD` - US Dollar (USD)
|
|
1820
1800
|
*/
|
|
1821
|
-
currency: '
|
|
1801
|
+
currency: 'USD';
|
|
1822
1802
|
|
|
1823
1803
|
/**
|
|
1824
1804
|
* Interchange assessed as a part of this transaciton.
|
|
@@ -1913,14 +1893,9 @@ export namespace Transaction {
|
|
|
1913
1893
|
/**
|
|
1914
1894
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the cashback.
|
|
1915
1895
|
*
|
|
1916
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
1917
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
1918
|
-
* - `EUR` - Euro (EUR)
|
|
1919
|
-
* - `GBP` - British Pound (GBP)
|
|
1920
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
1921
1896
|
* - `USD` - US Dollar (USD)
|
|
1922
1897
|
*/
|
|
1923
|
-
currency: '
|
|
1898
|
+
currency: 'USD';
|
|
1924
1899
|
}
|
|
1925
1900
|
|
|
1926
1901
|
/**
|
|
@@ -1944,14 +1919,9 @@ export namespace Transaction {
|
|
|
1944
1919
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the interchange
|
|
1945
1920
|
* reimbursement.
|
|
1946
1921
|
*
|
|
1947
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
1948
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
1949
|
-
* - `EUR` - Euro (EUR)
|
|
1950
|
-
* - `GBP` - British Pound (GBP)
|
|
1951
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
1952
1922
|
* - `USD` - US Dollar (USD)
|
|
1953
1923
|
*/
|
|
1954
|
-
currency: '
|
|
1924
|
+
currency: 'USD';
|
|
1955
1925
|
}
|
|
1956
1926
|
|
|
1957
1927
|
/**
|
|
@@ -2526,14 +2496,9 @@ export namespace Transaction {
|
|
|
2526
2496
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
2527
2497
|
* currency.
|
|
2528
2498
|
*
|
|
2529
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
2530
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
2531
|
-
* - `EUR` - Euro (EUR)
|
|
2532
|
-
* - `GBP` - British Pound (GBP)
|
|
2533
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
2534
2499
|
* - `USD` - US Dollar (USD)
|
|
2535
2500
|
*/
|
|
2536
|
-
currency: '
|
|
2501
|
+
currency: 'USD';
|
|
2537
2502
|
|
|
2538
2503
|
/**
|
|
2539
2504
|
* The end of the period for which this transaction paid interest.
|
|
@@ -2593,14 +2558,9 @@ export namespace Transaction {
|
|
|
2593
2558
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
2594
2559
|
* transaction's settlement currency.
|
|
2595
2560
|
*
|
|
2596
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
2597
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
2598
|
-
* - `EUR` - Euro (EUR)
|
|
2599
|
-
* - `GBP` - British Pound (GBP)
|
|
2600
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
2601
2561
|
* - `USD` - US Dollar (USD)
|
|
2602
2562
|
*/
|
|
2603
|
-
currency: '
|
|
2563
|
+
currency: 'USD';
|
|
2604
2564
|
|
|
2605
2565
|
/**
|
|
2606
2566
|
* Interchange assessed as a part of this transaction.
|
|
@@ -2715,14 +2675,9 @@ export namespace Transaction {
|
|
|
2715
2675
|
/**
|
|
2716
2676
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the cashback.
|
|
2717
2677
|
*
|
|
2718
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
2719
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
2720
|
-
* - `EUR` - Euro (EUR)
|
|
2721
|
-
* - `GBP` - British Pound (GBP)
|
|
2722
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
2723
2678
|
* - `USD` - US Dollar (USD)
|
|
2724
2679
|
*/
|
|
2725
|
-
currency: '
|
|
2680
|
+
currency: 'USD';
|
|
2726
2681
|
}
|
|
2727
2682
|
|
|
2728
2683
|
/**
|
|
@@ -2746,14 +2701,9 @@ export namespace Transaction {
|
|
|
2746
2701
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the interchange
|
|
2747
2702
|
* reimbursement.
|
|
2748
2703
|
*
|
|
2749
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
2750
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
2751
|
-
* - `EUR` - Euro (EUR)
|
|
2752
|
-
* - `GBP` - British Pound (GBP)
|
|
2753
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
2754
2704
|
* - `USD` - US Dollar (USD)
|
|
2755
2705
|
*/
|
|
2756
|
-
currency: '
|
|
2706
|
+
currency: 'USD';
|
|
2757
2707
|
}
|
|
2758
2708
|
|
|
2759
2709
|
/**
|
|
@@ -3352,14 +3302,9 @@ export namespace Transaction {
|
|
|
3352
3302
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
3353
3303
|
* currency.
|
|
3354
3304
|
*
|
|
3355
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
3356
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
3357
|
-
* - `EUR` - Euro (EUR)
|
|
3358
|
-
* - `GBP` - British Pound (GBP)
|
|
3359
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
3360
3305
|
* - `USD` - US Dollar (USD)
|
|
3361
3306
|
*/
|
|
3362
|
-
currency: '
|
|
3307
|
+
currency: 'USD';
|
|
3363
3308
|
|
|
3364
3309
|
/**
|
|
3365
3310
|
* The end of the period for which this transaction paid cashback.
|
|
@@ -3409,14 +3354,9 @@ export namespace Transaction {
|
|
|
3409
3354
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
3410
3355
|
* transaction's currency.
|
|
3411
3356
|
*
|
|
3412
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
3413
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
3414
|
-
* - `EUR` - Euro (EUR)
|
|
3415
|
-
* - `GBP` - British Pound (GBP)
|
|
3416
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
3417
3357
|
* - `USD` - US Dollar (USD)
|
|
3418
3358
|
*/
|
|
3419
|
-
currency: '
|
|
3359
|
+
currency: 'USD';
|
|
3420
3360
|
|
|
3421
3361
|
/**
|
|
3422
3362
|
* The routing number printed on the check. This is a routing number for the bank
|
|
@@ -3456,14 +3396,9 @@ export namespace Transaction {
|
|
|
3456
3396
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
3457
3397
|
* transaction's currency.
|
|
3458
3398
|
*
|
|
3459
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
3460
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
3461
|
-
* - `EUR` - Euro (EUR)
|
|
3462
|
-
* - `GBP` - British Pound (GBP)
|
|
3463
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
3464
3399
|
* - `USD` - US Dollar (USD)
|
|
3465
3400
|
*/
|
|
3466
|
-
currency: '
|
|
3401
|
+
currency: 'USD';
|
|
3467
3402
|
|
|
3468
3403
|
/**
|
|
3469
3404
|
* Why this check was returned by the bank holding the account it was drawn
|
|
@@ -3641,14 +3576,9 @@ export namespace Transaction {
|
|
|
3641
3576
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
3642
3577
|
* currency.
|
|
3643
3578
|
*
|
|
3644
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
3645
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
3646
|
-
* - `EUR` - Euro (EUR)
|
|
3647
|
-
* - `GBP` - British Pound (GBP)
|
|
3648
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
3649
3579
|
* - `USD` - US Dollar (USD)
|
|
3650
3580
|
*/
|
|
3651
|
-
currency: '
|
|
3581
|
+
currency: 'USD';
|
|
3652
3582
|
|
|
3653
3583
|
/**
|
|
3654
3584
|
* The start of this payment's fee period, usually the first day of a month.
|
|
@@ -3884,14 +3814,9 @@ export namespace Transaction {
|
|
|
3884
3814
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the transfer's
|
|
3885
3815
|
* currency. This will always be "USD" for a Real-Time Payments transfer.
|
|
3886
3816
|
*
|
|
3887
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
3888
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
3889
|
-
* - `EUR` - Euro (EUR)
|
|
3890
|
-
* - `GBP` - British Pound (GBP)
|
|
3891
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
3892
3817
|
* - `USD` - US Dollar (USD)
|
|
3893
3818
|
*/
|
|
3894
|
-
currency: '
|
|
3819
|
+
currency: 'USD';
|
|
3895
3820
|
|
|
3896
3821
|
/**
|
|
3897
3822
|
* The account number of the account that sent the transfer.
|
|
@@ -4149,14 +4074,9 @@ export namespace Transaction {
|
|
|
4149
4074
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
4150
4075
|
* currency.
|
|
4151
4076
|
*
|
|
4152
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
4153
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
4154
|
-
* - `EUR` - Euro (EUR)
|
|
4155
|
-
* - `GBP` - British Pound (GBP)
|
|
4156
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
4157
4077
|
* - `USD` - US Dollar (USD)
|
|
4158
4078
|
*/
|
|
4159
|
-
currency: '
|
|
4079
|
+
currency: 'USD';
|
|
4160
4080
|
|
|
4161
4081
|
/**
|
|
4162
4082
|
* The end of the period for which this transaction paid interest.
|
|
@@ -4187,14 +4107,9 @@ export namespace Transaction {
|
|
|
4187
4107
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
|
|
4188
4108
|
* currency.
|
|
4189
4109
|
*
|
|
4190
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
4191
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
4192
|
-
* - `EUR` - Euro (EUR)
|
|
4193
|
-
* - `GBP` - British Pound (GBP)
|
|
4194
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
4195
4110
|
* - `USD` - US Dollar (USD)
|
|
4196
4111
|
*/
|
|
4197
|
-
currency: '
|
|
4112
|
+
currency: 'USD';
|
|
4198
4113
|
|
|
4199
4114
|
/**
|
|
4200
4115
|
* An Internal Source is a transaction between you and Increase. This describes the
|
|
@@ -151,14 +151,9 @@ export interface WireTransfer {
|
|
|
151
151
|
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transfer's
|
|
152
152
|
* currency. For wire transfers this is always equal to `usd`.
|
|
153
153
|
*
|
|
154
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
155
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
156
|
-
* - `EUR` - Euro (EUR)
|
|
157
|
-
* - `GBP` - British Pound (GBP)
|
|
158
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
159
154
|
* - `USD` - US Dollar (USD)
|
|
160
155
|
*/
|
|
161
|
-
currency: '
|
|
156
|
+
currency: 'USD';
|
|
162
157
|
|
|
163
158
|
/**
|
|
164
159
|
* The person or business whose funds are being transferred.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.357.0'; // 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.357.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.357.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|