@bkper/bkper-api-types 5.30.0 → 5.30.1
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 +9 -0
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -9
package/index.d.ts
CHANGED
|
@@ -831,6 +831,10 @@ declare namespace bkper {
|
|
|
831
831
|
* The transaction description
|
|
832
832
|
*/
|
|
833
833
|
description?: string;
|
|
834
|
+
/**
|
|
835
|
+
* Tell if its a draft transaction
|
|
836
|
+
*/
|
|
837
|
+
draft?: boolean;
|
|
834
838
|
/**
|
|
835
839
|
* The files attached to the transaction
|
|
836
840
|
*/
|
|
@@ -1151,6 +1155,11 @@ declare namespace Paths {
|
|
|
1151
1155
|
export type $200 = bkper.Account;
|
|
1152
1156
|
}
|
|
1153
1157
|
}
|
|
1158
|
+
namespace BkperV5DeleteBook {
|
|
1159
|
+
namespace Responses {
|
|
1160
|
+
export type $200 = bkper.Book;
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1154
1163
|
namespace BkperV5DeleteCollection {
|
|
1155
1164
|
namespace Responses {
|
|
1156
1165
|
export type $200 = bkper.BookList;
|
package/package.json
CHANGED