@bkper/bkper-api-types 5.17.1 → 5.19.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.
Files changed (2) hide show
  1. package/index.d.ts +48 -2
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -88,6 +88,10 @@ declare namespace bkper {
88
88
  * The agent logo. Public url or Base64 encoded
89
89
  */
90
90
  logo?: string;
91
+ /**
92
+ * The agent logo on dark mode. Public url or Base64 encoded
93
+ */
94
+ logoDark?: string;
91
95
  /**
92
96
  * The agent name
93
97
  */
@@ -814,11 +818,15 @@ declare namespace bkper {
814
818
  */
815
819
  agentId?: string;
816
820
  /**
817
- * The agent logo that created the transaction
821
+ * The logo of the agent that created the transaction
818
822
  */
819
823
  agentLogo?: string;
820
824
  /**
821
- * The agent name that created the transaction
825
+ * The logo in dark mode, of the agent that created the transaction
826
+ */
827
+ agentLogoDark?: string;
828
+ /**
829
+ * The name of the agent that created the transaction
822
830
  */
823
831
  agentName?: string;
824
832
  /**
@@ -1213,6 +1221,11 @@ declare namespace Paths {
1213
1221
  export type $200 = bkper.Integration;
1214
1222
  }
1215
1223
  }
1224
+ namespace BkperV5DeleteQuery {
1225
+ namespace Responses {
1226
+ export type $200 = bkper.Query;
1227
+ }
1228
+ }
1216
1229
  namespace BkperV5GetAccount {
1217
1230
  namespace Responses {
1218
1231
  export type $200 = bkper.Account;
@@ -1426,6 +1439,28 @@ declare namespace Paths {
1426
1439
  export type $200 = bkper.TransactionOperation;
1427
1440
  }
1428
1441
  }
1442
+ namespace BkperV5SaveQuery {
1443
+ export interface BodyParameters {
1444
+ Query: Parameters.Query;
1445
+ }
1446
+ namespace Parameters {
1447
+ export type Query = bkper.Query;
1448
+ }
1449
+ namespace Responses {
1450
+ export type $200 = bkper.Query;
1451
+ }
1452
+ }
1453
+ namespace BkperV5StreamConversation {
1454
+ export interface BodyParameters {
1455
+ Message: Parameters.Message;
1456
+ }
1457
+ namespace Parameters {
1458
+ export type Message = bkper.Message;
1459
+ }
1460
+ namespace Responses {
1461
+ export type $200 = bkper.Message;
1462
+ }
1463
+ }
1429
1464
  namespace BkperV5TrashTransaction {
1430
1465
  export interface BodyParameters {
1431
1466
  Transaction: Parameters.Transaction;
@@ -1563,6 +1598,17 @@ declare namespace Paths {
1563
1598
  export type $200 = bkper.Integration;
1564
1599
  }
1565
1600
  }
1601
+ namespace BkperV5UpdateQuery {
1602
+ export interface BodyParameters {
1603
+ Query: Parameters.Query;
1604
+ }
1605
+ namespace Parameters {
1606
+ export type Query = bkper.Query;
1607
+ }
1608
+ namespace Responses {
1609
+ export type $200 = bkper.Query;
1610
+ }
1611
+ }
1566
1612
  namespace BkperV5UpdateTransaction {
1567
1613
  export interface BodyParameters {
1568
1614
  Transaction: Parameters.Transaction;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bkper/bkper-api-types",
3
- "version": "5.17.1",
3
+ "version": "5.19.0",
4
4
  "description": "Typescript definitions for Bkper REST API",
5
5
  "homepage": "https://api.bkper.com",
6
6
  "repository": {
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "license": "MIT",
19
19
  "scripts": {
20
- "build": "dtsgen -o index.d.ts --url https://app.bkper.com/openapi.json",
20
+ "build": "dtsgen -o index.d.ts --url https://dev.bkper.com/openapi.json",
21
21
  "patch": "yarn version --patch",
22
22
  "minor": "yarn version --minor",
23
23
  "major": "yarn version --major",