@bkper/bkper-api-types 5.18.0 → 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.
- package/index.d.ts +27 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1221,6 +1221,11 @@ declare namespace Paths {
|
|
|
1221
1221
|
export type $200 = bkper.Integration;
|
|
1222
1222
|
}
|
|
1223
1223
|
}
|
|
1224
|
+
namespace BkperV5DeleteQuery {
|
|
1225
|
+
namespace Responses {
|
|
1226
|
+
export type $200 = bkper.Query;
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1224
1229
|
namespace BkperV5GetAccount {
|
|
1225
1230
|
namespace Responses {
|
|
1226
1231
|
export type $200 = bkper.Account;
|
|
@@ -1434,6 +1439,17 @@ declare namespace Paths {
|
|
|
1434
1439
|
export type $200 = bkper.TransactionOperation;
|
|
1435
1440
|
}
|
|
1436
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
|
+
}
|
|
1437
1453
|
namespace BkperV5StreamConversation {
|
|
1438
1454
|
export interface BodyParameters {
|
|
1439
1455
|
Message: Parameters.Message;
|
|
@@ -1582,6 +1598,17 @@ declare namespace Paths {
|
|
|
1582
1598
|
export type $200 = bkper.Integration;
|
|
1583
1599
|
}
|
|
1584
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
|
+
}
|
|
1585
1612
|
namespace BkperV5UpdateTransaction {
|
|
1586
1613
|
export interface BodyParameters {
|
|
1587
1614
|
Transaction: Parameters.Transaction;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bkper/bkper-api-types",
|
|
3
|
-
"version": "5.
|
|
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://
|
|
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",
|