balena-sdk 16.9.1 → 16.9.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/CHANGELOG.md +4 -0
- package/DOCUMENTATION.md +1 -1
- package/README.md +0 -1
- package/es2015/balena-browser.js +145 -118
- package/es2015/balena-browser.min.js +1 -1
- package/es2015/index.d.ts +6 -5
- package/es2015/index.js +3 -3
- package/es2015/pine.d.ts +22 -0
- package/es2015/pine.js +68 -0
- package/es2015/util/sdk-version.js +1 -1
- package/es2018/balena-browser.js +150 -118
- package/es2018/balena-browser.min.js +1 -1
- package/es2018/index.d.ts +6 -5
- package/es2018/index.js +3 -3
- package/es2018/pine.d.ts +22 -0
- package/es2018/pine.js +73 -0
- package/es2018/util/sdk-version.js +1 -1
- package/package.json +6 -4
- package/typings/pinejs-client-core.d.ts +1 -0
- package/typings/balena-pine.d.ts +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## 16.9.2 - 2021-12-28
|
|
8
|
+
|
|
9
|
+
* Stop relying on the balena-pine module [Thodoris Greasidis]
|
|
10
|
+
|
|
7
11
|
## 16.9.1 - 2021-12-28
|
|
8
12
|
|
|
9
13
|
* Enable nested changelogs for balena-hup-action-utils [Thodoris Greasidis]
|
package/DOCUMENTATION.md
CHANGED
|
@@ -434,7 +434,7 @@ balena.request.send({ url: 'http://api.balena-cloud.com/ping' });
|
|
|
434
434
|
<a name="balena.pine"></a>
|
|
435
435
|
|
|
436
436
|
### balena.pine : <code>Object</code>
|
|
437
|
-
The
|
|
437
|
+
The pinejs-client instance used internally. This should not be necessary
|
|
438
438
|
in normal usage, but can be useful if you want to directly make pine
|
|
439
439
|
queries to the api for some resource that isn't directly supported
|
|
440
440
|
in the SDK.
|