@bkper/bkper-api-types 5.4.0 → 5.5.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.
Files changed (2) hide show
  1. package/index.d.ts +19 -7
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -253,6 +253,9 @@ declare namespace bkper {
253
253
  */
254
254
  values?: string[];
255
255
  }
256
+ export interface Backlog {
257
+ count?: number; // int32
258
+ }
256
259
  export interface Balance {
257
260
  checkedCumulativeBalance?: string;
258
261
  checkedPeriodBalance?: string;
@@ -441,14 +444,13 @@ declare namespace bkper {
441
444
  createdAt?: string;
442
445
  dateAddedMs?: string;
443
446
  email?: string;
444
- error?: string;
445
447
  id?: string;
446
448
  logo?: string;
447
449
  name?: string;
448
450
  properties?: {
449
451
  [name: string]: string;
450
452
  };
451
- status?: "CONNECTED" | "DISCONNECTED";
453
+ type?: "APP" | "BANK";
452
454
  userId?: string;
453
455
  uuid?: string;
454
456
  }
@@ -1011,6 +1013,16 @@ declare namespace Paths {
1011
1013
  export type $200 = bkper.Book;
1012
1014
  }
1013
1015
  }
1016
+ namespace BkperV5GetBookEventsBacklog {
1017
+ namespace Responses {
1018
+ export type $200 = bkper.Backlog;
1019
+ }
1020
+ }
1021
+ namespace BkperV5GetConnection {
1022
+ namespace Responses {
1023
+ export type $200 = bkper.Connection;
1024
+ }
1025
+ }
1014
1026
  namespace BkperV5GetFile {
1015
1027
  namespace Responses {
1016
1028
  export type $200 = bkper.File;
@@ -1031,11 +1043,6 @@ declare namespace Paths {
1031
1043
  export type $200 = bkper.User;
1032
1044
  }
1033
1045
  }
1034
- namespace BkperV5GetUserCredentials {
1035
- namespace Responses {
1036
- export type $200 = bkper.Connection;
1037
- }
1038
- }
1039
1046
  namespace BkperV5ListAccountGroups {
1040
1047
  namespace Responses {
1041
1048
  export type $200 = bkper.GroupList;
@@ -1061,6 +1068,11 @@ declare namespace Paths {
1061
1068
  export type $200 = bkper.BookList;
1062
1069
  }
1063
1070
  }
1071
+ namespace BkperV5ListConnectionIntegrations {
1072
+ namespace Responses {
1073
+ export type $200 = bkper.IntegrationList;
1074
+ }
1075
+ }
1064
1076
  namespace BkperV5ListConnections {
1065
1077
  namespace Responses {
1066
1078
  export type $200 = bkper.ConnectionList;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bkper/bkper-api-types",
3
- "version": "5.4.0",
3
+ "version": "5.5.1",
4
4
  "description": "Typescript definitions for Bkper REST API",
5
5
  "homepage": "https://api.bkper.com",
6
6
  "repository": {