@bkper/bkper-api-types 5.1.2 → 5.1.6
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 +62 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -257,13 +257,16 @@ declare namespace bkper {
|
|
|
257
257
|
range?: string;
|
|
258
258
|
rangeBeginLabel?: string;
|
|
259
259
|
rangeEndLabel?: string;
|
|
260
|
-
totalRemovedBalances?: number; // int32
|
|
261
260
|
}
|
|
262
261
|
export interface Book {
|
|
263
262
|
/**
|
|
264
263
|
* The id of agent that created the resource
|
|
265
264
|
*/
|
|
266
265
|
agentId?: string;
|
|
266
|
+
/**
|
|
267
|
+
* The book closing date
|
|
268
|
+
*/
|
|
269
|
+
closingDate?: string;
|
|
267
270
|
collection?: Collection;
|
|
268
271
|
/**
|
|
269
272
|
* The creation timestamp, in milliseconds
|
|
@@ -331,6 +334,18 @@ declare namespace bkper {
|
|
|
331
334
|
* The time zone offset of the Book, in minutes
|
|
332
335
|
*/
|
|
333
336
|
timeZoneOffset?: number; // int32
|
|
337
|
+
/**
|
|
338
|
+
* The total transactions posted
|
|
339
|
+
*/
|
|
340
|
+
totalTransactions?: number; // int64
|
|
341
|
+
/**
|
|
342
|
+
* The total transactions posted on current month
|
|
343
|
+
*/
|
|
344
|
+
totalTransactionsCurrentMonth?: number; // int64
|
|
345
|
+
/**
|
|
346
|
+
* The total transactions posted on current year
|
|
347
|
+
*/
|
|
348
|
+
totalTransactionsCurrentYear?: number; // int64
|
|
334
349
|
}
|
|
335
350
|
export interface BookList {
|
|
336
351
|
/**
|
|
@@ -671,6 +686,14 @@ declare namespace Paths {
|
|
|
671
686
|
export type $200 = bkper.TransactionOperation;
|
|
672
687
|
}
|
|
673
688
|
}
|
|
689
|
+
namespace BkperV5CheckTransactionsBatch {
|
|
690
|
+
export interface BodyParameters {
|
|
691
|
+
TransactionList: Parameters.TransactionList;
|
|
692
|
+
}
|
|
693
|
+
namespace Parameters {
|
|
694
|
+
export type TransactionList = bkper.TransactionList;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
674
697
|
namespace BkperV5CreateAccount {
|
|
675
698
|
export interface BodyParameters {
|
|
676
699
|
Account: Parameters.Account;
|
|
@@ -883,6 +906,25 @@ declare namespace Paths {
|
|
|
883
906
|
export type $200 = bkper.TransactionOperation;
|
|
884
907
|
}
|
|
885
908
|
}
|
|
909
|
+
namespace BkperV5TrashTransaction {
|
|
910
|
+
export interface BodyParameters {
|
|
911
|
+
Transaction: Parameters.Transaction;
|
|
912
|
+
}
|
|
913
|
+
namespace Parameters {
|
|
914
|
+
export type Transaction = bkper.Transaction;
|
|
915
|
+
}
|
|
916
|
+
namespace Responses {
|
|
917
|
+
export type $200 = bkper.TransactionOperation;
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
namespace BkperV5TrashTransactionsBatch {
|
|
921
|
+
export interface BodyParameters {
|
|
922
|
+
TransactionList: Parameters.TransactionList;
|
|
923
|
+
}
|
|
924
|
+
namespace Parameters {
|
|
925
|
+
export type TransactionList = bkper.TransactionList;
|
|
926
|
+
}
|
|
927
|
+
}
|
|
886
928
|
namespace BkperV5UncheckTransaction {
|
|
887
929
|
export interface BodyParameters {
|
|
888
930
|
Transaction: Parameters.Transaction;
|
|
@@ -894,6 +936,25 @@ declare namespace Paths {
|
|
|
894
936
|
export type $200 = bkper.TransactionOperation;
|
|
895
937
|
}
|
|
896
938
|
}
|
|
939
|
+
namespace BkperV5UncheckTransactionsBatch {
|
|
940
|
+
export interface BodyParameters {
|
|
941
|
+
TransactionList: Parameters.TransactionList;
|
|
942
|
+
}
|
|
943
|
+
namespace Parameters {
|
|
944
|
+
export type TransactionList = bkper.TransactionList;
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
namespace BkperV5UntrashTransaction {
|
|
948
|
+
export interface BodyParameters {
|
|
949
|
+
Transaction: Parameters.Transaction;
|
|
950
|
+
}
|
|
951
|
+
namespace Parameters {
|
|
952
|
+
export type Transaction = bkper.Transaction;
|
|
953
|
+
}
|
|
954
|
+
namespace Responses {
|
|
955
|
+
export type $200 = bkper.TransactionOperation;
|
|
956
|
+
}
|
|
957
|
+
}
|
|
897
958
|
namespace BkperV5UpdateAccount {
|
|
898
959
|
export interface BodyParameters {
|
|
899
960
|
Account: Parameters.Account;
|