@bkper/bkper-api-types 5.37.0 → 5.38.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/CLAUDE.md +1 -1
- package/README.md +1 -1
- package/index.d.ts +97 -88
- package/package.json +2 -2
package/CLAUDE.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**DO NOT manually edit `index.d.ts`** - this file is auto-generated.
|
|
6
6
|
|
|
7
|
-
The types are generated from the Bkper [Open API spec](https://bkper.com/openapi.json) using the [dtsgenerator](https://github.com/horiuchi/dtsgenerator) tool.
|
|
7
|
+
The types are generated from the Bkper [Open API spec](https://bkper.com/docs/api/rest/openapi.json) using the [dtsgenerator](https://github.com/horiuchi/dtsgenerator) tool.
|
|
8
8
|
|
|
9
9
|
## Regenerating Types
|
|
10
10
|
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ This package contains Typescript definitions for the [Bkper REST API](https://bk
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@bkper/bkper-api-types)
|
|
6
6
|
|
|
7
|
-
The types are generated based on the Bkper [Open API spec](https://bkper.com/openapi.json) using the [dtsgenerator](https://github.com/horiuchi/dtsgenerator) tool.
|
|
7
|
+
The types are generated based on the Bkper [Open API spec](https://bkper.com/docs/api/rest/openapi.json) using the [dtsgenerator](https://github.com/horiuchi/dtsgenerator) tool.
|
|
8
8
|
|
|
9
9
|
More information at the [Bkper Developer Documentation](http://bkper.com/docs/#rest-api)
|
|
10
10
|
|
package/index.d.ts
CHANGED
|
@@ -105,8 +105,6 @@ declare namespace bkper {
|
|
|
105
105
|
*/
|
|
106
106
|
name?: string;
|
|
107
107
|
}
|
|
108
|
-
export interface Any {
|
|
109
|
-
}
|
|
110
108
|
export interface App {
|
|
111
109
|
/**
|
|
112
110
|
* The API version of the event payload
|
|
@@ -603,7 +601,7 @@ declare namespace bkper {
|
|
|
603
601
|
user?: User;
|
|
604
602
|
}
|
|
605
603
|
export interface EventData {
|
|
606
|
-
object?:
|
|
604
|
+
object?: unknown;
|
|
607
605
|
/**
|
|
608
606
|
* The object previous attributes when updated
|
|
609
607
|
*/
|
|
@@ -1034,7 +1032,7 @@ declare namespace bkper {
|
|
|
1034
1032
|
}
|
|
1035
1033
|
}
|
|
1036
1034
|
declare namespace Paths {
|
|
1037
|
-
namespace
|
|
1035
|
+
namespace AddBooksToCollection {
|
|
1038
1036
|
export interface BodyParameters {
|
|
1039
1037
|
BookList: Parameters.BookList;
|
|
1040
1038
|
}
|
|
@@ -1045,7 +1043,7 @@ declare namespace Paths {
|
|
|
1045
1043
|
export type $200 = bkper.BookList;
|
|
1046
1044
|
}
|
|
1047
1045
|
}
|
|
1048
|
-
namespace
|
|
1046
|
+
namespace AddCollaborator {
|
|
1049
1047
|
export interface BodyParameters {
|
|
1050
1048
|
Collaborator: Parameters.Collaborator;
|
|
1051
1049
|
}
|
|
@@ -1056,7 +1054,7 @@ declare namespace Paths {
|
|
|
1056
1054
|
export type $200 = bkper.Collaborator;
|
|
1057
1055
|
}
|
|
1058
1056
|
}
|
|
1059
|
-
namespace
|
|
1057
|
+
namespace CheckTransaction {
|
|
1060
1058
|
export interface BodyParameters {
|
|
1061
1059
|
Transaction: Parameters.Transaction;
|
|
1062
1060
|
}
|
|
@@ -1067,7 +1065,7 @@ declare namespace Paths {
|
|
|
1067
1065
|
export type $200 = bkper.TransactionOperation;
|
|
1068
1066
|
}
|
|
1069
1067
|
}
|
|
1070
|
-
namespace
|
|
1068
|
+
namespace CheckTransactionsBatch {
|
|
1071
1069
|
export interface BodyParameters {
|
|
1072
1070
|
TransactionList: Parameters.TransactionList;
|
|
1073
1071
|
}
|
|
@@ -1075,22 +1073,22 @@ declare namespace Paths {
|
|
|
1075
1073
|
export type TransactionList = bkper.TransactionList;
|
|
1076
1074
|
}
|
|
1077
1075
|
}
|
|
1078
|
-
namespace
|
|
1076
|
+
namespace CopyBook {
|
|
1079
1077
|
namespace Responses {
|
|
1080
1078
|
export type $200 = bkper.Book;
|
|
1081
1079
|
}
|
|
1082
1080
|
}
|
|
1083
|
-
namespace
|
|
1081
|
+
namespace CountTransactions {
|
|
1084
1082
|
namespace Responses {
|
|
1085
1083
|
export type $200 = bkper.Count;
|
|
1086
1084
|
}
|
|
1087
1085
|
}
|
|
1088
|
-
namespace
|
|
1086
|
+
namespace CountTransactionsPosted {
|
|
1089
1087
|
namespace Responses {
|
|
1090
1088
|
export type $200 = bkper.Counts;
|
|
1091
1089
|
}
|
|
1092
1090
|
}
|
|
1093
|
-
namespace
|
|
1091
|
+
namespace CreateAccount {
|
|
1094
1092
|
export interface BodyParameters {
|
|
1095
1093
|
Account: Parameters.Account;
|
|
1096
1094
|
}
|
|
@@ -1101,7 +1099,7 @@ declare namespace Paths {
|
|
|
1101
1099
|
export type $200 = bkper.Account;
|
|
1102
1100
|
}
|
|
1103
1101
|
}
|
|
1104
|
-
namespace
|
|
1102
|
+
namespace CreateAccountsBatch {
|
|
1105
1103
|
export interface BodyParameters {
|
|
1106
1104
|
AccountList: Parameters.AccountList;
|
|
1107
1105
|
}
|
|
@@ -1112,7 +1110,7 @@ declare namespace Paths {
|
|
|
1112
1110
|
export type $200 = bkper.AccountList;
|
|
1113
1111
|
}
|
|
1114
1112
|
}
|
|
1115
|
-
namespace
|
|
1113
|
+
namespace CreateApp {
|
|
1116
1114
|
export interface BodyParameters {
|
|
1117
1115
|
App: Parameters.App;
|
|
1118
1116
|
}
|
|
@@ -1123,7 +1121,7 @@ declare namespace Paths {
|
|
|
1123
1121
|
export type $200 = bkper.App;
|
|
1124
1122
|
}
|
|
1125
1123
|
}
|
|
1126
|
-
namespace
|
|
1124
|
+
namespace CreateCollection {
|
|
1127
1125
|
export interface BodyParameters {
|
|
1128
1126
|
Collection: Parameters.Collection;
|
|
1129
1127
|
}
|
|
@@ -1134,7 +1132,7 @@ declare namespace Paths {
|
|
|
1134
1132
|
export type $200 = bkper.Collection;
|
|
1135
1133
|
}
|
|
1136
1134
|
}
|
|
1137
|
-
namespace
|
|
1135
|
+
namespace CreateConnection {
|
|
1138
1136
|
export interface BodyParameters {
|
|
1139
1137
|
Connection: Parameters.Connection;
|
|
1140
1138
|
}
|
|
@@ -1145,7 +1143,7 @@ declare namespace Paths {
|
|
|
1145
1143
|
export type $200 = bkper.Connection;
|
|
1146
1144
|
}
|
|
1147
1145
|
}
|
|
1148
|
-
namespace
|
|
1146
|
+
namespace CreateFile {
|
|
1149
1147
|
export interface BodyParameters {
|
|
1150
1148
|
File: Parameters.File;
|
|
1151
1149
|
}
|
|
@@ -1156,7 +1154,7 @@ declare namespace Paths {
|
|
|
1156
1154
|
export type $200 = bkper.File;
|
|
1157
1155
|
}
|
|
1158
1156
|
}
|
|
1159
|
-
namespace
|
|
1157
|
+
namespace CreateGroup {
|
|
1160
1158
|
export interface BodyParameters {
|
|
1161
1159
|
Group: Parameters.Group;
|
|
1162
1160
|
}
|
|
@@ -1167,7 +1165,7 @@ declare namespace Paths {
|
|
|
1167
1165
|
export type $200 = bkper.Group;
|
|
1168
1166
|
}
|
|
1169
1167
|
}
|
|
1170
|
-
namespace
|
|
1168
|
+
namespace CreateGroupsBatch {
|
|
1171
1169
|
export interface BodyParameters {
|
|
1172
1170
|
GroupList: Parameters.GroupList;
|
|
1173
1171
|
}
|
|
@@ -1178,7 +1176,7 @@ declare namespace Paths {
|
|
|
1178
1176
|
export type $200 = bkper.GroupList;
|
|
1179
1177
|
}
|
|
1180
1178
|
}
|
|
1181
|
-
namespace
|
|
1179
|
+
namespace CreateIntegration {
|
|
1182
1180
|
export interface BodyParameters {
|
|
1183
1181
|
Integration: Parameters.Integration;
|
|
1184
1182
|
}
|
|
@@ -1189,7 +1187,7 @@ declare namespace Paths {
|
|
|
1189
1187
|
export type $200 = bkper.Integration;
|
|
1190
1188
|
}
|
|
1191
1189
|
}
|
|
1192
|
-
namespace
|
|
1190
|
+
namespace CreateNewBook {
|
|
1193
1191
|
export interface BodyParameters {
|
|
1194
1192
|
Book: Parameters.Book;
|
|
1195
1193
|
}
|
|
@@ -1200,7 +1198,7 @@ declare namespace Paths {
|
|
|
1200
1198
|
export type $200 = bkper.Book;
|
|
1201
1199
|
}
|
|
1202
1200
|
}
|
|
1203
|
-
namespace
|
|
1201
|
+
namespace CreateTransaction {
|
|
1204
1202
|
export interface BodyParameters {
|
|
1205
1203
|
Transaction: Parameters.Transaction;
|
|
1206
1204
|
}
|
|
@@ -1211,7 +1209,7 @@ declare namespace Paths {
|
|
|
1211
1209
|
export type $200 = bkper.TransactionOperation;
|
|
1212
1210
|
}
|
|
1213
1211
|
}
|
|
1214
|
-
namespace
|
|
1212
|
+
namespace CreateTransactionsBatch {
|
|
1215
1213
|
export interface BodyParameters {
|
|
1216
1214
|
TransactionList: Parameters.TransactionList;
|
|
1217
1215
|
}
|
|
@@ -1222,12 +1220,12 @@ declare namespace Paths {
|
|
|
1222
1220
|
export type $200 = bkper.TransactionList;
|
|
1223
1221
|
}
|
|
1224
1222
|
}
|
|
1225
|
-
namespace
|
|
1223
|
+
namespace DeleteAccount {
|
|
1226
1224
|
namespace Responses {
|
|
1227
1225
|
export type $200 = bkper.Account;
|
|
1228
1226
|
}
|
|
1229
1227
|
}
|
|
1230
|
-
namespace
|
|
1228
|
+
namespace DeleteAccountsBatch {
|
|
1231
1229
|
export interface BodyParameters {
|
|
1232
1230
|
AccountList: Parameters.AccountList;
|
|
1233
1231
|
}
|
|
@@ -1238,192 +1236,192 @@ declare namespace Paths {
|
|
|
1238
1236
|
export type $200 = bkper.AccountList;
|
|
1239
1237
|
}
|
|
1240
1238
|
}
|
|
1241
|
-
namespace
|
|
1239
|
+
namespace DeleteBook {
|
|
1242
1240
|
namespace Responses {
|
|
1243
1241
|
export type $200 = bkper.Book;
|
|
1244
1242
|
}
|
|
1245
1243
|
}
|
|
1246
|
-
namespace
|
|
1244
|
+
namespace DeleteCollection {
|
|
1247
1245
|
namespace Responses {
|
|
1248
1246
|
export type $200 = bkper.BookList;
|
|
1249
1247
|
}
|
|
1250
1248
|
}
|
|
1251
|
-
namespace
|
|
1249
|
+
namespace DeleteConnection {
|
|
1252
1250
|
namespace Responses {
|
|
1253
1251
|
export type $200 = bkper.Connection;
|
|
1254
1252
|
}
|
|
1255
1253
|
}
|
|
1256
|
-
namespace
|
|
1254
|
+
namespace DeleteEventResponse {
|
|
1257
1255
|
namespace Responses {
|
|
1258
1256
|
export type $200 = bkper.Event;
|
|
1259
1257
|
}
|
|
1260
1258
|
}
|
|
1261
|
-
namespace
|
|
1259
|
+
namespace DeleteGroup {
|
|
1262
1260
|
namespace Responses {
|
|
1263
1261
|
export type $200 = bkper.Group;
|
|
1264
1262
|
}
|
|
1265
1263
|
}
|
|
1266
|
-
namespace
|
|
1264
|
+
namespace DeleteIntegration {
|
|
1267
1265
|
namespace Responses {
|
|
1268
1266
|
export type $200 = bkper.Integration;
|
|
1269
1267
|
}
|
|
1270
1268
|
}
|
|
1271
|
-
namespace
|
|
1269
|
+
namespace DeleteQuery {
|
|
1272
1270
|
namespace Responses {
|
|
1273
1271
|
export type $200 = bkper.Query;
|
|
1274
1272
|
}
|
|
1275
1273
|
}
|
|
1276
|
-
namespace
|
|
1274
|
+
namespace GetAccount {
|
|
1277
1275
|
namespace Responses {
|
|
1278
1276
|
export type $200 = bkper.Account;
|
|
1279
1277
|
}
|
|
1280
1278
|
}
|
|
1281
|
-
namespace
|
|
1279
|
+
namespace GetApp {
|
|
1282
1280
|
namespace Responses {
|
|
1283
1281
|
export type $200 = bkper.App;
|
|
1284
1282
|
}
|
|
1285
1283
|
}
|
|
1286
|
-
namespace
|
|
1284
|
+
namespace GetBalances {
|
|
1287
1285
|
namespace Responses {
|
|
1288
1286
|
export type $200 = bkper.Balances;
|
|
1289
1287
|
}
|
|
1290
1288
|
}
|
|
1291
|
-
namespace
|
|
1289
|
+
namespace GetBilling {
|
|
1292
1290
|
namespace Responses {
|
|
1293
1291
|
export type $200 = bkper.Billing;
|
|
1294
1292
|
}
|
|
1295
1293
|
}
|
|
1296
|
-
namespace
|
|
1294
|
+
namespace GetBillingCheckout {
|
|
1297
1295
|
namespace Responses {
|
|
1298
1296
|
export type $200 = bkper.Url;
|
|
1299
1297
|
}
|
|
1300
1298
|
}
|
|
1301
|
-
namespace
|
|
1299
|
+
namespace GetBillingPortal {
|
|
1302
1300
|
namespace Responses {
|
|
1303
1301
|
export type $200 = bkper.Url;
|
|
1304
1302
|
}
|
|
1305
1303
|
}
|
|
1306
|
-
namespace
|
|
1304
|
+
namespace GetBook {
|
|
1307
1305
|
namespace Responses {
|
|
1308
1306
|
export type $200 = bkper.Book;
|
|
1309
1307
|
}
|
|
1310
1308
|
}
|
|
1311
|
-
namespace
|
|
1309
|
+
namespace GetBookEventsBacklog {
|
|
1312
1310
|
namespace Responses {
|
|
1313
1311
|
export type $200 = bkper.Backlog;
|
|
1314
1312
|
}
|
|
1315
1313
|
}
|
|
1316
|
-
namespace
|
|
1314
|
+
namespace GetConnection {
|
|
1317
1315
|
namespace Responses {
|
|
1318
1316
|
export type $200 = bkper.Connection;
|
|
1319
1317
|
}
|
|
1320
1318
|
}
|
|
1321
|
-
namespace
|
|
1319
|
+
namespace GetFile {
|
|
1322
1320
|
namespace Responses {
|
|
1323
1321
|
export type $200 = bkper.File;
|
|
1324
1322
|
}
|
|
1325
1323
|
}
|
|
1326
|
-
namespace
|
|
1324
|
+
namespace GetGroup {
|
|
1327
1325
|
namespace Responses {
|
|
1328
1326
|
export type $200 = bkper.Group;
|
|
1329
1327
|
}
|
|
1330
1328
|
}
|
|
1331
|
-
namespace
|
|
1329
|
+
namespace GetTransaction {
|
|
1332
1330
|
namespace Responses {
|
|
1333
1331
|
export type $200 = bkper.Transaction;
|
|
1334
1332
|
}
|
|
1335
1333
|
}
|
|
1336
|
-
namespace
|
|
1334
|
+
namespace GetUser {
|
|
1337
1335
|
namespace Responses {
|
|
1338
1336
|
export type $200 = bkper.User;
|
|
1339
1337
|
}
|
|
1340
1338
|
}
|
|
1341
|
-
namespace
|
|
1339
|
+
namespace ListAccountGroups {
|
|
1342
1340
|
namespace Responses {
|
|
1343
1341
|
export type $200 = bkper.GroupList;
|
|
1344
1342
|
}
|
|
1345
1343
|
}
|
|
1346
|
-
namespace
|
|
1344
|
+
namespace ListAccounts {
|
|
1347
1345
|
namespace Responses {
|
|
1348
1346
|
export type $200 = bkper.AccountList;
|
|
1349
1347
|
}
|
|
1350
1348
|
}
|
|
1351
|
-
namespace
|
|
1349
|
+
namespace ListApps {
|
|
1352
1350
|
namespace Responses {
|
|
1353
1351
|
export type $200 = bkper.AppList;
|
|
1354
1352
|
}
|
|
1355
1353
|
}
|
|
1356
|
-
namespace
|
|
1354
|
+
namespace ListBillingCounts {
|
|
1357
1355
|
namespace Responses {
|
|
1358
1356
|
export type $200 = bkper.Counts;
|
|
1359
1357
|
}
|
|
1360
1358
|
}
|
|
1361
|
-
namespace
|
|
1359
|
+
namespace ListBookApps {
|
|
1362
1360
|
namespace Responses {
|
|
1363
1361
|
export type $200 = bkper.AppList;
|
|
1364
1362
|
}
|
|
1365
1363
|
}
|
|
1366
|
-
namespace
|
|
1364
|
+
namespace ListBooks {
|
|
1367
1365
|
namespace Responses {
|
|
1368
1366
|
export type $200 = bkper.BookList;
|
|
1369
1367
|
}
|
|
1370
1368
|
}
|
|
1371
|
-
namespace
|
|
1369
|
+
namespace ListCollaborators {
|
|
1372
1370
|
namespace Responses {
|
|
1373
1371
|
export type $200 = /* An ordered list of Collaborator */ bkper.CollaboratorPayloadCollection;
|
|
1374
1372
|
}
|
|
1375
1373
|
}
|
|
1376
|
-
namespace
|
|
1374
|
+
namespace ListCollections {
|
|
1377
1375
|
namespace Responses {
|
|
1378
1376
|
export type $200 = bkper.CollectionList;
|
|
1379
1377
|
}
|
|
1380
1378
|
}
|
|
1381
|
-
namespace
|
|
1379
|
+
namespace ListConnectionIntegrations {
|
|
1382
1380
|
namespace Responses {
|
|
1383
1381
|
export type $200 = bkper.IntegrationList;
|
|
1384
1382
|
}
|
|
1385
1383
|
}
|
|
1386
|
-
namespace
|
|
1384
|
+
namespace ListConnections {
|
|
1387
1385
|
namespace Responses {
|
|
1388
1386
|
export type $200 = bkper.ConnectionList;
|
|
1389
1387
|
}
|
|
1390
1388
|
}
|
|
1391
|
-
namespace
|
|
1389
|
+
namespace ListEvents {
|
|
1392
1390
|
namespace Responses {
|
|
1393
1391
|
export type $200 = bkper.EventList;
|
|
1394
1392
|
}
|
|
1395
1393
|
}
|
|
1396
|
-
namespace
|
|
1394
|
+
namespace ListGroupAccounts {
|
|
1397
1395
|
namespace Responses {
|
|
1398
1396
|
export type $200 = bkper.AccountList;
|
|
1399
1397
|
}
|
|
1400
1398
|
}
|
|
1401
|
-
namespace
|
|
1399
|
+
namespace ListGroups {
|
|
1402
1400
|
namespace Responses {
|
|
1403
1401
|
export type $200 = bkper.GroupList;
|
|
1404
1402
|
}
|
|
1405
1403
|
}
|
|
1406
|
-
namespace
|
|
1404
|
+
namespace ListIntegrations {
|
|
1407
1405
|
namespace Responses {
|
|
1408
1406
|
export type $200 = bkper.IntegrationList;
|
|
1409
1407
|
}
|
|
1410
1408
|
}
|
|
1411
|
-
namespace
|
|
1409
|
+
namespace ListQueries {
|
|
1412
1410
|
namespace Responses {
|
|
1413
1411
|
export type $200 = bkper.QueryList;
|
|
1414
1412
|
}
|
|
1415
1413
|
}
|
|
1416
|
-
namespace
|
|
1414
|
+
namespace ListTemplates {
|
|
1417
1415
|
namespace Responses {
|
|
1418
1416
|
export type $200 = bkper.TemplateList;
|
|
1419
1417
|
}
|
|
1420
1418
|
}
|
|
1421
|
-
namespace
|
|
1419
|
+
namespace ListTransactions {
|
|
1422
1420
|
namespace Responses {
|
|
1423
1421
|
export type $200 = bkper.TransactionList;
|
|
1424
1422
|
}
|
|
1425
1423
|
}
|
|
1426
|
-
namespace
|
|
1424
|
+
namespace PostTransaction {
|
|
1427
1425
|
export interface BodyParameters {
|
|
1428
1426
|
Transaction: Parameters.Transaction;
|
|
1429
1427
|
}
|
|
@@ -1434,7 +1432,7 @@ declare namespace Paths {
|
|
|
1434
1432
|
export type $200 = bkper.TransactionOperation;
|
|
1435
1433
|
}
|
|
1436
1434
|
}
|
|
1437
|
-
namespace
|
|
1435
|
+
namespace PostTransactionsBatch {
|
|
1438
1436
|
export interface BodyParameters {
|
|
1439
1437
|
TransactionList: Parameters.TransactionList;
|
|
1440
1438
|
}
|
|
@@ -1442,7 +1440,7 @@ declare namespace Paths {
|
|
|
1442
1440
|
export type TransactionList = bkper.TransactionList;
|
|
1443
1441
|
}
|
|
1444
1442
|
}
|
|
1445
|
-
namespace
|
|
1443
|
+
namespace RemoveBooksFromCollection {
|
|
1446
1444
|
export interface BodyParameters {
|
|
1447
1445
|
BookList: Parameters.BookList;
|
|
1448
1446
|
}
|
|
@@ -1453,12 +1451,12 @@ declare namespace Paths {
|
|
|
1453
1451
|
export type $200 = bkper.BookList;
|
|
1454
1452
|
}
|
|
1455
1453
|
}
|
|
1456
|
-
namespace
|
|
1454
|
+
namespace RemoveCollaborator {
|
|
1457
1455
|
namespace Responses {
|
|
1458
1456
|
export type $200 = bkper.Collaborator;
|
|
1459
1457
|
}
|
|
1460
1458
|
}
|
|
1461
|
-
namespace
|
|
1459
|
+
namespace RemoveTransaction {
|
|
1462
1460
|
export interface BodyParameters {
|
|
1463
1461
|
Transaction: Parameters.Transaction;
|
|
1464
1462
|
}
|
|
@@ -1469,12 +1467,12 @@ declare namespace Paths {
|
|
|
1469
1467
|
export type $200 = bkper.TransactionOperation;
|
|
1470
1468
|
}
|
|
1471
1469
|
}
|
|
1472
|
-
namespace
|
|
1470
|
+
namespace ReplayEventResponse {
|
|
1473
1471
|
namespace Responses {
|
|
1474
1472
|
export type $200 = bkper.Event;
|
|
1475
1473
|
}
|
|
1476
1474
|
}
|
|
1477
|
-
namespace
|
|
1475
|
+
namespace ReplayEvents {
|
|
1478
1476
|
export interface BodyParameters {
|
|
1479
1477
|
EventList: Parameters.EventList;
|
|
1480
1478
|
}
|
|
@@ -1482,7 +1480,7 @@ declare namespace Paths {
|
|
|
1482
1480
|
export type EventList = bkper.EventList;
|
|
1483
1481
|
}
|
|
1484
1482
|
}
|
|
1485
|
-
namespace
|
|
1483
|
+
namespace RestoreTransaction {
|
|
1486
1484
|
export interface BodyParameters {
|
|
1487
1485
|
Transaction: Parameters.Transaction;
|
|
1488
1486
|
}
|
|
@@ -1493,7 +1491,7 @@ declare namespace Paths {
|
|
|
1493
1491
|
export type $200 = bkper.TransactionOperation;
|
|
1494
1492
|
}
|
|
1495
1493
|
}
|
|
1496
|
-
namespace
|
|
1494
|
+
namespace SaveQuery {
|
|
1497
1495
|
export interface BodyParameters {
|
|
1498
1496
|
Query: Parameters.Query;
|
|
1499
1497
|
}
|
|
@@ -1504,7 +1502,7 @@ declare namespace Paths {
|
|
|
1504
1502
|
export type $200 = bkper.Query;
|
|
1505
1503
|
}
|
|
1506
1504
|
}
|
|
1507
|
-
namespace
|
|
1505
|
+
namespace TrashTransaction {
|
|
1508
1506
|
export interface BodyParameters {
|
|
1509
1507
|
Transaction: Parameters.Transaction;
|
|
1510
1508
|
}
|
|
@@ -1515,7 +1513,7 @@ declare namespace Paths {
|
|
|
1515
1513
|
export type $200 = bkper.TransactionOperation;
|
|
1516
1514
|
}
|
|
1517
1515
|
}
|
|
1518
|
-
namespace
|
|
1516
|
+
namespace TrashTransactionsBatch {
|
|
1519
1517
|
export interface BodyParameters {
|
|
1520
1518
|
TransactionList: Parameters.TransactionList;
|
|
1521
1519
|
}
|
|
@@ -1523,7 +1521,7 @@ declare namespace Paths {
|
|
|
1523
1521
|
export type TransactionList = bkper.TransactionList;
|
|
1524
1522
|
}
|
|
1525
1523
|
}
|
|
1526
|
-
namespace
|
|
1524
|
+
namespace UncheckTransaction {
|
|
1527
1525
|
export interface BodyParameters {
|
|
1528
1526
|
Transaction: Parameters.Transaction;
|
|
1529
1527
|
}
|
|
@@ -1534,7 +1532,7 @@ declare namespace Paths {
|
|
|
1534
1532
|
export type $200 = bkper.TransactionOperation;
|
|
1535
1533
|
}
|
|
1536
1534
|
}
|
|
1537
|
-
namespace
|
|
1535
|
+
namespace UncheckTransactionsBatch {
|
|
1538
1536
|
export interface BodyParameters {
|
|
1539
1537
|
TransactionList: Parameters.TransactionList;
|
|
1540
1538
|
}
|
|
@@ -1542,7 +1540,7 @@ declare namespace Paths {
|
|
|
1542
1540
|
export type TransactionList = bkper.TransactionList;
|
|
1543
1541
|
}
|
|
1544
1542
|
}
|
|
1545
|
-
namespace
|
|
1543
|
+
namespace UntrashTransaction {
|
|
1546
1544
|
export interface BodyParameters {
|
|
1547
1545
|
Transaction: Parameters.Transaction;
|
|
1548
1546
|
}
|
|
@@ -1553,7 +1551,7 @@ declare namespace Paths {
|
|
|
1553
1551
|
export type $200 = bkper.TransactionOperation;
|
|
1554
1552
|
}
|
|
1555
1553
|
}
|
|
1556
|
-
namespace
|
|
1554
|
+
namespace UntrashTransactionsBatch {
|
|
1557
1555
|
export interface BodyParameters {
|
|
1558
1556
|
TransactionList: Parameters.TransactionList;
|
|
1559
1557
|
}
|
|
@@ -1561,7 +1559,7 @@ declare namespace Paths {
|
|
|
1561
1559
|
export type TransactionList = bkper.TransactionList;
|
|
1562
1560
|
}
|
|
1563
1561
|
}
|
|
1564
|
-
namespace
|
|
1562
|
+
namespace UpdateAccount {
|
|
1565
1563
|
export interface BodyParameters {
|
|
1566
1564
|
Account: Parameters.Account;
|
|
1567
1565
|
}
|
|
@@ -1572,7 +1570,18 @@ declare namespace Paths {
|
|
|
1572
1570
|
export type $200 = bkper.Account;
|
|
1573
1571
|
}
|
|
1574
1572
|
}
|
|
1575
|
-
namespace
|
|
1573
|
+
namespace UpdateAccountsBatch {
|
|
1574
|
+
export interface BodyParameters {
|
|
1575
|
+
AccountList: Parameters.AccountList;
|
|
1576
|
+
}
|
|
1577
|
+
namespace Parameters {
|
|
1578
|
+
export type AccountList = bkper.AccountList;
|
|
1579
|
+
}
|
|
1580
|
+
namespace Responses {
|
|
1581
|
+
export type $200 = bkper.AccountList;
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
namespace UpdateApp {
|
|
1576
1585
|
export interface BodyParameters {
|
|
1577
1586
|
App: Parameters.App;
|
|
1578
1587
|
}
|
|
@@ -1583,7 +1592,7 @@ declare namespace Paths {
|
|
|
1583
1592
|
export type $200 = bkper.App;
|
|
1584
1593
|
}
|
|
1585
1594
|
}
|
|
1586
|
-
namespace
|
|
1595
|
+
namespace UpdateBook {
|
|
1587
1596
|
export interface BodyParameters {
|
|
1588
1597
|
Book: Parameters.Book;
|
|
1589
1598
|
}
|
|
@@ -1594,7 +1603,7 @@ declare namespace Paths {
|
|
|
1594
1603
|
export type $200 = bkper.Book;
|
|
1595
1604
|
}
|
|
1596
1605
|
}
|
|
1597
|
-
namespace
|
|
1606
|
+
namespace UpdateBookDeprecated {
|
|
1598
1607
|
export interface BodyParameters {
|
|
1599
1608
|
Book: Parameters.Book;
|
|
1600
1609
|
}
|
|
@@ -1605,7 +1614,7 @@ declare namespace Paths {
|
|
|
1605
1614
|
export type $200 = bkper.Book;
|
|
1606
1615
|
}
|
|
1607
1616
|
}
|
|
1608
|
-
namespace
|
|
1617
|
+
namespace UpdateCollection {
|
|
1609
1618
|
export interface BodyParameters {
|
|
1610
1619
|
Collection: Parameters.Collection;
|
|
1611
1620
|
}
|
|
@@ -1616,7 +1625,7 @@ declare namespace Paths {
|
|
|
1616
1625
|
export type $200 = bkper.Collection;
|
|
1617
1626
|
}
|
|
1618
1627
|
}
|
|
1619
|
-
namespace
|
|
1628
|
+
namespace UpdateConnection {
|
|
1620
1629
|
export interface BodyParameters {
|
|
1621
1630
|
Connection: Parameters.Connection;
|
|
1622
1631
|
}
|
|
@@ -1627,7 +1636,7 @@ declare namespace Paths {
|
|
|
1627
1636
|
export type $200 = bkper.Connection;
|
|
1628
1637
|
}
|
|
1629
1638
|
}
|
|
1630
|
-
namespace
|
|
1639
|
+
namespace UpdateFile {
|
|
1631
1640
|
export interface BodyParameters {
|
|
1632
1641
|
File: Parameters.File;
|
|
1633
1642
|
}
|
|
@@ -1638,7 +1647,7 @@ declare namespace Paths {
|
|
|
1638
1647
|
export type $200 = bkper.File;
|
|
1639
1648
|
}
|
|
1640
1649
|
}
|
|
1641
|
-
namespace
|
|
1650
|
+
namespace UpdateGroup {
|
|
1642
1651
|
export interface BodyParameters {
|
|
1643
1652
|
Group: Parameters.Group;
|
|
1644
1653
|
}
|
|
@@ -1649,7 +1658,7 @@ declare namespace Paths {
|
|
|
1649
1658
|
export type $200 = bkper.Group;
|
|
1650
1659
|
}
|
|
1651
1660
|
}
|
|
1652
|
-
namespace
|
|
1661
|
+
namespace UpdateIntegration {
|
|
1653
1662
|
export interface BodyParameters {
|
|
1654
1663
|
Integration: Parameters.Integration;
|
|
1655
1664
|
}
|
|
@@ -1660,7 +1669,7 @@ declare namespace Paths {
|
|
|
1660
1669
|
export type $200 = bkper.Integration;
|
|
1661
1670
|
}
|
|
1662
1671
|
}
|
|
1663
|
-
namespace
|
|
1672
|
+
namespace UpdateQuery {
|
|
1664
1673
|
export interface BodyParameters {
|
|
1665
1674
|
Query: Parameters.Query;
|
|
1666
1675
|
}
|
|
@@ -1671,7 +1680,7 @@ declare namespace Paths {
|
|
|
1671
1680
|
export type $200 = bkper.Query;
|
|
1672
1681
|
}
|
|
1673
1682
|
}
|
|
1674
|
-
namespace
|
|
1683
|
+
namespace UpdateTransaction {
|
|
1675
1684
|
export interface BodyParameters {
|
|
1676
1685
|
Transaction: Parameters.Transaction;
|
|
1677
1686
|
}
|
|
@@ -1682,7 +1691,7 @@ declare namespace Paths {
|
|
|
1682
1691
|
export type $200 = bkper.TransactionOperation;
|
|
1683
1692
|
}
|
|
1684
1693
|
}
|
|
1685
|
-
namespace
|
|
1694
|
+
namespace UpdateTransactionsBatch {
|
|
1686
1695
|
export interface BodyParameters {
|
|
1687
1696
|
TransactionList: Parameters.TransactionList;
|
|
1688
1697
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bkper/bkper-api-types",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.38.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://bkper.com/openapi.json",
|
|
20
|
+
"build": "dtsgen -o index.d.ts --url https://bkper.com/docs/api/rest/openapi.json",
|
|
21
21
|
"patch": "yarn version --patch",
|
|
22
22
|
"minor": "yarn version --minor",
|
|
23
23
|
"major": "yarn version --major",
|