increase 0.246.0 → 0.247.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/check-transfers.d.ts +1 -1
- package/resources/check-transfers.js +1 -1
- package/resources/check-transfers.mjs +1 -1
- package/src/resources/check-transfers.ts +1 -1
- 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.247.0 (2025-07-23)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.246.0...v0.247.0](https://github.com/Increase/increase-node/compare/v0.246.0...v0.247.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([32889bb](https://github.com/Increase/increase-node/commit/32889bb3b91ffd8913318cc79ee43b2f5a3dd4c5))
|
|
10
|
+
|
|
3
11
|
## 0.246.0 (2025-07-22)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.245.0...v0.246.0](https://github.com/Increase/increase-node/compare/v0.245.0...v0.246.0)
|
package/package.json
CHANGED
|
@@ -64,7 +64,7 @@ export declare class CheckTransfers extends APIResource {
|
|
|
64
64
|
*/
|
|
65
65
|
cancel(checkTransferId: string, options?: Core.RequestOptions): Core.APIPromise<CheckTransfer>;
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* Stop payment on a Check Transfer
|
|
68
68
|
*
|
|
69
69
|
* @example
|
|
70
70
|
* ```ts
|
|
@@ -69,7 +69,7 @@ class CheckTransfers extends resource_1.APIResource {
|
|
|
69
69
|
return this._client.post(`/check_transfers/${checkTransferId}/cancel`, options);
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Stop payment on a Check Transfer
|
|
73
73
|
*
|
|
74
74
|
* @example
|
|
75
75
|
* ```ts
|
|
@@ -66,7 +66,7 @@ export class CheckTransfers extends APIResource {
|
|
|
66
66
|
return this._client.post(`/check_transfers/${checkTransferId}/cancel`, options);
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* Stop payment on a Check Transfer
|
|
70
70
|
*
|
|
71
71
|
* @example
|
|
72
72
|
* ```ts
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.247.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.247.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.247.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|