Comparing version 0.14.0 to 0.15.0
# Changelog | ||
## 0.15.0 (2023-10-27) | ||
Full Changelog: [v0.14.0...v0.15.0](https://github.com/increase/increase-node/compare/v0.14.0...v0.15.0) | ||
### Features | ||
* **api:** add network identifiers and effective date ([#219](https://github.com/increase/increase-node/issues/219)) ([de92338](https://github.com/increase/increase-node/commit/de92338f10e54b67e88a5e0e959923ea157d35d7)) | ||
## 0.14.0 (2023-10-26) | ||
@@ -4,0 +12,0 @@ |
{ | ||
"name": "increase", | ||
"version": "0.14.0", | ||
"version": "0.15.0", | ||
"description": "Client library for the Increase API", | ||
@@ -5,0 +5,0 @@ "author": "Increase <dev-feedback@increase.com>", |
@@ -483,2 +483,9 @@ import * as Core from 'increase/core'; | ||
/** | ||
* The ACH's effective date sent to the receiving bank. If `effective_date` is | ||
* configured in the ACH transfer, this will match the value there. Otherwise, it | ||
* will the date that the ACH transfer was processed, which is usually the current | ||
* or subsequent business day. | ||
*/ | ||
effective_date: string; | ||
/** | ||
* When the funds transfer is expected to settle in the recipient's account. | ||
@@ -485,0 +492,0 @@ * Credits may be available sooner, at the receiving banks discretion. The FedACH |
@@ -43,4 +43,6 @@ import * as Core from 'increase/core'; | ||
* range. | ||
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account | ||
* balances for the dates in a given range. | ||
*/ | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv'; | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv'; | ||
/** | ||
@@ -82,4 +84,6 @@ * The time the Export was created. | ||
* range. | ||
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account | ||
* balances for the dates in a given range. | ||
*/ | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv'; | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv'; | ||
/** | ||
@@ -97,2 +101,7 @@ * Options for the created export. Required if `category` is equal to | ||
* Options for the created export. Required if `category` is equal to | ||
* `bookkeeping_account_balance_csv`. | ||
*/ | ||
bookkeeping_account_balance_csv?: ExportCreateParams.BookkeepingAccountBalanceCsv; | ||
/** | ||
* Options for the created export. Required if `category` is equal to | ||
* `transaction_csv`. | ||
@@ -187,2 +196,43 @@ */ | ||
* Options for the created export. Required if `category` is equal to | ||
* `bookkeeping_account_balance_csv`. | ||
*/ | ||
interface BookkeepingAccountBalanceCsv { | ||
/** | ||
* Filter exported Transactions to the specified BookkeepingAccount. | ||
*/ | ||
bookkeeping_account_id?: string; | ||
/** | ||
* Filter results by time range on the `created_at` attribute. | ||
*/ | ||
created_at?: BookkeepingAccountBalanceCsv.CreatedAt; | ||
} | ||
namespace BookkeepingAccountBalanceCsv { | ||
/** | ||
* Filter results by time range on the `created_at` attribute. | ||
*/ | ||
interface CreatedAt { | ||
/** | ||
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) | ||
* timestamp. | ||
*/ | ||
after?: string; | ||
/** | ||
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) | ||
* timestamp. | ||
*/ | ||
before?: string; | ||
/** | ||
* Return results on or after this | ||
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp. | ||
*/ | ||
on_or_after?: string; | ||
/** | ||
* Return results on or before this | ||
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp. | ||
*/ | ||
on_or_before?: string; | ||
} | ||
} | ||
/** | ||
* Options for the created export. Required if `category` is equal to | ||
* `transaction_csv`. | ||
@@ -189,0 +239,0 @@ */ |
@@ -656,2 +656,10 @@ // File generated from our OpenAPI spec by Stainless. | ||
/** | ||
* The ACH's effective date sent to the receiving bank. If `effective_date` is | ||
* configured in the ACH transfer, this will match the value there. Otherwise, it | ||
* will the date that the ACH transfer was processed, which is usually the current | ||
* or subsequent business day. | ||
*/ | ||
effective_date: string; | ||
/** | ||
* When the funds transfer is expected to settle in the recipient's account. | ||
@@ -658,0 +666,0 @@ * Credits may be available sooner, at the receiving banks discretion. The FedACH |
@@ -64,4 +64,6 @@ // File generated from our OpenAPI spec by Stainless. | ||
* range. | ||
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account | ||
* balances for the dates in a given range. | ||
*/ | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv'; | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv'; | ||
@@ -109,4 +111,6 @@ /** | ||
* range. | ||
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account | ||
* balances for the dates in a given range. | ||
*/ | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv'; | ||
category: 'account_statement_ofx' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv'; | ||
@@ -127,2 +131,8 @@ /** | ||
* Options for the created export. Required if `category` is equal to | ||
* `bookkeeping_account_balance_csv`. | ||
*/ | ||
bookkeeping_account_balance_csv?: ExportCreateParams.BookkeepingAccountBalanceCsv; | ||
/** | ||
* Options for the created export. Required if `category` is equal to | ||
* `transaction_csv`. | ||
@@ -230,2 +240,49 @@ */ | ||
* Options for the created export. Required if `category` is equal to | ||
* `bookkeeping_account_balance_csv`. | ||
*/ | ||
export interface BookkeepingAccountBalanceCsv { | ||
/** | ||
* Filter exported Transactions to the specified BookkeepingAccount. | ||
*/ | ||
bookkeeping_account_id?: string; | ||
/** | ||
* Filter results by time range on the `created_at` attribute. | ||
*/ | ||
created_at?: BookkeepingAccountBalanceCsv.CreatedAt; | ||
} | ||
export namespace BookkeepingAccountBalanceCsv { | ||
/** | ||
* Filter results by time range on the `created_at` attribute. | ||
*/ | ||
export interface CreatedAt { | ||
/** | ||
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) | ||
* timestamp. | ||
*/ | ||
after?: string; | ||
/** | ||
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) | ||
* timestamp. | ||
*/ | ||
before?: string; | ||
/** | ||
* Return results on or after this | ||
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp. | ||
*/ | ||
on_or_after?: string; | ||
/** | ||
* Return results on or before this | ||
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp. | ||
*/ | ||
on_or_before?: string; | ||
} | ||
} | ||
/** | ||
* Options for the created export. Required if `category` is equal to | ||
* `transaction_csv`. | ||
@@ -232,0 +289,0 @@ */ |
@@ -1,1 +0,1 @@ | ||
export const VERSION = '0.14.0'; // x-release-please-version | ||
export const VERSION = '0.15.0'; // x-release-please-version |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "0.14.0"; | ||
export declare const VERSION = "0.15.0"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.VERSION = void 0; | ||
exports.VERSION = '0.14.0'; // x-release-please-version | ||
exports.VERSION = '0.15.0'; // x-release-please-version | ||
//# sourceMappingURL=version.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
4184036
80627
17
204
19
2
152