@bkper/bkper-api-types 5.10.0 → 5.11.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 +33 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -591,6 +591,10 @@ declare namespace bkper {
|
|
|
591
591
|
* The unique id that identifies the Group in the Book
|
|
592
592
|
*/
|
|
593
593
|
id?: string;
|
|
594
|
+
/**
|
|
595
|
+
* Tell if the group is locked by the Book owner
|
|
596
|
+
*/
|
|
597
|
+
locked?: boolean;
|
|
594
598
|
/**
|
|
595
599
|
* Tell if has mixed type of accounts
|
|
596
600
|
*/
|
|
@@ -718,6 +722,14 @@ declare namespace bkper {
|
|
|
718
722
|
* The id of agent that created the resource
|
|
719
723
|
*/
|
|
720
724
|
agentId?: string;
|
|
725
|
+
/**
|
|
726
|
+
* The agent logo that created the transaction
|
|
727
|
+
*/
|
|
728
|
+
agentLogo?: string;
|
|
729
|
+
/**
|
|
730
|
+
* The agent name that created the transaction
|
|
731
|
+
*/
|
|
732
|
+
agentName?: string;
|
|
721
733
|
/**
|
|
722
734
|
* The amount on format ####.##
|
|
723
735
|
*/
|
|
@@ -730,6 +742,10 @@ declare namespace bkper {
|
|
|
730
742
|
* The creation timestamp, in milliseconds
|
|
731
743
|
*/
|
|
732
744
|
createdAt?: string;
|
|
745
|
+
/**
|
|
746
|
+
* The actor username that created the transaction
|
|
747
|
+
*/
|
|
748
|
+
createdBy?: string;
|
|
733
749
|
creditAccount?: Account;
|
|
734
750
|
/**
|
|
735
751
|
* The date on ISO format yyyy-MM-dd
|
|
@@ -1018,6 +1034,12 @@ declare namespace Paths {
|
|
|
1018
1034
|
}
|
|
1019
1035
|
}
|
|
1020
1036
|
namespace BkperV5CreateNewBook {
|
|
1037
|
+
export interface BodyParameters {
|
|
1038
|
+
Book: Parameters.Book;
|
|
1039
|
+
}
|
|
1040
|
+
namespace Parameters {
|
|
1041
|
+
export type Book = bkper.Book;
|
|
1042
|
+
}
|
|
1021
1043
|
namespace Responses {
|
|
1022
1044
|
export type $200 = bkper.Book;
|
|
1023
1045
|
}
|
|
@@ -1349,6 +1371,17 @@ declare namespace Paths {
|
|
|
1349
1371
|
export type $200 = bkper.Book;
|
|
1350
1372
|
}
|
|
1351
1373
|
}
|
|
1374
|
+
namespace BkperV5UpdateBookDeprecated {
|
|
1375
|
+
export interface BodyParameters {
|
|
1376
|
+
Book: Parameters.Book;
|
|
1377
|
+
}
|
|
1378
|
+
namespace Parameters {
|
|
1379
|
+
export type Book = bkper.Book;
|
|
1380
|
+
}
|
|
1381
|
+
namespace Responses {
|
|
1382
|
+
export type $200 = bkper.Book;
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1352
1385
|
namespace BkperV5UpdateCollection {
|
|
1353
1386
|
export interface BodyParameters {
|
|
1354
1387
|
Collection: Parameters.Collection;
|