increase 0.389.0 → 0.391.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 +16 -0
- package/LICENSE +1 -1
- package/package.json +1 -1
- package/resources/simulations/exports.d.mts +26 -4
- package/resources/simulations/exports.d.mts.map +1 -1
- package/resources/simulations/exports.d.ts +26 -4
- package/resources/simulations/exports.d.ts.map +1 -1
- package/resources/simulations/exports.js +5 -2
- package/resources/simulations/exports.js.map +1 -1
- package/resources/simulations/exports.mjs +5 -2
- package/resources/simulations/exports.mjs.map +1 -1
- package/src/resources/simulations/exports.ts +28 -4
- package/src/version.ts +1 -1
- package/version.d.mts +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,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.391.0 (2026-01-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.390.0...v0.391.0](https://github.com/Increase/increase-typescript/compare/v0.390.0...v0.391.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([5a77d83](https://github.com/Increase/increase-typescript/commit/5a77d83a628e8c97d59933617241dea9fbf56df4))
|
|
10
|
+
|
|
11
|
+
## 0.390.0 (2025-12-19)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.389.0...v0.390.0](https://github.com/Increase/increase-typescript/compare/v0.389.0...v0.390.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([07310ca](https://github.com/Increase/increase-typescript/commit/07310ca87549c686f517e1d3645c681d1b950224))
|
|
18
|
+
|
|
3
19
|
## 0.389.0 (2025-12-18)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.388.0...v0.389.0](https://github.com/Increase/increase-typescript/compare/v0.388.0...v0.389.0)
|
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Increase
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/package.json
CHANGED
|
@@ -4,12 +4,15 @@ import { APIPromise } from "../../core/api-promise.mjs";
|
|
|
4
4
|
import { RequestOptions } from "../../internal/request-options.mjs";
|
|
5
5
|
export declare class Exports extends APIResource {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
8
|
+
* exports are created automatically by Increase. For example, tax documents are
|
|
9
|
+
* published once a year. In sandbox, you can trigger the arrival of an export that
|
|
10
|
+
* would normally only be created automatically via this simulation.
|
|
8
11
|
*
|
|
9
12
|
* @example
|
|
10
13
|
* ```ts
|
|
11
14
|
* const _export = await client.simulations.exports.create({
|
|
12
|
-
*
|
|
15
|
+
* category: 'form_1099_int',
|
|
13
16
|
* });
|
|
14
17
|
* ```
|
|
15
18
|
*/
|
|
@@ -17,9 +20,28 @@ export declare class Exports extends APIResource {
|
|
|
17
20
|
}
|
|
18
21
|
export interface ExportCreateParams {
|
|
19
22
|
/**
|
|
20
|
-
* The
|
|
23
|
+
* The type of Export to create.
|
|
24
|
+
*
|
|
25
|
+
* - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
|
|
26
|
+
*/
|
|
27
|
+
category: 'form_1099_int';
|
|
28
|
+
/**
|
|
29
|
+
* Options for the created export. Required if `category` is equal to
|
|
30
|
+
* `form_1099_int`.
|
|
31
|
+
*/
|
|
32
|
+
form_1099_int?: ExportCreateParams.Form1099Int;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace ExportCreateParams {
|
|
35
|
+
/**
|
|
36
|
+
* Options for the created export. Required if `category` is equal to
|
|
37
|
+
* `form_1099_int`.
|
|
21
38
|
*/
|
|
22
|
-
|
|
39
|
+
interface Form1099Int {
|
|
40
|
+
/**
|
|
41
|
+
* The identifier of the Account the tax document is for.
|
|
42
|
+
*/
|
|
43
|
+
account_id: string;
|
|
44
|
+
}
|
|
23
45
|
}
|
|
24
46
|
export declare namespace Exports {
|
|
25
47
|
export { type ExportCreateParams as ExportCreateParams };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.d.mts","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAEzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC
|
|
1
|
+
{"version":3,"file":"exports.d.mts","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAEzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAAI,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC;CAG1F;AAED,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,QAAQ,EAAE,eAAe,CAAC;IAE1B;;;OAGG;IACH,aAAa,CAAC,EAAE,kBAAkB,CAAC,WAAW,CAAC;CAChD;AAED,yBAAiB,kBAAkB,CAAC;IAClC;;;OAGG;IACH,UAAiB,WAAW;QAC1B;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;KACpB;CACF;AAED,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EAAE,KAAK,kBAAkB,IAAI,kBAAkB,EAAE,CAAC;CAC1D"}
|
|
@@ -4,12 +4,15 @@ import { APIPromise } from "../../core/api-promise.js";
|
|
|
4
4
|
import { RequestOptions } from "../../internal/request-options.js";
|
|
5
5
|
export declare class Exports extends APIResource {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
8
|
+
* exports are created automatically by Increase. For example, tax documents are
|
|
9
|
+
* published once a year. In sandbox, you can trigger the arrival of an export that
|
|
10
|
+
* would normally only be created automatically via this simulation.
|
|
8
11
|
*
|
|
9
12
|
* @example
|
|
10
13
|
* ```ts
|
|
11
14
|
* const _export = await client.simulations.exports.create({
|
|
12
|
-
*
|
|
15
|
+
* category: 'form_1099_int',
|
|
13
16
|
* });
|
|
14
17
|
* ```
|
|
15
18
|
*/
|
|
@@ -17,9 +20,28 @@ export declare class Exports extends APIResource {
|
|
|
17
20
|
}
|
|
18
21
|
export interface ExportCreateParams {
|
|
19
22
|
/**
|
|
20
|
-
* The
|
|
23
|
+
* The type of Export to create.
|
|
24
|
+
*
|
|
25
|
+
* - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
|
|
26
|
+
*/
|
|
27
|
+
category: 'form_1099_int';
|
|
28
|
+
/**
|
|
29
|
+
* Options for the created export. Required if `category` is equal to
|
|
30
|
+
* `form_1099_int`.
|
|
31
|
+
*/
|
|
32
|
+
form_1099_int?: ExportCreateParams.Form1099Int;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace ExportCreateParams {
|
|
35
|
+
/**
|
|
36
|
+
* Options for the created export. Required if `category` is equal to
|
|
37
|
+
* `form_1099_int`.
|
|
21
38
|
*/
|
|
22
|
-
|
|
39
|
+
interface Form1099Int {
|
|
40
|
+
/**
|
|
41
|
+
* The identifier of the Account the tax document is for.
|
|
42
|
+
*/
|
|
43
|
+
account_id: string;
|
|
44
|
+
}
|
|
23
45
|
}
|
|
24
46
|
export declare namespace Exports {
|
|
25
47
|
export { type ExportCreateParams as ExportCreateParams };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAEzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC
|
|
1
|
+
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAEzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAAI,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC;CAG1F;AAED,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,QAAQ,EAAE,eAAe,CAAC;IAE1B;;;OAGG;IACH,aAAa,CAAC,EAAE,kBAAkB,CAAC,WAAW,CAAC;CAChD;AAED,yBAAiB,kBAAkB,CAAC;IAClC;;;OAGG;IACH,UAAiB,WAAW;QAC1B;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;KACpB;CACF;AAED,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EAAE,KAAK,kBAAkB,IAAI,kBAAkB,EAAE,CAAC;CAC1D"}
|
|
@@ -5,12 +5,15 @@ exports.Exports = void 0;
|
|
|
5
5
|
const resource_1 = require("../../core/resource.js");
|
|
6
6
|
class Exports extends resource_1.APIResource {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
9
|
+
* exports are created automatically by Increase. For example, tax documents are
|
|
10
|
+
* published once a year. In sandbox, you can trigger the arrival of an export that
|
|
11
|
+
* would normally only be created automatically via this simulation.
|
|
9
12
|
*
|
|
10
13
|
* @example
|
|
11
14
|
* ```ts
|
|
12
15
|
* const _export = await client.simulations.exports.create({
|
|
13
|
-
*
|
|
16
|
+
* category: 'form_1099_int',
|
|
14
17
|
* });
|
|
15
18
|
* ```
|
|
16
19
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.js","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAKlD,MAAa,OAAQ,SAAQ,sBAAW;IACtC
|
|
1
|
+
{"version":3,"file":"exports.js","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAKlD,MAAa,OAAQ,SAAQ,sBAAW;IACtC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAAwB,EAAE,OAAwB;QACvD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACzE,CAAC;CACF;AAjBD,0BAiBC"}
|
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
import { APIResource } from "../../core/resource.mjs";
|
|
3
3
|
export class Exports extends APIResource {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
6
|
+
* exports are created automatically by Increase. For example, tax documents are
|
|
7
|
+
* published once a year. In sandbox, you can trigger the arrival of an export that
|
|
8
|
+
* would normally only be created automatically via this simulation.
|
|
6
9
|
*
|
|
7
10
|
* @example
|
|
8
11
|
* ```ts
|
|
9
12
|
* const _export = await client.simulations.exports.create({
|
|
10
|
-
*
|
|
13
|
+
* category: 'form_1099_int',
|
|
11
14
|
* });
|
|
12
15
|
* ```
|
|
13
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.mjs","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACtC
|
|
1
|
+
{"version":3,"file":"exports.mjs","sourceRoot":"","sources":["../../src/resources/simulations/exports.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAAwB,EAAE,OAAwB;QACvD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACzE,CAAC;CACF"}
|
|
@@ -7,12 +7,15 @@ import { RequestOptions } from '../../internal/request-options';
|
|
|
7
7
|
|
|
8
8
|
export class Exports extends APIResource {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* Many exports are created by you via POST /exports or in the Dashboard. Some
|
|
11
|
+
* exports are created automatically by Increase. For example, tax documents are
|
|
12
|
+
* published once a year. In sandbox, you can trigger the arrival of an export that
|
|
13
|
+
* would normally only be created automatically via this simulation.
|
|
11
14
|
*
|
|
12
15
|
* @example
|
|
13
16
|
* ```ts
|
|
14
17
|
* const _export = await client.simulations.exports.create({
|
|
15
|
-
*
|
|
18
|
+
* category: 'form_1099_int',
|
|
16
19
|
* });
|
|
17
20
|
* ```
|
|
18
21
|
*/
|
|
@@ -23,9 +26,30 @@ export class Exports extends APIResource {
|
|
|
23
26
|
|
|
24
27
|
export interface ExportCreateParams {
|
|
25
28
|
/**
|
|
26
|
-
* The
|
|
29
|
+
* The type of Export to create.
|
|
30
|
+
*
|
|
31
|
+
* - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
|
|
27
32
|
*/
|
|
28
|
-
|
|
33
|
+
category: 'form_1099_int';
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Options for the created export. Required if `category` is equal to
|
|
37
|
+
* `form_1099_int`.
|
|
38
|
+
*/
|
|
39
|
+
form_1099_int?: ExportCreateParams.Form1099Int;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export namespace ExportCreateParams {
|
|
43
|
+
/**
|
|
44
|
+
* Options for the created export. Required if `category` is equal to
|
|
45
|
+
* `form_1099_int`.
|
|
46
|
+
*/
|
|
47
|
+
export interface Form1099Int {
|
|
48
|
+
/**
|
|
49
|
+
* The identifier of the Account the tax document is for.
|
|
50
|
+
*/
|
|
51
|
+
account_id: string;
|
|
52
|
+
}
|
|
29
53
|
}
|
|
30
54
|
|
|
31
55
|
export declare namespace Exports {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.391.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.391.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.391.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.391.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|