increase 0.241.0 → 0.242.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.242.0 (2025-07-11)
4
+
5
+ Full Changelog: [v0.241.0...v0.242.0](https://github.com/Increase/increase-node/compare/v0.241.0...v0.242.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([c7b8458](https://github.com/Increase/increase-node/commit/c7b845872bc39d73acd4f135926b6854aede44cd))
10
+
3
11
  ## 0.241.0 (2025-07-10)
4
12
 
5
13
  Full Changelog: [v0.240.0...v0.241.0](https://github.com/Increase/increase-node/compare/v0.240.0...v0.241.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "increase",
3
- "version": "0.241.0",
3
+ "version": "0.242.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",
@@ -22,6 +22,16 @@ export interface ProgramCreateParams {
22
22
  * The name of the program being added.
23
23
  */
24
24
  name: string;
25
+ /**
26
+ * The bank for the program's accounts, defaults to First Internet Bank.
27
+ *
28
+ * - `blue_ridge_bank` - Blue Ridge Bank, N.A.
29
+ * - `core_bank` - Core Bank
30
+ * - `first_internet_bank` - First Internet Bank of Indiana
31
+ * - `global_innovations_bank` - Global Innovations Bank
32
+ * - `grasshopper_bank` - Grasshopper Bank
33
+ */
34
+ bank?: 'blue_ridge_bank' | 'core_bank' | 'first_internet_bank' | 'global_innovations_bank' | 'grasshopper_bank';
25
35
  /**
26
36
  * The identifier of the Account the Program should be added to is for.
27
37
  */
@@ -1 +1 @@
1
- {"version":3,"file":"programs.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,WAAW,MAAM,aAAa,CAAC;AAE3C,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;CAGvG;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EAAE,KAAK,mBAAmB,IAAI,mBAAmB,EAAE,CAAC;CAC5D"}
1
+ {"version":3,"file":"programs.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,WAAW,MAAM,aAAa,CAAC;AAE3C,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;CAGvG;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;;;OAQG;IACH,IAAI,CAAC,EACD,iBAAiB,GACjB,WAAW,GACX,qBAAqB,GACrB,yBAAyB,GACzB,kBAAkB,CAAC;IAEvB;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EAAE,KAAK,mBAAmB,IAAI,mBAAmB,EAAE,CAAC;CAC5D"}
@@ -29,6 +29,22 @@ export interface ProgramCreateParams {
29
29
  */
30
30
  name: string;
31
31
 
32
+ /**
33
+ * The bank for the program's accounts, defaults to First Internet Bank.
34
+ *
35
+ * - `blue_ridge_bank` - Blue Ridge Bank, N.A.
36
+ * - `core_bank` - Core Bank
37
+ * - `first_internet_bank` - First Internet Bank of Indiana
38
+ * - `global_innovations_bank` - Global Innovations Bank
39
+ * - `grasshopper_bank` - Grasshopper Bank
40
+ */
41
+ bank?:
42
+ | 'blue_ridge_bank'
43
+ | 'core_bank'
44
+ | 'first_internet_bank'
45
+ | 'global_innovations_bank'
46
+ | 'grasshopper_bank';
47
+
32
48
  /**
33
49
  * The identifier of the Account the Program should be added to is for.
34
50
  */
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.241.0'; // x-release-please-version
1
+ export const VERSION = '0.242.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.241.0";
1
+ export declare const VERSION = "0.242.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.241.0'; // x-release-please-version
4
+ exports.VERSION = '0.242.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.241.0'; // x-release-please-version
1
+ export const VERSION = '0.242.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map