increase 0.287.0 → 0.288.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/simulations/inbound-check-deposits.d.ts +12 -0
- package/resources/simulations/inbound-check-deposits.d.ts.map +1 -1
- package/src/resources/simulations/inbound-check-deposits.ts +13 -0
- 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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.288.0 (2025-08-29)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.287.0...v0.288.0](https://github.com/Increase/increase-node/compare/v0.287.0...v0.288.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([f7dfeb4](https://github.com/Increase/increase-node/commit/f7dfeb42e7e6d163722ad07bfb9e55dc8c3a8803))
|
|
10
|
+
|
|
3
11
|
## 0.287.0 (2025-08-28)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.286.0...v0.287.0](https://github.com/Increase/increase-node/compare/v0.286.0...v0.287.0)
|
package/package.json
CHANGED
|
@@ -36,6 +36,18 @@ export interface InboundCheckDepositCreateParams {
|
|
|
36
36
|
* The check number on the check to be deposited.
|
|
37
37
|
*/
|
|
38
38
|
check_number: string;
|
|
39
|
+
/**
|
|
40
|
+
* Simulate the outcome of
|
|
41
|
+
* [payee name checking](https://increase.com/documentation/positive-pay#payee-name-mismatches).
|
|
42
|
+
* Defaults to `not_evaluated`.
|
|
43
|
+
*
|
|
44
|
+
* - `name_matches` - The details on the check match the recipient name of the
|
|
45
|
+
* check transfer.
|
|
46
|
+
* - `does_not_match` - The details on the check do not match the recipient name of
|
|
47
|
+
* the check transfer.
|
|
48
|
+
* - `not_evaluated` - The payee name analysis was not evaluated.
|
|
49
|
+
*/
|
|
50
|
+
payee_name_analysis?: 'name_matches' | 'does_not_match' | 'not_evaluated';
|
|
39
51
|
}
|
|
40
52
|
export declare namespace InboundCheckDeposits {
|
|
41
53
|
export { type InboundCheckDepositCreateParams as InboundCheckDepositCreateParams };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inbound-check-deposits.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/inbound-check-deposits.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,uBAAuB,MAAM,2BAA2B,CAAC;AAErE,qBAAa,oBAAqB,SAAQ,WAAW;IACnD;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACJ,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,uBAAuB,CAAC,mBAAmB,CAAC;CAGhE;AAED,MAAM,WAAW,+BAA+B;IAC9C;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"inbound-check-deposits.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/inbound-check-deposits.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,uBAAuB,MAAM,2BAA2B,CAAC;AAErE,qBAAa,oBAAqB,SAAQ,WAAW;IACnD;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACJ,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,uBAAuB,CAAC,mBAAmB,CAAC;CAGhE;AAED,MAAM,WAAW,+BAA+B;IAC9C;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;;;;;;;;OAUG;IACH,mBAAmB,CAAC,EAAE,cAAc,GAAG,gBAAgB,GAAG,eAAe,CAAC;CAC3E;AAED,MAAM,CAAC,OAAO,WAAW,oBAAoB,CAAC;IAC5C,OAAO,EAAE,KAAK,+BAA+B,IAAI,+BAA+B,EAAE,CAAC;CACpF"}
|
|
@@ -47,6 +47,19 @@ export interface InboundCheckDepositCreateParams {
|
|
|
47
47
|
* The check number on the check to be deposited.
|
|
48
48
|
*/
|
|
49
49
|
check_number: string;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Simulate the outcome of
|
|
53
|
+
* [payee name checking](https://increase.com/documentation/positive-pay#payee-name-mismatches).
|
|
54
|
+
* Defaults to `not_evaluated`.
|
|
55
|
+
*
|
|
56
|
+
* - `name_matches` - The details on the check match the recipient name of the
|
|
57
|
+
* check transfer.
|
|
58
|
+
* - `does_not_match` - The details on the check do not match the recipient name of
|
|
59
|
+
* the check transfer.
|
|
60
|
+
* - `not_evaluated` - The payee name analysis was not evaluated.
|
|
61
|
+
*/
|
|
62
|
+
payee_name_analysis?: 'name_matches' | 'does_not_match' | 'not_evaluated';
|
|
50
63
|
}
|
|
51
64
|
|
|
52
65
|
export declare namespace InboundCheckDeposits {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.288.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.288.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.288.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|