@bkper/bkper-api-types 5.1.4 → 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 +46 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -674,6 +674,14 @@ declare namespace Paths {
|
|
|
674
674
|
export type $200 = bkper.TransactionOperation;
|
|
675
675
|
}
|
|
676
676
|
}
|
|
677
|
+
namespace BkperV5CheckTransactionsBatch {
|
|
678
|
+
export interface BodyParameters {
|
|
679
|
+
TransactionList: Parameters.TransactionList;
|
|
680
|
+
}
|
|
681
|
+
namespace Parameters {
|
|
682
|
+
export type TransactionList = bkper.TransactionList;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
677
685
|
namespace BkperV5CreateAccount {
|
|
678
686
|
export interface BodyParameters {
|
|
679
687
|
Account: Parameters.Account;
|
|
@@ -886,6 +894,25 @@ declare namespace Paths {
|
|
|
886
894
|
export type $200 = bkper.TransactionOperation;
|
|
887
895
|
}
|
|
888
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
|
+
}
|
|
889
916
|
namespace BkperV5UncheckTransaction {
|
|
890
917
|
export interface BodyParameters {
|
|
891
918
|
Transaction: Parameters.Transaction;
|
|
@@ -897,6 +924,25 @@ declare namespace Paths {
|
|
|
897
924
|
export type $200 = bkper.TransactionOperation;
|
|
898
925
|
}
|
|
899
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
|
+
}
|
|
900
946
|
namespace BkperV5UpdateAccount {
|
|
901
947
|
export interface BodyParameters {
|
|
902
948
|
Account: Parameters.Account;
|