@bkper/bkper-api-types 5.34.0 → 5.36.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 +17 -0
- package/package.json +2 -2
- package/.claude/settings.local.json +0 -9
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://
|
|
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.
|
|
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://
|
|
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.
|
|
8
8
|
|
|
9
9
|
More information at the [Bkper Developer Documentation](http://bkper.com/docs/#rest-api)
|
|
10
10
|
|
package/index.d.ts
CHANGED
|
@@ -213,6 +213,10 @@ declare namespace bkper {
|
|
|
213
213
|
* The readme.md file as string
|
|
214
214
|
*/
|
|
215
215
|
readme?: string;
|
|
216
|
+
/**
|
|
217
|
+
* The readme.md file as raw markdown string
|
|
218
|
+
*/
|
|
219
|
+
readmeMd?: string;
|
|
216
220
|
/**
|
|
217
221
|
* Tell if the code repository is private
|
|
218
222
|
*/
|
|
@@ -296,10 +300,18 @@ declare namespace bkper {
|
|
|
296
300
|
* How many days the user has left in the trial period
|
|
297
301
|
*/
|
|
298
302
|
daysLeftInTrial?: number; // int32
|
|
303
|
+
/**
|
|
304
|
+
* The user's email address
|
|
305
|
+
*/
|
|
306
|
+
email?: string;
|
|
299
307
|
/**
|
|
300
308
|
* True if billing is enabled for the user
|
|
301
309
|
*/
|
|
302
310
|
enabled?: boolean;
|
|
311
|
+
/**
|
|
312
|
+
* The user hosted domain
|
|
313
|
+
*/
|
|
314
|
+
hostedDomain?: string;
|
|
303
315
|
/**
|
|
304
316
|
* The user's current plan
|
|
305
317
|
*/
|
|
@@ -1264,6 +1276,11 @@ declare namespace Paths {
|
|
|
1264
1276
|
export type $200 = bkper.Billing;
|
|
1265
1277
|
}
|
|
1266
1278
|
}
|
|
1279
|
+
namespace BkperV5GetBillingCheckout {
|
|
1280
|
+
namespace Responses {
|
|
1281
|
+
export type $200 = bkper.Url;
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1267
1284
|
namespace BkperV5GetBillingPortal {
|
|
1268
1285
|
namespace Responses {
|
|
1269
1286
|
export type $200 = bkper.Url;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bkper/bkper-api-types",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.36.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://bkper.com/openapi.json",
|
|
21
21
|
"patch": "yarn version --patch",
|
|
22
22
|
"minor": "yarn version --minor",
|
|
23
23
|
"major": "yarn version --major",
|