@seamapi/http 1.9.0 → 1.11.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/dist/connect.cjs +3 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +366 -51
- package/lib/seam/connect/resolve-action-attempt.d.ts +484 -64
- package/lib/seam/connect/routes/acs-encoders.d.ts +4 -4
- package/lib/seam/connect/routes/acs-encoders.js +2 -2
- package/lib/seam/connect/routes/thermostats.d.ts +1 -1
- package/lib/seam/connect/routes/thermostats.js +1 -1
- package/lib/seam/connect/routes/thermostats.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/acs-encoders.ts +9 -9
- package/src/lib/seam/connect/routes/thermostats.ts +2 -2
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -2549,9 +2549,9 @@ var SeamHttpAcsEncoders = class _SeamHttpAcsEncoders {
|
|
|
2549
2549
|
responseKey: "devices"
|
|
2550
2550
|
});
|
|
2551
2551
|
}
|
|
2552
|
-
|
|
2552
|
+
scanCard(body, options = {}) {
|
|
2553
2553
|
return new SeamHttpRequest(this, {
|
|
2554
|
-
path: "/acs/encoders/
|
|
2554
|
+
path: "/acs/encoders/scan_card",
|
|
2555
2555
|
method: "post",
|
|
2556
2556
|
body,
|
|
2557
2557
|
responseKey: "action_attempt",
|
|
@@ -4266,7 +4266,7 @@ var SeamHttpThermostats = class _SeamHttpThermostats {
|
|
|
4266
4266
|
path: "/thermostats/list",
|
|
4267
4267
|
method: "post",
|
|
4268
4268
|
body,
|
|
4269
|
-
responseKey: "
|
|
4269
|
+
responseKey: "devices"
|
|
4270
4270
|
});
|
|
4271
4271
|
}
|
|
4272
4272
|
off(body, options = {}) {
|