Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Apr 6, 2024
1 parent c1ad300 commit 123d9c4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10510,6 +10510,12 @@ export interface Routes {
| {
/** Indicates if the accessory_keypad is connected to the device. */
is_connected: boolean
/** Indicates if the keypad battery properties. */
battery?:
| {
level: number
}
| undefined
}
| undefined
appearance: {
Expand Down Expand Up @@ -10630,6 +10636,8 @@ export interface Routes {
device_id: string
device_name: string
keypad_battery_critical?: boolean | undefined
keypad_paired?: boolean | undefined
keypad_2_paired?: boolean | undefined
}
| undefined
kwikset_metadata?:
Expand Down Expand Up @@ -10743,6 +10751,7 @@ export interface Routes {
device_name: string
bridge_id?: string | undefined
bridge_name?: string | undefined
keypad_id?: string | undefined
}
| undefined
nest_metadata?:
Expand Down Expand Up @@ -10803,6 +10812,8 @@ export interface Routes {
product_type: string
product_model: string
device_info_model: string
keypad_uuid?: string | undefined
locker_status_hardlock?: number | undefined
}
| undefined
tedee_metadata?:
Expand Down Expand Up @@ -11152,7 +11163,7 @@ export interface Routes {
created_at: string
/** Indicates whether Seam manages the device. */
is_managed: true
custom_metadata?: Record<string, string | boolean | null> | undefined
custom_metadata: Record<string, string | boolean>
can_remotely_unlock?: boolean | undefined
can_remotely_lock?: boolean | undefined
can_program_online_access_codes?: boolean | undefined
Expand Down

0 comments on commit 123d9c4

Please sign in to comment.