bkper-js 2.29.1 → 2.29.2
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/lib/model/App.js +2 -2
- package/package.json +2 -2
package/lib/model/App.js
CHANGED
|
@@ -261,7 +261,7 @@ export class App extends Resource {
|
|
|
261
261
|
* @returns The readme text
|
|
262
262
|
*/
|
|
263
263
|
getReadme() {
|
|
264
|
-
return this.payload.readme;
|
|
264
|
+
return this.payload.readmeMd || this.payload.readme;
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* Sets the readme.md file as text.
|
|
@@ -271,7 +271,7 @@ export class App extends Resource {
|
|
|
271
271
|
* @returns This App, for chaining
|
|
272
272
|
*/
|
|
273
273
|
setReadme(readme) {
|
|
274
|
-
this.payload.
|
|
274
|
+
this.payload.readmeMd = readme;
|
|
275
275
|
return this;
|
|
276
276
|
}
|
|
277
277
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bkper-js",
|
|
3
|
-
"version": "2.29.
|
|
3
|
+
"version": "2.29.2",
|
|
4
4
|
"description": "Javascript client for Bkper REST API",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@bkper/bkper-api-types": "^5.
|
|
38
|
+
"@bkper/bkper-api-types": "^5.36.0",
|
|
39
39
|
"big.js": "^6.0.3",
|
|
40
40
|
"dayjs": "^1.10.3",
|
|
41
41
|
"luxon": "^1.25.0",
|