increase 0.105.0 → 0.106.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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.106.0 (2024-09-17)
4
+
5
+ Full Changelog: [v0.105.0...v0.106.0](https://github.com/Increase/increase-node/compare/v0.105.0...v0.106.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** OpenAPI spec update via Stainless API ([#610](https://github.com/Increase/increase-node/issues/610)) ([41d3ef6](https://github.com/Increase/increase-node/commit/41d3ef6f813a8459e38f5cb57875a7df5ef26072))
10
+
3
11
  ## 0.105.0 (2024-09-09)
4
12
 
5
13
  Full Changelog: [v0.104.0...v0.105.0](https://github.com/Increase/increase-node/compare/v0.104.0...v0.105.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "increase",
3
- "version": "0.105.0",
3
+ "version": "0.106.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",
@@ -4,8 +4,9 @@ import * as CheckTransfersAPI from "../check-transfers.js";
4
4
  export declare class CheckTransfers extends APIResource {
5
5
  /**
6
6
  * Simulates the mailing of a [Check Transfer](#check-transfers), which happens
7
- * once per weekday in production but can be sped up in sandbox. This transfer must
8
- * first have a `status` of `pending_approval` or `pending_submission`.
7
+ * periodically throughout the day in production but can be sped up in sandbox.
8
+ * This transfer must first have a `status` of `pending_approval` or
9
+ * `pending_submission`.
9
10
  */
10
11
  mail(checkTransferId: string, options?: Core.RequestOptions): Core.APIPromise<CheckTransfersAPI.CheckTransfer>;
11
12
  }
@@ -1 +1 @@
1
- {"version":3,"file":"check-transfers.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/check-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,iBAAiB,MAAM,oBAAoB,CAAC;AAExD,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;;;OAIG;IACH,IAAI,CACF,eAAe,EAAE,MAAM,EACvB,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC,aAAa,CAAC;CAGpD"}
1
+ {"version":3,"file":"check-transfers.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/check-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,iBAAiB,MAAM,oBAAoB,CAAC;AAExD,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;;;;OAKG;IACH,IAAI,CACF,eAAe,EAAE,MAAM,EACvB,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC,aAAa,CAAC;CAGpD"}
@@ -6,8 +6,9 @@ const resource_1 = require("../../resource.js");
6
6
  class CheckTransfers extends resource_1.APIResource {
7
7
  /**
8
8
  * Simulates the mailing of a [Check Transfer](#check-transfers), which happens
9
- * once per weekday in production but can be sped up in sandbox. This transfer must
10
- * first have a `status` of `pending_approval` or `pending_submission`.
9
+ * periodically throughout the day in production but can be sped up in sandbox.
10
+ * This transfer must first have a `status` of `pending_approval` or
11
+ * `pending_submission`.
11
12
  */
12
13
  mail(checkTransferId, options) {
13
14
  return this._client.post(`/simulations/check_transfers/${checkTransferId}/mail`, options);
@@ -1 +1 @@
1
- {"version":3,"file":"check-transfers.js","sourceRoot":"","sources":["../../src/resources/simulations/check-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAI7C,MAAa,cAAe,SAAQ,sBAAW;IAC7C;;;;OAIG;IACH,IAAI,CACF,eAAuB,EACvB,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gCAAgC,eAAe,OAAO,EAAE,OAAO,CAAC,CAAC;IAC5F,CAAC;CACF;AAZD,wCAYC"}
1
+ {"version":3,"file":"check-transfers.js","sourceRoot":"","sources":["../../src/resources/simulations/check-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAI7C,MAAa,cAAe,SAAQ,sBAAW;IAC7C;;;;;OAKG;IACH,IAAI,CACF,eAAuB,EACvB,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gCAAgC,eAAe,OAAO,EAAE,OAAO,CAAC,CAAC;IAC5F,CAAC;CACF;AAbD,wCAaC"}
@@ -3,8 +3,9 @@ import { APIResource } from "../../resource.mjs";
3
3
  export class CheckTransfers extends APIResource {
4
4
  /**
5
5
  * Simulates the mailing of a [Check Transfer](#check-transfers), which happens
6
- * once per weekday in production but can be sped up in sandbox. This transfer must
7
- * first have a `status` of `pending_approval` or `pending_submission`.
6
+ * periodically throughout the day in production but can be sped up in sandbox.
7
+ * This transfer must first have a `status` of `pending_approval` or
8
+ * `pending_submission`.
8
9
  */
9
10
  mail(checkTransferId, options) {
10
11
  return this._client.post(`/simulations/check_transfers/${checkTransferId}/mail`, options);
@@ -1 +1 @@
1
- {"version":3,"file":"check-transfers.mjs","sourceRoot":"","sources":["../../src/resources/simulations/check-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAItB,MAAM,OAAO,cAAe,SAAQ,WAAW;IAC7C;;;;OAIG;IACH,IAAI,CACF,eAAuB,EACvB,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gCAAgC,eAAe,OAAO,EAAE,OAAO,CAAC,CAAC;IAC5F,CAAC;CACF"}
1
+ {"version":3,"file":"check-transfers.mjs","sourceRoot":"","sources":["../../src/resources/simulations/check-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAItB,MAAM,OAAO,cAAe,SAAQ,WAAW;IAC7C;;;;;OAKG;IACH,IAAI,CACF,eAAuB,EACvB,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gCAAgC,eAAe,OAAO,EAAE,OAAO,CAAC,CAAC;IAC5F,CAAC;CACF"}
@@ -7,8 +7,9 @@ import * as CheckTransfersAPI from '../check-transfers';
7
7
  export class CheckTransfers extends APIResource {
8
8
  /**
9
9
  * Simulates the mailing of a [Check Transfer](#check-transfers), which happens
10
- * once per weekday in production but can be sped up in sandbox. This transfer must
11
- * first have a `status` of `pending_approval` or `pending_submission`.
10
+ * periodically throughout the day in production but can be sped up in sandbox.
11
+ * This transfer must first have a `status` of `pending_approval` or
12
+ * `pending_submission`.
12
13
  */
13
14
  mail(
14
15
  checkTransferId: string,
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.105.0'; // x-release-please-version
1
+ export const VERSION = '0.106.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.105.0";
1
+ export declare const VERSION = "0.106.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.105.0'; // x-release-please-version
4
+ exports.VERSION = '0.106.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.105.0'; // x-release-please-version
1
+ export const VERSION = '0.106.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map