@bkper/bkper-api-types 5.23.1 → 5.25.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 +17 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -438,6 +438,12 @@ declare namespace bkper {
|
|
|
438
438
|
*/
|
|
439
439
|
updatedAt?: string;
|
|
440
440
|
}
|
|
441
|
+
/**
|
|
442
|
+
* An ordered list of Collaborator
|
|
443
|
+
*/
|
|
444
|
+
export interface CollaboratorPayloadCollection {
|
|
445
|
+
items?: Collaborator[];
|
|
446
|
+
}
|
|
441
447
|
export interface Collection {
|
|
442
448
|
/**
|
|
443
449
|
* The id of agent that created the resource
|
|
@@ -632,6 +638,12 @@ declare namespace bkper {
|
|
|
632
638
|
* The file name
|
|
633
639
|
*/
|
|
634
640
|
name?: string;
|
|
641
|
+
/**
|
|
642
|
+
* The key/value custom properties of the File
|
|
643
|
+
*/
|
|
644
|
+
properties?: {
|
|
645
|
+
[name: string]: string;
|
|
646
|
+
};
|
|
635
647
|
/**
|
|
636
648
|
* The file size in bytes
|
|
637
649
|
*/
|
|
@@ -1348,6 +1360,11 @@ declare namespace Paths {
|
|
|
1348
1360
|
export type $200 = bkper.BookList;
|
|
1349
1361
|
}
|
|
1350
1362
|
}
|
|
1363
|
+
namespace BkperV5ListCollaborators {
|
|
1364
|
+
namespace Responses {
|
|
1365
|
+
export type $200 = /* An ordered list of Collaborator */ bkper.CollaboratorPayloadCollection;
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1351
1368
|
namespace BkperV5ListCollections {
|
|
1352
1369
|
namespace Responses {
|
|
1353
1370
|
export type $200 = bkper.CollectionList;
|