increase 0.517.0 → 0.519.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/package.json +1 -1
- package/resources/exports.d.mts +64 -23
- package/resources/exports.d.mts.map +1 -1
- package/resources/exports.d.ts +64 -23
- package/resources/exports.d.ts.map +1 -1
- package/src/resources/exports.ts +75 -24
- 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.519.0 (2026-04-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.518.0...v0.519.0](https://github.com/Increase/increase-typescript/compare/v0.518.0...v0.519.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([9e3d1ba](https://github.com/Increase/increase-typescript/commit/9e3d1baac182363a3f50e086973c475f45656cd7))
|
|
10
|
+
|
|
11
|
+
## 0.518.0 (2026-04-09)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.517.0...v0.518.0](https://github.com/Increase/increase-typescript/compare/v0.517.0...v0.518.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([638892c](https://github.com/Increase/increase-typescript/commit/638892c40a5590eb1ca2d7cea93dc31e6c3bff26))
|
|
18
|
+
|
|
3
19
|
## 0.517.0 (2026-04-09)
|
|
4
20
|
|
|
5
21
|
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`.
|
|
@@ -217,14 +224,14 @@ export declare namespace Export {
|
|
|
217
224
|
* Filter transactions by their created date.
|
|
218
225
|
*/
|
|
219
226
|
interface CreatedAt {
|
|
220
|
-
/**
|
|
221
|
-
* Filter results to transactions created after this time.
|
|
222
|
-
*/
|
|
223
|
-
after: string | null;
|
|
224
227
|
/**
|
|
225
228
|
* Filter results to transactions created before this time.
|
|
226
229
|
*/
|
|
227
230
|
before: string | null;
|
|
231
|
+
/**
|
|
232
|
+
* Filter results to transactions created on or after this time.
|
|
233
|
+
*/
|
|
234
|
+
on_or_after: string | null;
|
|
228
235
|
}
|
|
229
236
|
}
|
|
230
237
|
/**
|
|
@@ -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
|
*/
|
|
@@ -561,35 +593,24 @@ export declare namespace ExportCreateParams {
|
|
|
561
593
|
*/
|
|
562
594
|
account_id: string;
|
|
563
595
|
/**
|
|
564
|
-
* Filter
|
|
596
|
+
* Filter transactions by their created date.
|
|
565
597
|
*/
|
|
566
598
|
created_at?: AccountStatementOfx.CreatedAt;
|
|
567
599
|
}
|
|
568
600
|
namespace AccountStatementOfx {
|
|
569
601
|
/**
|
|
570
|
-
* Filter
|
|
602
|
+
* Filter transactions by their created date.
|
|
571
603
|
*/
|
|
572
604
|
interface CreatedAt {
|
|
573
605
|
/**
|
|
574
|
-
*
|
|
575
|
-
* timestamp.
|
|
576
|
-
*/
|
|
577
|
-
after?: string;
|
|
578
|
-
/**
|
|
579
|
-
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
580
|
-
* timestamp.
|
|
606
|
+
* Filter results to transactions created before this time.
|
|
581
607
|
*/
|
|
582
608
|
before?: string;
|
|
583
609
|
/**
|
|
584
|
-
*
|
|
585
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
610
|
+
* Filter results to transactions created on or after this time.
|
|
586
611
|
*/
|
|
587
612
|
on_or_after?: string;
|
|
588
|
-
|
|
589
|
-
* Return results on or before this
|
|
590
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
591
|
-
*/
|
|
592
|
-
on_or_before?: string;
|
|
613
|
+
[k: string]: unknown;
|
|
593
614
|
}
|
|
594
615
|
}
|
|
595
616
|
/**
|
|
@@ -689,6 +710,24 @@ export declare namespace ExportCreateParams {
|
|
|
689
710
|
on_or_before?: string;
|
|
690
711
|
}
|
|
691
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* Options for the created export. Required if `category` is equal to
|
|
715
|
+
* `daily_account_balance_csv`.
|
|
716
|
+
*/
|
|
717
|
+
interface DailyAccountBalanceCsv {
|
|
718
|
+
/**
|
|
719
|
+
* Filter exported Balances to the specified Account.
|
|
720
|
+
*/
|
|
721
|
+
account_id?: string;
|
|
722
|
+
/**
|
|
723
|
+
* Filter exported Balances to those on or after this date.
|
|
724
|
+
*/
|
|
725
|
+
on_or_after_date?: string;
|
|
726
|
+
/**
|
|
727
|
+
* Filter exported Balances to those on or before this date.
|
|
728
|
+
*/
|
|
729
|
+
on_or_before_date?: string;
|
|
730
|
+
}
|
|
692
731
|
/**
|
|
693
732
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
694
733
|
*/
|
|
@@ -798,8 +837,10 @@ export interface ExportListParams extends PageParams {
|
|
|
798
837
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
799
838
|
* that are part of an open fee statement.
|
|
800
839
|
* - `voided_check` - A PDF of a voided check.
|
|
840
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
841
|
+
* starting and ending balances for a given date range.
|
|
801
842
|
*/
|
|
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';
|
|
843
|
+
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
844
|
created_at?: ExportListParams.CreatedAt;
|
|
804
845
|
form_1099_int?: ExportListParams.Form1099Int;
|
|
805
846
|
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`.
|
|
@@ -217,14 +224,14 @@ export declare namespace Export {
|
|
|
217
224
|
* Filter transactions by their created date.
|
|
218
225
|
*/
|
|
219
226
|
interface CreatedAt {
|
|
220
|
-
/**
|
|
221
|
-
* Filter results to transactions created after this time.
|
|
222
|
-
*/
|
|
223
|
-
after: string | null;
|
|
224
227
|
/**
|
|
225
228
|
* Filter results to transactions created before this time.
|
|
226
229
|
*/
|
|
227
230
|
before: string | null;
|
|
231
|
+
/**
|
|
232
|
+
* Filter results to transactions created on or after this time.
|
|
233
|
+
*/
|
|
234
|
+
on_or_after: string | null;
|
|
228
235
|
}
|
|
229
236
|
}
|
|
230
237
|
/**
|
|
@@ -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
|
*/
|
|
@@ -561,35 +593,24 @@ export declare namespace ExportCreateParams {
|
|
|
561
593
|
*/
|
|
562
594
|
account_id: string;
|
|
563
595
|
/**
|
|
564
|
-
* Filter
|
|
596
|
+
* Filter transactions by their created date.
|
|
565
597
|
*/
|
|
566
598
|
created_at?: AccountStatementOfx.CreatedAt;
|
|
567
599
|
}
|
|
568
600
|
namespace AccountStatementOfx {
|
|
569
601
|
/**
|
|
570
|
-
* Filter
|
|
602
|
+
* Filter transactions by their created date.
|
|
571
603
|
*/
|
|
572
604
|
interface CreatedAt {
|
|
573
605
|
/**
|
|
574
|
-
*
|
|
575
|
-
* timestamp.
|
|
576
|
-
*/
|
|
577
|
-
after?: string;
|
|
578
|
-
/**
|
|
579
|
-
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
580
|
-
* timestamp.
|
|
606
|
+
* Filter results to transactions created before this time.
|
|
581
607
|
*/
|
|
582
608
|
before?: string;
|
|
583
609
|
/**
|
|
584
|
-
*
|
|
585
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
610
|
+
* Filter results to transactions created on or after this time.
|
|
586
611
|
*/
|
|
587
612
|
on_or_after?: string;
|
|
588
|
-
|
|
589
|
-
* Return results on or before this
|
|
590
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
591
|
-
*/
|
|
592
|
-
on_or_before?: string;
|
|
613
|
+
[k: string]: unknown;
|
|
593
614
|
}
|
|
594
615
|
}
|
|
595
616
|
/**
|
|
@@ -689,6 +710,24 @@ export declare namespace ExportCreateParams {
|
|
|
689
710
|
on_or_before?: string;
|
|
690
711
|
}
|
|
691
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* Options for the created export. Required if `category` is equal to
|
|
715
|
+
* `daily_account_balance_csv`.
|
|
716
|
+
*/
|
|
717
|
+
interface DailyAccountBalanceCsv {
|
|
718
|
+
/**
|
|
719
|
+
* Filter exported Balances to the specified Account.
|
|
720
|
+
*/
|
|
721
|
+
account_id?: string;
|
|
722
|
+
/**
|
|
723
|
+
* Filter exported Balances to those on or after this date.
|
|
724
|
+
*/
|
|
725
|
+
on_or_after_date?: string;
|
|
726
|
+
/**
|
|
727
|
+
* Filter exported Balances to those on or before this date.
|
|
728
|
+
*/
|
|
729
|
+
on_or_before_date?: string;
|
|
730
|
+
}
|
|
692
731
|
/**
|
|
693
732
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
694
733
|
*/
|
|
@@ -798,8 +837,10 @@ export interface ExportListParams extends PageParams {
|
|
|
798
837
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
799
838
|
* that are part of an open fee statement.
|
|
800
839
|
* - `voided_check` - A PDF of a voided check.
|
|
840
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
841
|
+
* starting and ending balances for a given date range.
|
|
801
842
|
*/
|
|
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';
|
|
843
|
+
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
844
|
created_at?: ExportListParams.CreatedAt;
|
|
804
845
|
form_1099_int?: ExportListParams.Form1099Int;
|
|
805
846
|
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`.
|
|
@@ -276,14 +285,14 @@ export namespace Export {
|
|
|
276
285
|
*/
|
|
277
286
|
export interface CreatedAt {
|
|
278
287
|
/**
|
|
279
|
-
* Filter results to transactions created
|
|
288
|
+
* Filter results to transactions created before this time.
|
|
280
289
|
*/
|
|
281
|
-
|
|
290
|
+
before: string | null;
|
|
282
291
|
|
|
283
292
|
/**
|
|
284
|
-
* Filter results to transactions created
|
|
293
|
+
* Filter results to transactions created on or after this time.
|
|
285
294
|
*/
|
|
286
|
-
|
|
295
|
+
on_or_after: string | null;
|
|
287
296
|
}
|
|
288
297
|
}
|
|
289
298
|
|
|
@@ -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
|
*/
|
|
@@ -676,39 +715,27 @@ export namespace ExportCreateParams {
|
|
|
676
715
|
account_id: string;
|
|
677
716
|
|
|
678
717
|
/**
|
|
679
|
-
* Filter
|
|
718
|
+
* Filter transactions by their created date.
|
|
680
719
|
*/
|
|
681
720
|
created_at?: AccountStatementOfx.CreatedAt;
|
|
682
721
|
}
|
|
683
722
|
|
|
684
723
|
export namespace AccountStatementOfx {
|
|
685
724
|
/**
|
|
686
|
-
* Filter
|
|
725
|
+
* Filter transactions by their created date.
|
|
687
726
|
*/
|
|
688
727
|
export interface CreatedAt {
|
|
689
728
|
/**
|
|
690
|
-
*
|
|
691
|
-
* timestamp.
|
|
692
|
-
*/
|
|
693
|
-
after?: string;
|
|
694
|
-
|
|
695
|
-
/**
|
|
696
|
-
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
697
|
-
* timestamp.
|
|
729
|
+
* Filter results to transactions created before this time.
|
|
698
730
|
*/
|
|
699
731
|
before?: string;
|
|
700
732
|
|
|
701
733
|
/**
|
|
702
|
-
*
|
|
703
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
734
|
+
* Filter results to transactions created on or after this time.
|
|
704
735
|
*/
|
|
705
736
|
on_or_after?: string;
|
|
706
737
|
|
|
707
|
-
|
|
708
|
-
* Return results on or before this
|
|
709
|
-
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
710
|
-
*/
|
|
711
|
-
on_or_before?: string;
|
|
738
|
+
[k: string]: unknown;
|
|
712
739
|
}
|
|
713
740
|
}
|
|
714
741
|
|
|
@@ -823,6 +850,27 @@ export namespace ExportCreateParams {
|
|
|
823
850
|
}
|
|
824
851
|
}
|
|
825
852
|
|
|
853
|
+
/**
|
|
854
|
+
* Options for the created export. Required if `category` is equal to
|
|
855
|
+
* `daily_account_balance_csv`.
|
|
856
|
+
*/
|
|
857
|
+
export interface DailyAccountBalanceCsv {
|
|
858
|
+
/**
|
|
859
|
+
* Filter exported Balances to the specified Account.
|
|
860
|
+
*/
|
|
861
|
+
account_id?: string;
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Filter exported Balances to those on or after this date.
|
|
865
|
+
*/
|
|
866
|
+
on_or_after_date?: string;
|
|
867
|
+
|
|
868
|
+
/**
|
|
869
|
+
* Filter exported Balances to those on or before this date.
|
|
870
|
+
*/
|
|
871
|
+
on_or_before_date?: string;
|
|
872
|
+
}
|
|
873
|
+
|
|
826
874
|
/**
|
|
827
875
|
* Options for the created export. Required if `category` is equal to `entity_csv`.
|
|
828
876
|
*/
|
|
@@ -942,6 +990,8 @@ export interface ExportListParams extends PageParams {
|
|
|
942
990
|
* - `fee_csv` - Export a CSV of fees. The time range must not include any fees
|
|
943
991
|
* that are part of an open fee statement.
|
|
944
992
|
* - `voided_check` - A PDF of a voided check.
|
|
993
|
+
* - `daily_account_balance_csv` - Export a CSV of daily account balances with
|
|
994
|
+
* starting and ending balances for a given date range.
|
|
945
995
|
*/
|
|
946
996
|
category?:
|
|
947
997
|
| 'account_statement_ofx'
|
|
@@ -957,7 +1007,8 @@ export interface ExportListParams extends PageParams {
|
|
|
957
1007
|
| 'form_1099_int'
|
|
958
1008
|
| 'form_1099_misc'
|
|
959
1009
|
| 'fee_csv'
|
|
960
|
-
| 'voided_check'
|
|
1010
|
+
| 'voided_check'
|
|
1011
|
+
| 'daily_account_balance_csv';
|
|
961
1012
|
|
|
962
1013
|
created_at?: ExportListParams.CreatedAt;
|
|
963
1014
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.519.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.519.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.519.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.519.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|