increase 0.345.0 → 0.346.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/accounts.d.ts +1 -1
- package/src/resources/accounts.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.346.0 (2025-10-29)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.345.0...v0.346.0](https://github.com/Increase/increase-node/compare/v0.345.0...v0.346.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([f2e8557](https://github.com/Increase/increase-node/commit/f2e855702786e6bb529461ae114c3b5d68ccdeb0))
|
|
10
|
+
|
|
3
11
|
## 0.345.0 (2025-10-28)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.344.0...v0.345.0](https://github.com/Increase/increase-node/compare/v0.344.0...v0.345.0)
|
package/package.json
CHANGED
package/resources/accounts.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ export interface AccountCreateParams {
|
|
|
210
210
|
entity_id?: string;
|
|
211
211
|
/**
|
|
212
212
|
* The identifier of an Entity that, while not owning the Account, is associated
|
|
213
|
-
* with its activity.
|
|
213
|
+
* with its activity. This is generally the beneficiary of the funds.
|
|
214
214
|
*/
|
|
215
215
|
informational_entity_id?: string;
|
|
216
216
|
/**
|
|
@@ -277,7 +277,7 @@ export interface AccountCreateParams {
|
|
|
277
277
|
|
|
278
278
|
/**
|
|
279
279
|
* The identifier of an Entity that, while not owning the Account, is associated
|
|
280
|
-
* with its activity.
|
|
280
|
+
* with its activity. This is generally the beneficiary of the funds.
|
|
281
281
|
*/
|
|
282
282
|
informational_entity_id?: string;
|
|
283
283
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.346.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.346.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.346.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|