@bkper/bkper-api-types 5.10.0 → 5.12.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 +41 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -275,6 +275,10 @@ declare namespace bkper {
|
|
|
275
275
|
* The id of agent that created the resource
|
|
276
276
|
*/
|
|
277
277
|
agentId?: string;
|
|
278
|
+
/**
|
|
279
|
+
* Tells if the Book has auto post enabled
|
|
280
|
+
*/
|
|
281
|
+
autoPost?: boolean;
|
|
278
282
|
/**
|
|
279
283
|
* The book closing date
|
|
280
284
|
*/
|
|
@@ -591,6 +595,10 @@ declare namespace bkper {
|
|
|
591
595
|
* The unique id that identifies the Group in the Book
|
|
592
596
|
*/
|
|
593
597
|
id?: string;
|
|
598
|
+
/**
|
|
599
|
+
* Tell if the group is locked by the Book owner
|
|
600
|
+
*/
|
|
601
|
+
locked?: boolean;
|
|
594
602
|
/**
|
|
595
603
|
* Tell if has mixed type of accounts
|
|
596
604
|
*/
|
|
@@ -718,6 +726,14 @@ declare namespace bkper {
|
|
|
718
726
|
* The id of agent that created the resource
|
|
719
727
|
*/
|
|
720
728
|
agentId?: string;
|
|
729
|
+
/**
|
|
730
|
+
* The agent logo that created the transaction
|
|
731
|
+
*/
|
|
732
|
+
agentLogo?: string;
|
|
733
|
+
/**
|
|
734
|
+
* The agent name that created the transaction
|
|
735
|
+
*/
|
|
736
|
+
agentName?: string;
|
|
721
737
|
/**
|
|
722
738
|
* The amount on format ####.##
|
|
723
739
|
*/
|
|
@@ -730,6 +746,10 @@ declare namespace bkper {
|
|
|
730
746
|
* The creation timestamp, in milliseconds
|
|
731
747
|
*/
|
|
732
748
|
createdAt?: string;
|
|
749
|
+
/**
|
|
750
|
+
* The actor username that created the transaction
|
|
751
|
+
*/
|
|
752
|
+
createdBy?: string;
|
|
733
753
|
creditAccount?: Account;
|
|
734
754
|
/**
|
|
735
755
|
* The date on ISO format yyyy-MM-dd
|
|
@@ -856,6 +876,10 @@ declare namespace bkper {
|
|
|
856
876
|
* The user display name
|
|
857
877
|
*/
|
|
858
878
|
name?: string;
|
|
879
|
+
/**
|
|
880
|
+
* The user plan
|
|
881
|
+
*/
|
|
882
|
+
plan?: string;
|
|
859
883
|
/**
|
|
860
884
|
* True if user started trial
|
|
861
885
|
*/
|
|
@@ -1018,6 +1042,12 @@ declare namespace Paths {
|
|
|
1018
1042
|
}
|
|
1019
1043
|
}
|
|
1020
1044
|
namespace BkperV5CreateNewBook {
|
|
1045
|
+
export interface BodyParameters {
|
|
1046
|
+
Book: Parameters.Book;
|
|
1047
|
+
}
|
|
1048
|
+
namespace Parameters {
|
|
1049
|
+
export type Book = bkper.Book;
|
|
1050
|
+
}
|
|
1021
1051
|
namespace Responses {
|
|
1022
1052
|
export type $200 = bkper.Book;
|
|
1023
1053
|
}
|
|
@@ -1349,6 +1379,17 @@ declare namespace Paths {
|
|
|
1349
1379
|
export type $200 = bkper.Book;
|
|
1350
1380
|
}
|
|
1351
1381
|
}
|
|
1382
|
+
namespace BkperV5UpdateBookDeprecated {
|
|
1383
|
+
export interface BodyParameters {
|
|
1384
|
+
Book: Parameters.Book;
|
|
1385
|
+
}
|
|
1386
|
+
namespace Parameters {
|
|
1387
|
+
export type Book = bkper.Book;
|
|
1388
|
+
}
|
|
1389
|
+
namespace Responses {
|
|
1390
|
+
export type $200 = bkper.Book;
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1352
1393
|
namespace BkperV5UpdateCollection {
|
|
1353
1394
|
export interface BodyParameters {
|
|
1354
1395
|
Collection: Parameters.Collection;
|