@bkper/bkper-api-types 5.24.0 → 5.26.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 +15 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -12,6 +12,10 @@ declare namespace bkper {
|
|
|
12
12
|
* The current account balance, when querying transactions.
|
|
13
13
|
*/
|
|
14
14
|
balance?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Whether the account balance has been verified/audited
|
|
17
|
+
*/
|
|
18
|
+
balanceVerified?: boolean;
|
|
15
19
|
/**
|
|
16
20
|
* The creation timestamp, in milliseconds
|
|
17
21
|
*/
|
|
@@ -438,6 +442,12 @@ declare namespace bkper {
|
|
|
438
442
|
*/
|
|
439
443
|
updatedAt?: string;
|
|
440
444
|
}
|
|
445
|
+
/**
|
|
446
|
+
* An ordered list of Collaborator
|
|
447
|
+
*/
|
|
448
|
+
export interface CollaboratorPayloadCollection {
|
|
449
|
+
items?: Collaborator[];
|
|
450
|
+
}
|
|
441
451
|
export interface Collection {
|
|
442
452
|
/**
|
|
443
453
|
* The id of agent that created the resource
|
|
@@ -1354,6 +1364,11 @@ declare namespace Paths {
|
|
|
1354
1364
|
export type $200 = bkper.BookList;
|
|
1355
1365
|
}
|
|
1356
1366
|
}
|
|
1367
|
+
namespace BkperV5ListCollaborators {
|
|
1368
|
+
namespace Responses {
|
|
1369
|
+
export type $200 = /* An ordered list of Collaborator */ bkper.CollaboratorPayloadCollection;
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1357
1372
|
namespace BkperV5ListCollections {
|
|
1358
1373
|
namespace Responses {
|
|
1359
1374
|
export type $200 = bkper.CollectionList;
|