increase 0.42.0 → 0.43.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 +13 -0
- package/package.json +1 -2
- package/resources/ach-transfers.d.ts +1 -1
- package/resources/declined-transactions.d.ts +1 -1
- package/resources/oauth-connections.d.ts +16 -0
- package/resources/oauth-connections.d.ts.map +1 -1
- package/resources/oauth-connections.js.map +1 -1
- package/resources/oauth-connections.mjs.map +1 -1
- package/resources/simulations/ach-transfers.d.ts +1 -1
- package/resources/simulations/ach-transfers.js +1 -1
- package/resources/simulations/ach-transfers.mjs +1 -1
- package/resources/simulations/cards.d.ts +1 -1
- package/resources/simulations/real-time-payments-transfers.d.ts +3 -3
- package/resources/transactions.d.ts +2 -2
- package/src/resources/ach-transfers.ts +1 -1
- package/src/resources/declined-transactions.ts +1 -1
- package/src/resources/oauth-connections.ts +20 -1
- package/src/resources/simulations/ach-transfers.ts +1 -1
- package/src/resources/simulations/cards.ts +1 -1
- package/src/resources/simulations/real-time-payments-transfers.ts +3 -3
- package/src/resources/transactions.ts +2 -2
- package/src/version.ts +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,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.43.0 (2024-04-02)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.42.0...v0.43.0](https://github.com/Increase/increase-node/compare/v0.42.0...v0.43.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** filter OAuth connections by their status ([#356](https://github.com/Increase/increase-node/issues/356)) ([0316140](https://github.com/Increase/increase-node/commit/03161400fe12547c1e87aba24339c380babbc69f))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **deps:** remove unused dependency digest-fetch ([#354](https://github.com/Increase/increase-node/issues/354)) ([415325a](https://github.com/Increase/increase-node/commit/415325a7387c2df4ec56ccb2d3d066877391cce3))
|
|
15
|
+
|
|
3
16
|
## 0.42.0 (2024-03-29)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v0.41.0...v0.42.0](https://github.com/Increase/increase-node/compare/v0.41.0...v0.42.0)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "increase",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.0",
|
|
4
4
|
"description": "The official TypeScript library for the Increase API",
|
|
5
5
|
"author": "Increase <dev-feedback@increase.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"@types/qs": "^6.9.7",
|
|
28
28
|
"abort-controller": "^3.0.0",
|
|
29
29
|
"agentkeepalive": "^4.2.1",
|
|
30
|
-
"digest-fetch": "^1.3.0",
|
|
31
30
|
"form-data-encoder": "1.7.2",
|
|
32
31
|
"formdata-node": "^4.3.2",
|
|
33
32
|
"node-fetch": "^2.6.7",
|
|
@@ -587,7 +587,7 @@ export declare namespace ACHTransfer {
|
|
|
587
587
|
* bank. Along with the amount, date, and originating routing number, this can be
|
|
588
588
|
* used to identify the ACH transfer at the receiving bank. ACH trace numbers are
|
|
589
589
|
* not unique, but are
|
|
590
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
590
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
591
591
|
*/
|
|
592
592
|
trace_number: string;
|
|
593
593
|
}
|
|
@@ -858,7 +858,7 @@ export declare namespace DeclinedTransaction {
|
|
|
858
858
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
859
859
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
860
860
|
* ACH trace numbers are not unique, but are
|
|
861
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
861
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
862
862
|
*/
|
|
863
863
|
trace_number: string;
|
|
864
864
|
}
|
|
@@ -30,6 +30,11 @@ export interface OAuthConnection {
|
|
|
30
30
|
* Connection was created.
|
|
31
31
|
*/
|
|
32
32
|
created_at: string;
|
|
33
|
+
/**
|
|
34
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp when the OAuth
|
|
35
|
+
* Connection was deleted.
|
|
36
|
+
*/
|
|
37
|
+
deleted_at: string | null;
|
|
33
38
|
/**
|
|
34
39
|
* The identifier of the Group that has authorized your OAuth application.
|
|
35
40
|
*/
|
|
@@ -48,6 +53,17 @@ export interface OAuthConnection {
|
|
|
48
53
|
type: 'oauth_connection';
|
|
49
54
|
}
|
|
50
55
|
export interface OAuthConnectionListParams extends PageParams {
|
|
56
|
+
status?: OAuthConnectionListParams.Status;
|
|
57
|
+
}
|
|
58
|
+
export declare namespace OAuthConnectionListParams {
|
|
59
|
+
interface Status {
|
|
60
|
+
/**
|
|
61
|
+
* Filter to OAuth Connections by their status. By default, return only the
|
|
62
|
+
* `active` ones. For GET requests, this should be encoded as a comma-delimited
|
|
63
|
+
* string, such as `?in=one,two,three`.
|
|
64
|
+
*/
|
|
65
|
+
in?: Array<'active' | 'inactive'>;
|
|
66
|
+
}
|
|
51
67
|
}
|
|
52
68
|
export declare namespace OAuthConnections {
|
|
53
69
|
export import OAuthConnection = OAuthConnectionsAPI.OAuthConnection;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oauth-connections.d.ts","sourceRoot":"","sources":["../src/resources/oauth-connections.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,KAAK,mBAAmB,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAE5D,qBAAa,gBAAiB,SAAQ,WAAW;IAC/C;;OAEG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;IAIpG;;OAEG;IACH,IAAI,CACF,KAAK,CAAC,EAAE,yBAAyB,EACjC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,eAAe,CAAC;IAC1D,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,eAAe,CAAC;CAU7F;AAED,qBAAa,oBAAqB,SAAQ,IAAI,CAAC,eAAe,CAAC;CAAG;AAElE;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,MAAM,EAAE,QAAQ,GAAG,UAAU,CAAC;IAE9B;;;OAGG;IACH,IAAI,EAAE,kBAAkB,CAAC;CAC1B;AAED,MAAM,WAAW,yBAA0B,SAAQ,UAAU;
|
|
1
|
+
{"version":3,"file":"oauth-connections.d.ts","sourceRoot":"","sources":["../src/resources/oauth-connections.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,KAAK,mBAAmB,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAE5D,qBAAa,gBAAiB,SAAQ,WAAW;IAC/C;;OAEG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;IAIpG;;OAEG;IACH,IAAI,CACF,KAAK,CAAC,EAAE,yBAAyB,EACjC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,eAAe,CAAC;IAC1D,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,eAAe,CAAC;CAU7F;AAED,qBAAa,oBAAqB,SAAQ,IAAI,CAAC,eAAe,CAAC;CAAG;AAElE;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,MAAM,EAAE,QAAQ,GAAG,UAAU,CAAC;IAE9B;;;OAGG;IACH,IAAI,EAAE,kBAAkB,CAAC;CAC1B;AAED,MAAM,WAAW,yBAA0B,SAAQ,UAAU;IAC3D,MAAM,CAAC,EAAE,yBAAyB,CAAC,MAAM,CAAC;CAC3C;AAED,yBAAiB,yBAAyB,CAAC;IACzC,UAAiB,MAAM;QACrB;;;;WAIG;QACH,EAAE,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC,CAAC;KACnC;CACF;AAED,yBAAiB,gBAAgB,CAAC;IAChC,MAAM,QAAQ,eAAe,GAAG,mBAAmB,CAAC,eAAe,CAAC;IACpE,MAAM,QAAQ,oBAAoB,GAAG,mBAAmB,CAAC,oBAAoB,CAAC;IAC9E,MAAM,QAAQ,yBAAyB,GAAG,mBAAmB,CAAC,yBAAyB,CAAC;CACzF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oauth-connections.js","sourceRoot":"","sources":["../src/resources/oauth-connections.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAGtF,gDAAgD;AAChD,wCAAiD;AACjD,0FAA4E;AAC5E,oDAA4D;AAE5D,MAAa,gBAAiB,SAAQ,sBAAW;IAC/C;;OAEG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAUD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;CACF;AAzBD,4CAyBC;AAED,MAAa,oBAAqB,SAAQ,iBAAqB;CAAG;AAAlE,oDAAkE;
|
|
1
|
+
{"version":3,"file":"oauth-connections.js","sourceRoot":"","sources":["../src/resources/oauth-connections.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAGtF,gDAAgD;AAChD,wCAAiD;AACjD,0FAA4E;AAC5E,oDAA4D;AAE5D,MAAa,gBAAiB,SAAQ,sBAAW;IAC/C;;OAEG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAUD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;CACF;AAzBD,4CAyBC;AAED,MAAa,oBAAqB,SAAQ,iBAAqB;CAAG;AAAlE,oDAAkE;AA4DlE,WAAiB,gBAAgB;IAEjB,qCAAoB,GAAG,mBAAmB,CAAC,oBAAoB,CAAC;AAEhF,CAAC,EAJgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAIhC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oauth-connections.mjs","sourceRoot":"","sources":["../src/resources/oauth-connections.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAG/E,EAAE,WAAW,EAAE,MAAM,mBAAmB;OACxC,EAAE,gBAAgB,EAAE,MAAM,eAAe;OACzC,KAAK,mBAAmB,MAAM,sCAAsC;OACpE,EAAE,IAAI,EAAmB,MAAM,qBAAqB;AAE3D,MAAM,OAAO,gBAAiB,SAAQ,WAAW;IAC/C;;OAEG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAUD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;CACF;AAED,MAAM,OAAO,oBAAqB,SAAQ,IAAqB;CAAG;
|
|
1
|
+
{"version":3,"file":"oauth-connections.mjs","sourceRoot":"","sources":["../src/resources/oauth-connections.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAG/E,EAAE,WAAW,EAAE,MAAM,mBAAmB;OACxC,EAAE,gBAAgB,EAAE,MAAM,eAAe;OACzC,KAAK,mBAAmB,MAAM,sCAAsC;OACpE,EAAE,IAAI,EAAmB,MAAM,qBAAqB;AAE3D,MAAM,OAAO,gBAAiB,SAAQ,WAAW;IAC/C;;OAEG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAUD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;CACF;AAED,MAAM,OAAO,oBAAqB,SAAQ,IAAqB;CAAG;AA4DlE,WAAiB,gBAAgB;IAEjB,qCAAoB,GAAG,mBAAmB,CAAC,oBAAoB,CAAC;AAEhF,CAAC,EAJgB,gBAAgB,KAAhB,gBAAgB,QAIhC"}
|
|
@@ -10,7 +10,7 @@ export declare class ACHTransfers extends APIResource {
|
|
|
10
10
|
* transfer may be either a credit or a debit depending on if the `amount` is
|
|
11
11
|
* positive or negative. The result of calling this API will contain the created
|
|
12
12
|
* transfer. You can pass a `resolve_at` parameter to allow for a window to
|
|
13
|
-
* [action on the Inbound ACH Transfer](https://increase.com/documentation/
|
|
13
|
+
* [action on the Inbound ACH Transfer](https://increase.com/documentation/receiving-ach-transfers).
|
|
14
14
|
* Alternatively, if you don't pass the `resolve_at` parameter the result will
|
|
15
15
|
* contain either a [Transaction](#transactions) or a
|
|
16
16
|
* [Declined Transaction](#declined-transactions) depending on whether or not the
|
|
@@ -10,7 +10,7 @@ class ACHTransfers extends resource_1.APIResource {
|
|
|
10
10
|
* transfer may be either a credit or a debit depending on if the `amount` is
|
|
11
11
|
* positive or negative. The result of calling this API will contain the created
|
|
12
12
|
* transfer. You can pass a `resolve_at` parameter to allow for a window to
|
|
13
|
-
* [action on the Inbound ACH Transfer](https://increase.com/documentation/
|
|
13
|
+
* [action on the Inbound ACH Transfer](https://increase.com/documentation/receiving-ach-transfers).
|
|
14
14
|
* Alternatively, if you don't pass the `resolve_at` parameter the result will
|
|
15
15
|
* contain either a [Transaction](#transactions) or a
|
|
16
16
|
* [Declined Transaction](#declined-transactions) depending on whether or not the
|
|
@@ -7,7 +7,7 @@ export class ACHTransfers extends APIResource {
|
|
|
7
7
|
* transfer may be either a credit or a debit depending on if the `amount` is
|
|
8
8
|
* positive or negative. The result of calling this API will contain the created
|
|
9
9
|
* transfer. You can pass a `resolve_at` parameter to allow for a window to
|
|
10
|
-
* [action on the Inbound ACH Transfer](https://increase.com/documentation/
|
|
10
|
+
* [action on the Inbound ACH Transfer](https://increase.com/documentation/receiving-ach-transfers).
|
|
11
11
|
* Alternatively, if you don't pass the `resolve_at` parameter the result will
|
|
12
12
|
* contain either a [Transaction](#transactions) or a
|
|
13
13
|
* [Declined Transaction](#declined-transactions) depending on whether or not the
|
|
@@ -888,7 +888,7 @@ export declare namespace CardAuthorizationSimulation {
|
|
|
888
888
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
889
889
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
890
890
|
* ACH trace numbers are not unique, but are
|
|
891
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
891
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
892
892
|
*/
|
|
893
893
|
trace_number: string;
|
|
894
894
|
}
|
|
@@ -883,7 +883,7 @@ export declare namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
883
883
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
884
884
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
885
885
|
* ACH trace numbers are not unique, but are
|
|
886
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
886
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
887
887
|
*/
|
|
888
888
|
trace_number: string;
|
|
889
889
|
}
|
|
@@ -2778,7 +2778,7 @@ export declare namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
2778
2778
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
2779
2779
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
2780
2780
|
* ACH trace numbers are not unique, but are
|
|
2781
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
2781
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
2782
2782
|
*/
|
|
2783
2783
|
trace_number: string;
|
|
2784
2784
|
/**
|
|
@@ -3083,7 +3083,7 @@ export declare namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
3083
3083
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
3084
3084
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
3085
3085
|
* ACH trace numbers are not unique, but are
|
|
3086
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
3086
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
3087
3087
|
*/
|
|
3088
3088
|
trace_number: string;
|
|
3089
3089
|
}
|
|
@@ -1881,7 +1881,7 @@ export declare namespace Transaction {
|
|
|
1881
1881
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
1882
1882
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
1883
1883
|
* ACH trace numbers are not unique, but are
|
|
1884
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
1884
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
1885
1885
|
*/
|
|
1886
1886
|
trace_number: string;
|
|
1887
1887
|
/**
|
|
@@ -2186,7 +2186,7 @@ export declare namespace Transaction {
|
|
|
2186
2186
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
2187
2187
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
2188
2188
|
* ACH trace numbers are not unique, but are
|
|
2189
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
2189
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
2190
2190
|
*/
|
|
2191
2191
|
trace_number: string;
|
|
2192
2192
|
}
|
|
@@ -773,7 +773,7 @@ export namespace ACHTransfer {
|
|
|
773
773
|
* bank. Along with the amount, date, and originating routing number, this can be
|
|
774
774
|
* used to identify the ACH transfer at the receiving bank. ACH trace numbers are
|
|
775
775
|
* not unique, but are
|
|
776
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
776
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
777
777
|
*/
|
|
778
778
|
trace_number: string;
|
|
779
779
|
}
|
|
@@ -1109,7 +1109,7 @@ export namespace DeclinedTransaction {
|
|
|
1109
1109
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
1110
1110
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
1111
1111
|
* ACH trace numbers are not unique, but are
|
|
1112
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
1112
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
1113
1113
|
*/
|
|
1114
1114
|
trace_number: string;
|
|
1115
1115
|
}
|
|
@@ -52,6 +52,12 @@ export interface OAuthConnection {
|
|
|
52
52
|
*/
|
|
53
53
|
created_at: string;
|
|
54
54
|
|
|
55
|
+
/**
|
|
56
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp when the OAuth
|
|
57
|
+
* Connection was deleted.
|
|
58
|
+
*/
|
|
59
|
+
deleted_at: string | null;
|
|
60
|
+
|
|
55
61
|
/**
|
|
56
62
|
* The identifier of the Group that has authorized your OAuth application.
|
|
57
63
|
*/
|
|
@@ -72,7 +78,20 @@ export interface OAuthConnection {
|
|
|
72
78
|
type: 'oauth_connection';
|
|
73
79
|
}
|
|
74
80
|
|
|
75
|
-
export interface OAuthConnectionListParams extends PageParams {
|
|
81
|
+
export interface OAuthConnectionListParams extends PageParams {
|
|
82
|
+
status?: OAuthConnectionListParams.Status;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export namespace OAuthConnectionListParams {
|
|
86
|
+
export interface Status {
|
|
87
|
+
/**
|
|
88
|
+
* Filter to OAuth Connections by their status. By default, return only the
|
|
89
|
+
* `active` ones. For GET requests, this should be encoded as a comma-delimited
|
|
90
|
+
* string, such as `?in=one,two,three`.
|
|
91
|
+
*/
|
|
92
|
+
in?: Array<'active' | 'inactive'>;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
76
95
|
|
|
77
96
|
export namespace OAuthConnections {
|
|
78
97
|
export import OAuthConnection = OAuthConnectionsAPI.OAuthConnection;
|
|
@@ -13,7 +13,7 @@ export class ACHTransfers extends APIResource {
|
|
|
13
13
|
* transfer may be either a credit or a debit depending on if the `amount` is
|
|
14
14
|
* positive or negative. The result of calling this API will contain the created
|
|
15
15
|
* transfer. You can pass a `resolve_at` parameter to allow for a window to
|
|
16
|
-
* [action on the Inbound ACH Transfer](https://increase.com/documentation/
|
|
16
|
+
* [action on the Inbound ACH Transfer](https://increase.com/documentation/receiving-ach-transfers).
|
|
17
17
|
* Alternatively, if you don't pass the `resolve_at` parameter the result will
|
|
18
18
|
* contain either a [Transaction](#transactions) or a
|
|
19
19
|
* [Declined Transaction](#declined-transactions) depending on whether or not the
|
|
@@ -1134,7 +1134,7 @@ export namespace CardAuthorizationSimulation {
|
|
|
1134
1134
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
1135
1135
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
1136
1136
|
* ACH trace numbers are not unique, but are
|
|
1137
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
1137
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
1138
1138
|
*/
|
|
1139
1139
|
trace_number: string;
|
|
1140
1140
|
}
|
|
@@ -1133,7 +1133,7 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
1133
1133
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
1134
1134
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
1135
1135
|
* ACH trace numbers are not unique, but are
|
|
1136
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
1136
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
1137
1137
|
*/
|
|
1138
1138
|
trace_number: string;
|
|
1139
1139
|
}
|
|
@@ -3550,7 +3550,7 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
3550
3550
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
3551
3551
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
3552
3552
|
* ACH trace numbers are not unique, but are
|
|
3553
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
3553
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
3554
3554
|
*/
|
|
3555
3555
|
trace_number: string;
|
|
3556
3556
|
|
|
@@ -3931,7 +3931,7 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
3931
3931
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
3932
3932
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
3933
3933
|
* ACH trace numbers are not unique, but are
|
|
3934
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
3934
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
3935
3935
|
*/
|
|
3936
3936
|
trace_number: string;
|
|
3937
3937
|
}
|
|
@@ -2414,7 +2414,7 @@ export namespace Transaction {
|
|
|
2414
2414
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
2415
2415
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
2416
2416
|
* ACH trace numbers are not unique, but are
|
|
2417
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
2417
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
2418
2418
|
*/
|
|
2419
2419
|
trace_number: string;
|
|
2420
2420
|
|
|
@@ -2795,7 +2795,7 @@ export namespace Transaction {
|
|
|
2795
2795
|
* originating and receiving bank. Along with the amount, date, and originating
|
|
2796
2796
|
* routing number, this can be used to identify the ACH transfer at either bank.
|
|
2797
2797
|
* ACH trace numbers are not unique, but are
|
|
2798
|
-
* [used to correlate returns](https://increase.com/documentation/ach#returns).
|
|
2798
|
+
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
|
|
2799
2799
|
*/
|
|
2800
2800
|
trace_number: string;
|
|
2801
2801
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.43.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.43.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.43.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|