particle-api-js 10.6.0 → 11.0.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/CHANGELOG.md +4 -0
- package/dist/particle.min.js +1 -1
- package/dist/particle.min.js.map +1 -1
- package/docs/api.md +255 -291
- package/package.json +1 -1
- package/src/Agent.js +10 -33
- package/src/EventStream.js +4 -1
- package/src/Particle.js +123 -169
- package/test/Agent.spec.js +0 -22
- package/test/EventStream.spec.js +4 -1
- package/test/Particle.spec.js +1 -57
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# changelog
|
|
2
2
|
|
|
3
|
+
## 11.0.0 - 1 October 2024
|
|
4
|
+
* Remove `listAccessTokens` and `deleteAccessToken` methods that relied on HTTP basic auth
|
|
5
|
+
* Update EventStream to send access_token in the Authorization header instead. No functional change
|
|
6
|
+
|
|
3
7
|
## 10.6.0 - 21 August 2024
|
|
4
8
|
* Add DeviceOS versions endpoints
|
|
5
9
|
|