@bkper/bkper-api-types 5.20.0 → 5.22.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/index.d.ts +44 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -54,6 +54,10 @@ declare namespace bkper {
|
|
|
54
54
|
* The type of the account
|
|
55
55
|
*/
|
|
56
56
|
type?: "ASSET" | "LIABILITY" | "INCOMING" | "OUTGOING";
|
|
57
|
+
/**
|
|
58
|
+
* The last update timestamp, in milliseconds
|
|
59
|
+
*/
|
|
60
|
+
updatedAt?: string;
|
|
57
61
|
}
|
|
58
62
|
export interface AccountBalances {
|
|
59
63
|
archived?: boolean;
|
|
@@ -386,6 +390,10 @@ declare namespace bkper {
|
|
|
386
390
|
* The total transactions posted on current year
|
|
387
391
|
*/
|
|
388
392
|
totalTransactionsCurrentYear?: number; // int64
|
|
393
|
+
/**
|
|
394
|
+
* The last update timestamp, in milliseconds
|
|
395
|
+
*/
|
|
396
|
+
updatedAt?: string;
|
|
389
397
|
/**
|
|
390
398
|
* The Visibility of the Book
|
|
391
399
|
*/
|
|
@@ -424,6 +432,10 @@ declare namespace bkper {
|
|
|
424
432
|
* The permission the Collaborator has in the Book
|
|
425
433
|
*/
|
|
426
434
|
permission?: "OWNER" | "EDITOR" | "POSTER" | "RECORDER" | "VIEWER" | "NONE";
|
|
435
|
+
/**
|
|
436
|
+
* The last update timestamp, in milliseconds
|
|
437
|
+
*/
|
|
438
|
+
updatedAt?: string;
|
|
427
439
|
}
|
|
428
440
|
export interface Collection {
|
|
429
441
|
/**
|
|
@@ -480,6 +492,10 @@ declare namespace bkper {
|
|
|
480
492
|
[name: string]: string;
|
|
481
493
|
};
|
|
482
494
|
type?: "APP" | "BANK";
|
|
495
|
+
/**
|
|
496
|
+
* The last update timestamp, in milliseconds
|
|
497
|
+
*/
|
|
498
|
+
updatedAt?: string;
|
|
483
499
|
userId?: string;
|
|
484
500
|
uuid?: string;
|
|
485
501
|
}
|
|
@@ -619,6 +635,10 @@ declare namespace bkper {
|
|
|
619
635
|
* The file size in bytes
|
|
620
636
|
*/
|
|
621
637
|
size?: number; // int64
|
|
638
|
+
/**
|
|
639
|
+
* The last update timestamp, in milliseconds
|
|
640
|
+
*/
|
|
641
|
+
updatedAt?: string;
|
|
622
642
|
/**
|
|
623
643
|
* The file serving url
|
|
624
644
|
*/
|
|
@@ -681,6 +701,10 @@ declare namespace bkper {
|
|
|
681
701
|
[name: string]: string;
|
|
682
702
|
};
|
|
683
703
|
type?: "ASSET" | "LIABILITY" | "INCOMING" | "OUTGOING";
|
|
704
|
+
/**
|
|
705
|
+
* The last update timestamp, in milliseconds
|
|
706
|
+
*/
|
|
707
|
+
updatedAt?: string;
|
|
684
708
|
}
|
|
685
709
|
export interface GroupBalances {
|
|
686
710
|
accountBalances?: AccountBalances[];
|
|
@@ -727,6 +751,10 @@ declare namespace bkper {
|
|
|
727
751
|
properties?: {
|
|
728
752
|
[name: string]: string;
|
|
729
753
|
};
|
|
754
|
+
/**
|
|
755
|
+
* The last update timestamp, in milliseconds
|
|
756
|
+
*/
|
|
757
|
+
updatedAt?: string;
|
|
730
758
|
userId?: string;
|
|
731
759
|
}
|
|
732
760
|
export interface IntegrationList {
|
|
@@ -789,6 +817,10 @@ declare namespace bkper {
|
|
|
789
817
|
* The title of the saved Query
|
|
790
818
|
*/
|
|
791
819
|
title?: string;
|
|
820
|
+
/**
|
|
821
|
+
* The last update timestamp, in milliseconds
|
|
822
|
+
*/
|
|
823
|
+
updatedAt?: string;
|
|
792
824
|
}
|
|
793
825
|
export interface QueryList {
|
|
794
826
|
/**
|
|
@@ -893,6 +925,10 @@ declare namespace bkper {
|
|
|
893
925
|
* Tell if transaction is trashed
|
|
894
926
|
*/
|
|
895
927
|
trashed?: boolean;
|
|
928
|
+
/**
|
|
929
|
+
* The last update timestamp, in milliseconds
|
|
930
|
+
*/
|
|
931
|
+
updatedAt?: string;
|
|
896
932
|
/**
|
|
897
933
|
* The transaction urls
|
|
898
934
|
*/
|
|
@@ -1388,6 +1424,14 @@ declare namespace Paths {
|
|
|
1388
1424
|
export type $200 = bkper.TransactionOperation;
|
|
1389
1425
|
}
|
|
1390
1426
|
}
|
|
1427
|
+
namespace BkperV5PostTransactionsBatch {
|
|
1428
|
+
export interface BodyParameters {
|
|
1429
|
+
TransactionList: Parameters.TransactionList;
|
|
1430
|
+
}
|
|
1431
|
+
namespace Parameters {
|
|
1432
|
+
export type TransactionList = bkper.TransactionList;
|
|
1433
|
+
}
|
|
1434
|
+
}
|
|
1391
1435
|
namespace BkperV5RemoveBooksFromCollection {
|
|
1392
1436
|
export interface BodyParameters {
|
|
1393
1437
|
BookList: Parameters.BookList;
|