Skip to content

Commit

Permalink
fix: add missing export on AttributeState
Browse files Browse the repository at this point in the history
  • Loading branch information
rossiam committed Sep 30, 2024
1 parent ba43ee4 commit ad000d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/forty-monkeys-sneeze.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@smartthings/core-sdk": patch
---

add missing export on AttributeState
4 changes: 2 additions & 2 deletions src/endpoint/devices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -774,11 +774,11 @@ export interface DeviceList {
_links: Links
}

interface AttributeState {
export interface AttributeState {
value?: unknown
unit?: string
data?: { [name: string]: object }
timestamp?: string // date-time ("Will always be 0 time-zone offset" whatever that means)
timestamp?: string
}

export interface CapabilityStatus {
Expand Down

0 comments on commit ad000d5

Please sign in to comment.