increase 0.517.0 → 0.518.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 +8 -0
- package/package.json +1 -1
- package/resources/exports.d.mts +55 -3
- package/resources/exports.d.mts.map +1 -1
- package/resources/exports.d.ts +55 -3
- package/resources/exports.d.ts.map +1 -1
- package/src/resources/exports.ts +66 -3
- 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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.518.0 (2026-04-09)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.517.0...v0.518.0](https://github.com/Increase/increase-typescript/compare/v0.517.0...v0.518.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([638892c](https://github.com/Increase/increase-typescript/commit/638892c40a5590eb1ca2d7cea93dc31e6c3bff26))
|
|
10
|
+
|
|
3
11
|
## 0.517.0 (2026-04-09)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.516.0...v0.517.0](https://github.com/Increase/increase-typescript/compare/v0.516.0...v0.517.0)
|
package/package.json
CHANGED
package/resources/exports.d.mts
CHANGED
|
@@ -101,12 +101,19 @@ export interface Export {
|
|
|
101
101
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
102
102
|
* that are part of an open fee statement.
|
|
103
103
|
* - `voided_check` - A PDF of a voided check.
|
|
104
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
105
|
+
* starting and ending balances for a given date range.
|
|
104
106
|
*/
|
|
105
|
-
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
|
|
107
|
+
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check' | 'daily_account_balance_csv';
|
|
106
108
|
/**
|
|
107
109
|
* The time the Export was created.
|
|
108
110
|
*/
|
|
109
111
|
created_at: string;
|
|
112
|
+
/**
|
|
113
|
+
* Details of the daily account balance CSV export. This field will be present when
|
|
114
|
+
* the `category` is equal to `daily_account_balance_csv`.
|
|
115
|
+
*/
|
|
116
|
+
daily_account_balance_csv: Export.DailyAccountBalanceCsv | null;
|
|
110
117
|
/**
|
|
111
118
|
* Details of the dashboard table CSV export. This field will be present when the
|
|
112
119
|
* `category` is equal to `dashboard_table_csv`.
|
|
@@ -299,6 +306,24 @@ export declare namespace Export {
|
|
|
299
306
|
before: string | null;
|
|
300
307
|
}
|
|
301
308
|
}
|
|
309
|
+
/**
|
|
310
|
+
* Details of the daily account balance CSV export. This field will be present when
|
|
311
|
+
* the `category` is equal to `daily_account_balance_csv`.
|
|
312
|
+
*/
|
|
313
|
+
interface DailyAccountBalanceCsv {
|
|
314
|
+
/**
|
|
315
|
+
* Filter results by Account.
|
|
316
|
+
*/
|
|
317
|
+
account_id: string | null;
|
|
318
|
+
/**
|
|
319
|
+
* Filter balances on or after this date.
|
|
320
|
+
*/
|
|
321
|
+
on_or_after_date: string | null;
|
|
322
|
+
/**
|
|
323
|
+
* Filter balances on or before this date.
|
|
324
|
+
*/
|
|
325
|
+
on_or_before_date: string | null;
|
|
326
|
+
}
|
|
302
327
|
/**
|
|
303
328
|
* Details of the dashboard table CSV export. This field will be present when the
|
|
304
329
|
* `category` is equal to `dashboard_table_csv`.
|
|
@@ -475,8 +500,10 @@ export interface ExportCreateParams {
|
|
|
475
500
|
* - `account_verification_letter` - A PDF of an account verification letter.
|
|
476
501
|
* - `funding_instructions` - A PDF of funding instructions.
|
|
477
502
|
* - `voided_check` - A PDF of a voided check.
|
|
503
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
504
|
+
* starting and ending balances for a given date range.
|
|
478
505
|
*/
|
|
479
|
-
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'account_verification_letter' | 'funding_instructions' | 'voided_check';
|
|
506
|
+
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'account_verification_letter' | 'funding_instructions' | 'voided_check' | 'daily_account_balance_csv';
|
|
480
507
|
/**
|
|
481
508
|
* Options for the created export. Required if `category` is equal to
|
|
482
509
|
* `account_statement_bai2`.
|
|
@@ -502,6 +529,11 @@ export interface ExportCreateParams {
|
|
|
502
529
|
* `bookkeeping_account_balance_csv`.
|
|
503
530
|
*/
|
|
504
531
|
bookkeeping_account_balance_csv?: ExportCreateParams.BookkeepingAccountBalanceCsv;
|
|
532
|
+
/**
|
|
533
|
+
* Options for the created export. Required if `category` is equal to
|
|
534
|
+
* `daily_account_balance_csv`.
|
|
535
|
+
*/
|
|
536
|
+
daily_account_balance_csv?: ExportCreateParams.DailyAccountBalanceCsv;
|
|
505
537
|
/**
|
|
506
538
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
507
539
|
*/
|
|
@@ -689,6 +721,24 @@ export declare namespace ExportCreateParams {
|
|
|
689
721
|
on_or_before?: string;
|
|
690
722
|
}
|
|
691
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* Options for the created export. Required if `category` is equal to
|
|
726
|
+
* `daily_account_balance_csv`.
|
|
727
|
+
*/
|
|
728
|
+
interface DailyAccountBalanceCsv {
|
|
729
|
+
/**
|
|
730
|
+
* Filter exported Balances to the specified Account.
|
|
731
|
+
*/
|
|
732
|
+
account_id?: string;
|
|
733
|
+
/**
|
|
734
|
+
* Filter exported Balances to those on or after this date.
|
|
735
|
+
*/
|
|
736
|
+
on_or_after_date?: string;
|
|
737
|
+
/**
|
|
738
|
+
* Filter exported Balances to those on or before this date.
|
|
739
|
+
*/
|
|
740
|
+
on_or_before_date?: string;
|
|
741
|
+
}
|
|
692
742
|
/**
|
|
693
743
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
694
744
|
*/
|
|
@@ -798,8 +848,10 @@ export interface ExportListParams extends PageParams {
|
|
|
798
848
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
799
849
|
* that are part of an open fee statement.
|
|
800
850
|
* - `voided_check` - A PDF of a voided check.
|
|
851
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
852
|
+
* starting and ending balances for a given date range.
|
|
801
853
|
*/
|
|
802
|
-
category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
|
|
854
|
+
category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check' | 'daily_account_balance_csv';
|
|
803
855
|
created_at?: ExportListParams.CreatedAt;
|
|
804
856
|
form_1099_int?: ExportListParams.Form1099Int;
|
|
805
857
|
form_1099_misc?: ExportListParams.Form1099Misc;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.d.mts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,WAAW,EAAE;OACtC,EAAE,cAAc,EAAE;AAGzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;IAI9E;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;IAIxE;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,gBAAgB,GAAG,IAAI,GAAG,SAAc,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,WAAW,EAAE,MAAM,CAAC;CAGpC;AAED,MAAM,MAAM,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;AAEvC;;;;;;GAMG;AACH,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IACH,sBAAsB,EAAE,MAAM,CAAC,oBAAoB,GAAG,IAAI,CAAC;IAE3D;;;OAGG;IACH,qBAAqB,EAAE,MAAM,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAEzD;;;OAGG;IACH,2BAA2B,EAAE,MAAM,CAAC,yBAAyB,GAAG,IAAI,CAAC;IAErE;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;IAEtC;;;OAGG;IACH,+BAA+B,EAAE,MAAM,CAAC,4BAA4B,GAAG,IAAI,CAAC;IAE5E
|
|
1
|
+
{"version":3,"file":"exports.d.mts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"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"}
|
package/resources/exports.d.ts
CHANGED
|
@@ -101,12 +101,19 @@ export interface Export {
|
|
|
101
101
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
102
102
|
* that are part of an open fee statement.
|
|
103
103
|
* - `voided_check` - A PDF of a voided check.
|
|
104
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
105
|
+
* starting and ending balances for a given date range.
|
|
104
106
|
*/
|
|
105
|
-
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
|
|
107
|
+
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check' | 'daily_account_balance_csv';
|
|
106
108
|
/**
|
|
107
109
|
* The time the Export was created.
|
|
108
110
|
*/
|
|
109
111
|
created_at: string;
|
|
112
|
+
/**
|
|
113
|
+
* Details of the daily account balance CSV export. This field will be present when
|
|
114
|
+
* the `category` is equal to `daily_account_balance_csv`.
|
|
115
|
+
*/
|
|
116
|
+
daily_account_balance_csv: Export.DailyAccountBalanceCsv | null;
|
|
110
117
|
/**
|
|
111
118
|
* Details of the dashboard table CSV export. This field will be present when the
|
|
112
119
|
* `category` is equal to `dashboard_table_csv`.
|
|
@@ -299,6 +306,24 @@ export declare namespace Export {
|
|
|
299
306
|
before: string | null;
|
|
300
307
|
}
|
|
301
308
|
}
|
|
309
|
+
/**
|
|
310
|
+
* Details of the daily account balance CSV export. This field will be present when
|
|
311
|
+
* the `category` is equal to `daily_account_balance_csv`.
|
|
312
|
+
*/
|
|
313
|
+
interface DailyAccountBalanceCsv {
|
|
314
|
+
/**
|
|
315
|
+
* Filter results by Account.
|
|
316
|
+
*/
|
|
317
|
+
account_id: string | null;
|
|
318
|
+
/**
|
|
319
|
+
* Filter balances on or after this date.
|
|
320
|
+
*/
|
|
321
|
+
on_or_after_date: string | null;
|
|
322
|
+
/**
|
|
323
|
+
* Filter balances on or before this date.
|
|
324
|
+
*/
|
|
325
|
+
on_or_before_date: string | null;
|
|
326
|
+
}
|
|
302
327
|
/**
|
|
303
328
|
* Details of the dashboard table CSV export. This field will be present when the
|
|
304
329
|
* `category` is equal to `dashboard_table_csv`.
|
|
@@ -475,8 +500,10 @@ export interface ExportCreateParams {
|
|
|
475
500
|
* - `account_verification_letter` - A PDF of an account verification letter.
|
|
476
501
|
* - `funding_instructions` - A PDF of funding instructions.
|
|
477
502
|
* - `voided_check` - A PDF of a voided check.
|
|
503
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
504
|
+
* starting and ending balances for a given date range.
|
|
478
505
|
*/
|
|
479
|
-
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'account_verification_letter' | 'funding_instructions' | 'voided_check';
|
|
506
|
+
category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'account_verification_letter' | 'funding_instructions' | 'voided_check' | 'daily_account_balance_csv';
|
|
480
507
|
/**
|
|
481
508
|
* Options for the created export. Required if `category` is equal to
|
|
482
509
|
* `account_statement_bai2`.
|
|
@@ -502,6 +529,11 @@ export interface ExportCreateParams {
|
|
|
502
529
|
* `bookkeeping_account_balance_csv`.
|
|
503
530
|
*/
|
|
504
531
|
bookkeeping_account_balance_csv?: ExportCreateParams.BookkeepingAccountBalanceCsv;
|
|
532
|
+
/**
|
|
533
|
+
* Options for the created export. Required if `category` is equal to
|
|
534
|
+
* `daily_account_balance_csv`.
|
|
535
|
+
*/
|
|
536
|
+
daily_account_balance_csv?: ExportCreateParams.DailyAccountBalanceCsv;
|
|
505
537
|
/**
|
|
506
538
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
507
539
|
*/
|
|
@@ -689,6 +721,24 @@ export declare namespace ExportCreateParams {
|
|
|
689
721
|
on_or_before?: string;
|
|
690
722
|
}
|
|
691
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* Options for the created export. Required if `category` is equal to
|
|
726
|
+
* `daily_account_balance_csv`.
|
|
727
|
+
*/
|
|
728
|
+
interface DailyAccountBalanceCsv {
|
|
729
|
+
/**
|
|
730
|
+
* Filter exported Balances to the specified Account.
|
|
731
|
+
*/
|
|
732
|
+
account_id?: string;
|
|
733
|
+
/**
|
|
734
|
+
* Filter exported Balances to those on or after this date.
|
|
735
|
+
*/
|
|
736
|
+
on_or_after_date?: string;
|
|
737
|
+
/**
|
|
738
|
+
* Filter exported Balances to those on or before this date.
|
|
739
|
+
*/
|
|
740
|
+
on_or_before_date?: string;
|
|
741
|
+
}
|
|
692
742
|
/**
|
|
693
743
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
694
744
|
*/
|
|
@@ -798,8 +848,10 @@ export interface ExportListParams extends PageParams {
|
|
|
798
848
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
799
849
|
* that are part of an open fee statement.
|
|
800
850
|
* - `voided_check` - A PDF of a voided check.
|
|
851
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
852
|
+
* starting and ending balances for a given date range.
|
|
801
853
|
*/
|
|
802
|
-
category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
|
|
854
|
+
category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check' | 'daily_account_balance_csv';
|
|
803
855
|
created_at?: ExportListParams.CreatedAt;
|
|
804
856
|
form_1099_int?: ExportListParams.Form1099Int;
|
|
805
857
|
form_1099_misc?: ExportListParams.Form1099Misc;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,WAAW,EAAE;OACtC,EAAE,cAAc,EAAE;AAGzB,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;IAI9E;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;IAIxE;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,gBAAgB,GAAG,IAAI,GAAG,SAAc,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,WAAW,EAAE,MAAM,CAAC;CAGpC;AAED,MAAM,MAAM,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;AAEvC;;;;;;GAMG;AACH,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IACH,sBAAsB,EAAE,MAAM,CAAC,oBAAoB,GAAG,IAAI,CAAC;IAE3D;;;OAGG;IACH,qBAAqB,EAAE,MAAM,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAEzD;;;OAGG;IACH,2BAA2B,EAAE,MAAM,CAAC,yBAAyB,GAAG,IAAI,CAAC;IAErE;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;IAEtC;;;OAGG;IACH,+BAA+B,EAAE,MAAM,CAAC,4BAA4B,GAAG,IAAI,CAAC;IAE5E
|
|
1
|
+
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"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"}
|
package/src/resources/exports.ts
CHANGED
|
@@ -124,6 +124,8 @@ export interface Export {
|
|
|
124
124
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
125
125
|
* that are part of an open fee statement.
|
|
126
126
|
* - `voided_check` - A PDF of a voided check.
|
|
127
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
128
|
+
* starting and ending balances for a given date range.
|
|
127
129
|
*/
|
|
128
130
|
category:
|
|
129
131
|
| 'account_statement_ofx'
|
|
@@ -139,13 +141,20 @@ export interface Export {
|
|
|
139
141
|
| 'form_1099_int'
|
|
140
142
|
| 'form_1099_misc'
|
|
141
143
|
| 'fee_csv'
|
|
142
|
-
| 'voided_check'
|
|
144
|
+
| 'voided_check'
|
|
145
|
+
| 'daily_account_balance_csv';
|
|
143
146
|
|
|
144
147
|
/**
|
|
145
148
|
* The time the Export was created.
|
|
146
149
|
*/
|
|
147
150
|
created_at: string;
|
|
148
151
|
|
|
152
|
+
/**
|
|
153
|
+
* Details of the daily account balance CSV export. This field will be present when
|
|
154
|
+
* the `category` is equal to `daily_account_balance_csv`.
|
|
155
|
+
*/
|
|
156
|
+
daily_account_balance_csv: Export.DailyAccountBalanceCsv | null;
|
|
157
|
+
|
|
149
158
|
/**
|
|
150
159
|
* Details of the dashboard table CSV export. This field will be present when the
|
|
151
160
|
* `category` is equal to `dashboard_table_csv`.
|
|
@@ -369,6 +378,27 @@ export namespace Export {
|
|
|
369
378
|
}
|
|
370
379
|
}
|
|
371
380
|
|
|
381
|
+
/**
|
|
382
|
+
* Details of the daily account balance CSV export. This field will be present when
|
|
383
|
+
* the `category` is equal to `daily_account_balance_csv`.
|
|
384
|
+
*/
|
|
385
|
+
export interface DailyAccountBalanceCsv {
|
|
386
|
+
/**
|
|
387
|
+
* Filter results by Account.
|
|
388
|
+
*/
|
|
389
|
+
account_id: string | null;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Filter balances on or after this date.
|
|
393
|
+
*/
|
|
394
|
+
on_or_after_date: string | null;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* Filter balances on or before this date.
|
|
398
|
+
*/
|
|
399
|
+
on_or_before_date: string | null;
|
|
400
|
+
}
|
|
401
|
+
|
|
372
402
|
/**
|
|
373
403
|
* Details of the dashboard table CSV export. This field will be present when the
|
|
374
404
|
* `category` is equal to `dashboard_table_csv`.
|
|
@@ -564,6 +594,8 @@ export interface ExportCreateParams {
|
|
|
564
594
|
* - `account_verification_letter` - A PDF of an account verification letter.
|
|
565
595
|
* - `funding_instructions` - A PDF of funding instructions.
|
|
566
596
|
* - `voided_check` - A PDF of a voided check.
|
|
597
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
598
|
+
* starting and ending balances for a given date range.
|
|
567
599
|
*/
|
|
568
600
|
category:
|
|
569
601
|
| 'account_statement_ofx'
|
|
@@ -575,7 +607,8 @@ export interface ExportCreateParams {
|
|
|
575
607
|
| 'vendor_csv'
|
|
576
608
|
| 'account_verification_letter'
|
|
577
609
|
| 'funding_instructions'
|
|
578
|
-
| 'voided_check'
|
|
610
|
+
| 'voided_check'
|
|
611
|
+
| 'daily_account_balance_csv';
|
|
579
612
|
|
|
580
613
|
/**
|
|
581
614
|
* Options for the created export. Required if `category` is equal to
|
|
@@ -607,6 +640,12 @@ export interface ExportCreateParams {
|
|
|
607
640
|
*/
|
|
608
641
|
bookkeeping_account_balance_csv?: ExportCreateParams.BookkeepingAccountBalanceCsv;
|
|
609
642
|
|
|
643
|
+
/**
|
|
644
|
+
* Options for the created export. Required if `category` is equal to
|
|
645
|
+
* `daily_account_balance_csv`.
|
|
646
|
+
*/
|
|
647
|
+
daily_account_balance_csv?: ExportCreateParams.DailyAccountBalanceCsv;
|
|
648
|
+
|
|
610
649
|
/**
|
|
611
650
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
612
651
|
*/
|
|
@@ -823,6 +862,27 @@ export namespace ExportCreateParams {
|
|
|
823
862
|
}
|
|
824
863
|
}
|
|
825
864
|
|
|
865
|
+
/**
|
|
866
|
+
* Options for the created export. Required if `category` is equal to
|
|
867
|
+
* `daily_account_balance_csv`.
|
|
868
|
+
*/
|
|
869
|
+
export interface DailyAccountBalanceCsv {
|
|
870
|
+
/**
|
|
871
|
+
* Filter exported Balances to the specified Account.
|
|
872
|
+
*/
|
|
873
|
+
account_id?: string;
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* Filter exported Balances to those on or after this date.
|
|
877
|
+
*/
|
|
878
|
+
on_or_after_date?: string;
|
|
879
|
+
|
|
880
|
+
/**
|
|
881
|
+
* Filter exported Balances to those on or before this date.
|
|
882
|
+
*/
|
|
883
|
+
on_or_before_date?: string;
|
|
884
|
+
}
|
|
885
|
+
|
|
826
886
|
/**
|
|
827
887
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
828
888
|
*/
|
|
@@ -942,6 +1002,8 @@ export interface ExportListParams extends PageParams {
|
|
|
942
1002
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
943
1003
|
* that are part of an open fee statement.
|
|
944
1004
|
* - `voided_check` - A PDF of a voided check.
|
|
1005
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
1006
|
+
* starting and ending balances for a given date range.
|
|
945
1007
|
*/
|
|
946
1008
|
category?:
|
|
947
1009
|
| 'account_statement_ofx'
|
|
@@ -957,7 +1019,8 @@ export interface ExportListParams extends PageParams {
|
|
|
957
1019
|
| 'form_1099_int'
|
|
958
1020
|
| 'form_1099_misc'
|
|
959
1021
|
| 'fee_csv'
|
|
960
|
-
| 'voided_check'
|
|
1022
|
+
| 'voided_check'
|
|
1023
|
+
| 'daily_account_balance_csv';
|
|
961
1024
|
|
|
962
1025
|
created_at?: ExportListParams.CreatedAt;
|
|
963
1026
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.518.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.518.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.518.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.518.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|