particle-api-js 10.4.1 → 10.4.3
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 +7 -0
- package/dist/particle.min.js +1 -1
- package/dist/particle.min.js.map +1 -1
- package/docs/api.md +652 -564
- package/package.json +1 -1
- package/src/Agent.js +6 -5
- package/src/Particle.js +34 -23
- package/test/Agent.spec.js +2 -2
- package/test/FakeAgent.js +3 -3
- package/test/Particle.spec.js +46 -72
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# changelog
|
|
2
2
|
|
|
3
|
+
## 10.4.3 - 25 March 2024
|
|
4
|
+
* Add `utm` paramater to `createUser`
|
|
5
|
+
|
|
6
|
+
## 10.4.2 - 3 January 2024
|
|
7
|
+
* Add `setMode` arg to `setLedgerInstance`
|
|
8
|
+
* Fix a few incorrect logic function JSDocs
|
|
9
|
+
|
|
3
10
|
## 10.4.1 - 2 January 2024
|
|
4
11
|
|
|
5
12
|
* Fix `setLedgerInstance` taking wrong argument and passing a bad request body to the API
|