We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba43ee4 commit ad000d5Copy full SHA for ad000d5
.changeset/forty-monkeys-sneeze.md
@@ -0,0 +1,5 @@
1
+---
2
+"@smartthings/core-sdk": patch
3
4
+
5
+add missing export on AttributeState
src/endpoint/devices.ts
@@ -774,11 +774,11 @@ export interface DeviceList {
774
_links: Links
775
}
776
777
-interface AttributeState {
+export interface AttributeState {
778
value?: unknown
779
unit?: string
780
data?: { [name: string]: object }
781
- timestamp?: string // date-time ("Will always be 0 time-zone offset" whatever that means)
+ timestamp?: string
782
783
784
export interface CapabilityStatus {
0 commit comments