increase 0.549.0 → 0.551.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.551.0 (2026-05-01)
4
+
5
+ Full Changelog: [v0.550.0...v0.551.0](https://github.com/Increase/increase-typescript/compare/v0.550.0...v0.551.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([161017e](https://github.com/Increase/increase-typescript/commit/161017ef9a5084c3afefba690f89fad7fd9ebeac))
10
+
11
+ ## 0.550.0 (2026-05-01)
12
+
13
+ Full Changelog: [v0.549.0...v0.550.0](https://github.com/Increase/increase-typescript/compare/v0.549.0...v0.550.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([db14767](https://github.com/Increase/increase-typescript/commit/db147676691044e9f05dff17b7a96853c4aea2f1))
18
+
3
19
  ## 0.549.0 (2026-05-01)
4
20
 
5
21
  Full Changelog: [v0.548.0...v0.549.0](https://github.com/Increase/increase-typescript/compare/v0.548.0...v0.549.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "increase",
3
- "version": "0.549.0",
3
+ "version": "0.551.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",
@@ -25,11 +25,11 @@ export declare class Entities extends APIResource {
25
25
  }
26
26
  export interface EntityValidationParams {
27
27
  /**
28
- * The issues to attach to the new managed compliance validation.
28
+ * The validation issues to attach. Only allowed when `status` is `invalid`.
29
29
  */
30
30
  issues: Array<EntityValidationParams.Issue>;
31
31
  /**
32
- * The status to set on the new managed compliance validation.
32
+ * The validation status to set on the Entity.
33
33
  *
34
34
  * - `valid` - The submitted data is valid.
35
35
  * - `invalid` - Additional information is required to validate the data.
@@ -40,7 +40,7 @@ export interface EntityValidationParams {
40
40
  export declare namespace EntityValidationParams {
41
41
  interface Issue {
42
42
  /**
43
- * The category of the issue.
43
+ * The type of issue.
44
44
  *
45
45
  * - `entity_tax_identifier` - The entity's tax identifier could not be validated.
46
46
  * Update the tax ID with the
@@ -25,11 +25,11 @@ export declare class Entities extends APIResource {
25
25
  }
26
26
  export interface EntityValidationParams {
27
27
  /**
28
- * The issues to attach to the new managed compliance validation.
28
+ * The validation issues to attach. Only allowed when `status` is `invalid`.
29
29
  */
30
30
  issues: Array<EntityValidationParams.Issue>;
31
31
  /**
32
- * The status to set on the new managed compliance validation.
32
+ * The validation status to set on the Entity.
33
33
  *
34
34
  * - `valid` - The submitted data is valid.
35
35
  * - `invalid` - Additional information is required to validate the data.
@@ -40,7 +40,7 @@ export interface EntityValidationParams {
40
40
  export declare namespace EntityValidationParams {
41
41
  interface Issue {
42
42
  /**
43
- * The category of the issue.
43
+ * The type of issue.
44
44
  *
45
45
  * - `entity_tax_identifier` - The entity's tax identifier could not be validated.
46
46
  * Update the tax ID with the
@@ -4,8 +4,8 @@ import { APIPromise } from "../../core/api-promise.mjs";
4
4
  import { RequestOptions } from "../../internal/request-options.mjs";
5
5
  export declare class InboundMailItems extends APIResource {
6
6
  /**
7
- * Simulates an inbound mail item to your account, as if someone had mailed a
8
- * physical check to one of your account's Lockboxes.
7
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
8
+ * Recipients, as if someone had mailed a physical check.
9
9
  *
10
10
  * @example
11
11
  * ```ts
@@ -4,8 +4,8 @@ import { APIPromise } from "../../core/api-promise.js";
4
4
  import { RequestOptions } from "../../internal/request-options.js";
5
5
  export declare class InboundMailItems extends APIResource {
6
6
  /**
7
- * Simulates an inbound mail item to your account, as if someone had mailed a
8
- * physical check to one of your account's Lockboxes.
7
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
8
+ * Recipients, as if someone had mailed a physical check.
9
9
  *
10
10
  * @example
11
11
  * ```ts
@@ -5,8 +5,8 @@ exports.InboundMailItems = void 0;
5
5
  const resource_1 = require("../../core/resource.js");
6
6
  class InboundMailItems extends resource_1.APIResource {
7
7
  /**
8
- * Simulates an inbound mail item to your account, as if someone had mailed a
9
- * physical check to one of your account's Lockboxes.
8
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
9
+ * Recipients, as if someone had mailed a physical check.
10
10
  *
11
11
  * @example
12
12
  * ```ts
@@ -2,8 +2,8 @@
2
2
  import { APIResource } from "../../core/resource.mjs";
3
3
  export class InboundMailItems extends APIResource {
4
4
  /**
5
- * Simulates an inbound mail item to your account, as if someone had mailed a
6
- * physical check to one of your account's Lockboxes.
5
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
6
+ * Recipients, as if someone had mailed a physical check.
7
7
  *
8
8
  * @example
9
9
  * ```ts
@@ -36,12 +36,12 @@ export class Entities extends APIResource {
36
36
 
37
37
  export interface EntityValidationParams {
38
38
  /**
39
- * The issues to attach to the new managed compliance validation.
39
+ * The validation issues to attach. Only allowed when `status` is `invalid`.
40
40
  */
41
41
  issues: Array<EntityValidationParams.Issue>;
42
42
 
43
43
  /**
44
- * The status to set on the new managed compliance validation.
44
+ * The validation status to set on the Entity.
45
45
  *
46
46
  * - `valid` - The submitted data is valid.
47
47
  * - `invalid` - Additional information is required to validate the data.
@@ -53,7 +53,7 @@ export interface EntityValidationParams {
53
53
  export namespace EntityValidationParams {
54
54
  export interface Issue {
55
55
  /**
56
- * The category of the issue.
56
+ * The type of issue.
57
57
  *
58
58
  * - `entity_tax_identifier` - The entity's tax identifier could not be validated.
59
59
  * Update the tax ID with the
@@ -7,8 +7,8 @@ import { RequestOptions } from '../../internal/request-options';
7
7
 
8
8
  export class InboundMailItems extends APIResource {
9
9
  /**
10
- * Simulates an inbound mail item to your account, as if someone had mailed a
11
- * physical check to one of your account's Lockboxes.
10
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
11
+ * Recipients, as if someone had mailed a physical check.
12
12
  *
13
13
  * @example
14
14
  * ```ts
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.549.0'; // x-release-please-version
1
+ export const VERSION = '0.551.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.549.0";
1
+ export declare const VERSION = "0.551.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.549.0";
1
+ export declare const VERSION = "0.551.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.549.0'; // x-release-please-version
4
+ exports.VERSION = '0.551.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.549.0'; // x-release-please-version
1
+ export const VERSION = '0.551.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map