@seamapi/types 1.744.0 → 1.746.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 +306 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +645 -0
- package/dist/index.cjs +306 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/models/events/devices.d.ts +24 -0
- package/lib/seam/connect/models/events/devices.js +20 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +12 -0
- package/lib/seam/connect/openapi.d.ts +539 -0
- package/lib/seam/connect/openapi.js +290 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +74 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +24 -0
- package/src/lib/seam/connect/openapi.ts +294 -0
- package/src/lib/seam/connect/route-types.ts +74 -0
|
@@ -42531,6 +42531,10 @@ export type Routes = {
|
|
|
42531
42531
|
motion_sub_type?:
|
|
42532
42532
|
| ('human' | 'vehicle' | 'package' | 'other')
|
|
42533
42533
|
| undefined
|
|
42534
|
+
/** URL to a thumbnail image captured at the time of activation. */
|
|
42535
|
+
image_url?: string | undefined
|
|
42536
|
+
/** URL to a short video clip captured at the time of activation. */
|
|
42537
|
+
video_url?: string | undefined
|
|
42534
42538
|
}
|
|
42535
42539
|
| {
|
|
42536
42540
|
/** ID of the event. */
|
|
@@ -42560,6 +42564,10 @@ export type Routes = {
|
|
|
42560
42564
|
}
|
|
42561
42565
|
| undefined
|
|
42562
42566
|
event_type: 'device.doorbell_rang'
|
|
42567
|
+
/** URL to a thumbnail image captured at the time the doorbell was pressed. */
|
|
42568
|
+
image_url?: string | undefined
|
|
42569
|
+
/** URL to a short video clip captured at the time the doorbell was pressed. */
|
|
42570
|
+
video_url?: string | undefined
|
|
42563
42571
|
}
|
|
42564
42572
|
| {
|
|
42565
42573
|
/** ID of the event. */
|
|
@@ -45912,6 +45920,10 @@ export type Routes = {
|
|
|
45912
45920
|
motion_sub_type?:
|
|
45913
45921
|
| ('human' | 'vehicle' | 'package' | 'other')
|
|
45914
45922
|
| undefined
|
|
45923
|
+
/** URL to a thumbnail image captured at the time of activation. */
|
|
45924
|
+
image_url?: string | undefined
|
|
45925
|
+
/** URL to a short video clip captured at the time of activation. */
|
|
45926
|
+
video_url?: string | undefined
|
|
45915
45927
|
}
|
|
45916
45928
|
| {
|
|
45917
45929
|
/** ID of the event. */
|
|
@@ -45941,6 +45953,10 @@ export type Routes = {
|
|
|
45941
45953
|
}
|
|
45942
45954
|
| undefined
|
|
45943
45955
|
event_type: 'device.doorbell_rang'
|
|
45956
|
+
/** URL to a thumbnail image captured at the time the doorbell was pressed. */
|
|
45957
|
+
image_url?: string | undefined
|
|
45958
|
+
/** URL to a short video clip captured at the time the doorbell was pressed. */
|
|
45959
|
+
video_url?: string | undefined
|
|
45944
45960
|
}
|
|
45945
45961
|
| {
|
|
45946
45962
|
/** ID of the event. */
|
|
@@ -73152,6 +73168,10 @@ export type Routes = {
|
|
|
73152
73168
|
motion_sub_type?:
|
|
73153
73169
|
| ('human' | 'vehicle' | 'package' | 'other')
|
|
73154
73170
|
| undefined
|
|
73171
|
+
/** URL to a thumbnail image captured at the time of activation. */
|
|
73172
|
+
image_url?: string | undefined
|
|
73173
|
+
/** URL to a short video clip captured at the time of activation. */
|
|
73174
|
+
video_url?: string | undefined
|
|
73155
73175
|
}
|
|
73156
73176
|
| {
|
|
73157
73177
|
/** ID of the event. */
|
|
@@ -73181,6 +73201,10 @@ export type Routes = {
|
|
|
73181
73201
|
}
|
|
73182
73202
|
| undefined
|
|
73183
73203
|
event_type: 'device.doorbell_rang'
|
|
73204
|
+
/** URL to a thumbnail image captured at the time the doorbell was pressed. */
|
|
73205
|
+
image_url?: string | undefined
|
|
73206
|
+
/** URL to a short video clip captured at the time the doorbell was pressed. */
|
|
73207
|
+
video_url?: string | undefined
|
|
73184
73208
|
}
|
|
73185
73209
|
| {
|
|
73186
73210
|
/** ID of the event. */
|
|
@@ -73485,6 +73509,20 @@ export type Routes = {
|
|
|
73485
73509
|
code?: (string | null) | undefined
|
|
73486
73510
|
instant_key_url?: string | undefined
|
|
73487
73511
|
}[]
|
|
73512
|
+
last_automation_result: {
|
|
73513
|
+
success: boolean
|
|
73514
|
+
rule: string
|
|
73515
|
+
actions: {
|
|
73516
|
+
action_type: 'create' | 'update' | 'delete' | 'skip'
|
|
73517
|
+
resource_type: string
|
|
73518
|
+
access_grant_id?: string | undefined
|
|
73519
|
+
skip_reason?: string | undefined
|
|
73520
|
+
message?: string | undefined
|
|
73521
|
+
}[]
|
|
73522
|
+
error?: string | undefined
|
|
73523
|
+
message?: string | undefined
|
|
73524
|
+
created_at: string
|
|
73525
|
+
} | null
|
|
73488
73526
|
}
|
|
73489
73527
|
}
|
|
73490
73528
|
maxDuration: undefined
|
|
@@ -73551,6 +73589,20 @@ export type Routes = {
|
|
|
73551
73589
|
space_key: string
|
|
73552
73590
|
name: string | null
|
|
73553
73591
|
}[]
|
|
73592
|
+
last_automation_result: {
|
|
73593
|
+
success: boolean
|
|
73594
|
+
rule: string
|
|
73595
|
+
actions: {
|
|
73596
|
+
action_type: 'create' | 'update' | 'delete' | 'skip'
|
|
73597
|
+
resource_type: string
|
|
73598
|
+
access_grant_id?: string | undefined
|
|
73599
|
+
skip_reason?: string | undefined
|
|
73600
|
+
message?: string | undefined
|
|
73601
|
+
}[]
|
|
73602
|
+
error?: string | undefined
|
|
73603
|
+
message?: string | undefined
|
|
73604
|
+
created_at: string
|
|
73605
|
+
} | null
|
|
73554
73606
|
}[]
|
|
73555
73607
|
/** Information about the current page of results. */
|
|
73556
73608
|
pagination: {
|
|
@@ -73801,6 +73853,20 @@ export type Routes = {
|
|
|
73801
73853
|
mode: string
|
|
73802
73854
|
is_issued: boolean
|
|
73803
73855
|
}[]
|
|
73856
|
+
last_automation_result: {
|
|
73857
|
+
success: boolean
|
|
73858
|
+
rule: string
|
|
73859
|
+
actions: {
|
|
73860
|
+
action_type: 'create' | 'update' | 'delete' | 'skip'
|
|
73861
|
+
resource_type: string
|
|
73862
|
+
access_grant_id?: string | undefined
|
|
73863
|
+
skip_reason?: string | undefined
|
|
73864
|
+
message?: string | undefined
|
|
73865
|
+
}[]
|
|
73866
|
+
error?: string | undefined
|
|
73867
|
+
message?: string | undefined
|
|
73868
|
+
created_at: string
|
|
73869
|
+
} | null
|
|
73804
73870
|
}[]
|
|
73805
73871
|
}
|
|
73806
73872
|
maxDuration: undefined
|
|
@@ -109546,6 +109612,10 @@ export type Routes = {
|
|
|
109546
109612
|
motion_sub_type?:
|
|
109547
109613
|
| ('human' | 'vehicle' | 'package' | 'other')
|
|
109548
109614
|
| undefined
|
|
109615
|
+
/** URL to a thumbnail image captured at the time of activation. */
|
|
109616
|
+
image_url?: string | undefined
|
|
109617
|
+
/** URL to a short video clip captured at the time of activation. */
|
|
109618
|
+
video_url?: string | undefined
|
|
109549
109619
|
}
|
|
109550
109620
|
| {
|
|
109551
109621
|
/** ID of the event. */
|
|
@@ -109575,6 +109645,10 @@ export type Routes = {
|
|
|
109575
109645
|
}
|
|
109576
109646
|
| undefined
|
|
109577
109647
|
event_type: 'device.doorbell_rang'
|
|
109648
|
+
/** URL to a thumbnail image captured at the time the doorbell was pressed. */
|
|
109649
|
+
image_url?: string | undefined
|
|
109650
|
+
/** URL to a short video clip captured at the time the doorbell was pressed. */
|
|
109651
|
+
video_url?: string | undefined
|
|
109578
109652
|
}
|
|
109579
109653
|
| {
|
|
109580
109654
|
/** ID of the event. */
|