@bkper/bkper-api-types 5.1.1 → 5.1.5
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 +52 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare namespace bkper {
|
|
|
64
64
|
cumulativeCredit?: string;
|
|
65
65
|
cumulativeDebit?: string;
|
|
66
66
|
name?: string;
|
|
67
|
+
normalizedName?: string;
|
|
67
68
|
periodBalance?: string;
|
|
68
69
|
periodCredit?: string;
|
|
69
70
|
periodDebit?: string;
|
|
@@ -256,13 +257,16 @@ declare namespace bkper {
|
|
|
256
257
|
range?: string;
|
|
257
258
|
rangeBeginLabel?: string;
|
|
258
259
|
rangeEndLabel?: string;
|
|
259
|
-
totalRemovedBalances?: number; // int32
|
|
260
260
|
}
|
|
261
261
|
export interface Book {
|
|
262
262
|
/**
|
|
263
263
|
* The id of agent that created the resource
|
|
264
264
|
*/
|
|
265
265
|
agentId?: string;
|
|
266
|
+
/**
|
|
267
|
+
* The book closing date
|
|
268
|
+
*/
|
|
269
|
+
closingDate?: string;
|
|
266
270
|
collection?: Collection;
|
|
267
271
|
/**
|
|
268
272
|
* The creation timestamp, in milliseconds
|
|
@@ -507,6 +511,7 @@ declare namespace bkper {
|
|
|
507
511
|
cumulativeDebit?: string;
|
|
508
512
|
groupBalances?: GroupBalances[];
|
|
509
513
|
name?: string;
|
|
514
|
+
normalizedName?: string;
|
|
510
515
|
periodBalance?: string;
|
|
511
516
|
periodCredit?: string;
|
|
512
517
|
periodDebit?: string;
|
|
@@ -669,6 +674,14 @@ declare namespace Paths {
|
|
|
669
674
|
export type $200 = bkper.TransactionOperation;
|
|
670
675
|
}
|
|
671
676
|
}
|
|
677
|
+
namespace BkperV5CheckTransactionsBatch {
|
|
678
|
+
export interface BodyParameters {
|
|
679
|
+
TransactionList: Parameters.TransactionList;
|
|
680
|
+
}
|
|
681
|
+
namespace Parameters {
|
|
682
|
+
export type TransactionList = bkper.TransactionList;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
672
685
|
namespace BkperV5CreateAccount {
|
|
673
686
|
export interface BodyParameters {
|
|
674
687
|
Account: Parameters.Account;
|
|
@@ -881,6 +894,25 @@ declare namespace Paths {
|
|
|
881
894
|
export type $200 = bkper.TransactionOperation;
|
|
882
895
|
}
|
|
883
896
|
}
|
|
897
|
+
namespace BkperV5TrashTransaction {
|
|
898
|
+
export interface BodyParameters {
|
|
899
|
+
Transaction: Parameters.Transaction;
|
|
900
|
+
}
|
|
901
|
+
namespace Parameters {
|
|
902
|
+
export type Transaction = bkper.Transaction;
|
|
903
|
+
}
|
|
904
|
+
namespace Responses {
|
|
905
|
+
export type $200 = bkper.TransactionOperation;
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
namespace BkperV5TrashTransactionsBatch {
|
|
909
|
+
export interface BodyParameters {
|
|
910
|
+
TransactionList: Parameters.TransactionList;
|
|
911
|
+
}
|
|
912
|
+
namespace Parameters {
|
|
913
|
+
export type TransactionList = bkper.TransactionList;
|
|
914
|
+
}
|
|
915
|
+
}
|
|
884
916
|
namespace BkperV5UncheckTransaction {
|
|
885
917
|
export interface BodyParameters {
|
|
886
918
|
Transaction: Parameters.Transaction;
|
|
@@ -892,6 +924,25 @@ declare namespace Paths {
|
|
|
892
924
|
export type $200 = bkper.TransactionOperation;
|
|
893
925
|
}
|
|
894
926
|
}
|
|
927
|
+
namespace BkperV5UncheckTransactionsBatch {
|
|
928
|
+
export interface BodyParameters {
|
|
929
|
+
TransactionList: Parameters.TransactionList;
|
|
930
|
+
}
|
|
931
|
+
namespace Parameters {
|
|
932
|
+
export type TransactionList = bkper.TransactionList;
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
namespace BkperV5UntrashTransaction {
|
|
936
|
+
export interface BodyParameters {
|
|
937
|
+
Transaction: Parameters.Transaction;
|
|
938
|
+
}
|
|
939
|
+
namespace Parameters {
|
|
940
|
+
export type Transaction = bkper.Transaction;
|
|
941
|
+
}
|
|
942
|
+
namespace Responses {
|
|
943
|
+
export type $200 = bkper.TransactionOperation;
|
|
944
|
+
}
|
|
945
|
+
}
|
|
895
946
|
namespace BkperV5UpdateAccount {
|
|
896
947
|
export interface BodyParameters {
|
|
897
948
|
Account: Parameters.Account;
|