@seamapi/types 1.946.0 → 1.948.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 +441 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1201 -24
- package/dist/index.cjs +441 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +16 -16
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -5
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -5
- package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
- package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
- package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
- package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
- package/lib/seam/connect/models/events/common.d.ts +3 -0
- package/lib/seam/connect/models/events/common.js +4 -0
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
- package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
- package/lib/seam/connect/models/events/devices.d.ts +210 -0
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
- package/lib/seam/connect/models/events/spaces.d.ts +18 -0
- package/lib/seam/connect/openapi.js +432 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +867 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -13
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +539 -4
- package/src/lib/seam/connect/route-types.ts +867 -11
|
@@ -6,6 +6,7 @@ export declare const device_connected_event: z.ZodObject<{
|
|
|
6
6
|
workspace_id: z.ZodString;
|
|
7
7
|
created_at: z.ZodString;
|
|
8
8
|
occurred_at: z.ZodString;
|
|
9
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
9
10
|
} & {
|
|
10
11
|
device_id: z.ZodString;
|
|
11
12
|
connected_account_id: z.ZodString;
|
|
@@ -23,6 +24,7 @@ export declare const device_connected_event: z.ZodObject<{
|
|
|
23
24
|
occurred_at: string;
|
|
24
25
|
event_type: "device.connected";
|
|
25
26
|
customer_key?: string | undefined;
|
|
27
|
+
event_description?: string | undefined;
|
|
26
28
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
27
29
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
28
30
|
}, {
|
|
@@ -34,6 +36,7 @@ export declare const device_connected_event: z.ZodObject<{
|
|
|
34
36
|
occurred_at: string;
|
|
35
37
|
event_type: "device.connected";
|
|
36
38
|
customer_key?: string | undefined;
|
|
39
|
+
event_description?: string | undefined;
|
|
37
40
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
38
41
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
39
42
|
}>;
|
|
@@ -43,6 +46,7 @@ export declare const device_added_event: z.ZodObject<{
|
|
|
43
46
|
workspace_id: z.ZodString;
|
|
44
47
|
created_at: z.ZodString;
|
|
45
48
|
occurred_at: z.ZodString;
|
|
49
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
46
50
|
} & {
|
|
47
51
|
device_id: z.ZodString;
|
|
48
52
|
connected_account_id: z.ZodString;
|
|
@@ -60,6 +64,7 @@ export declare const device_added_event: z.ZodObject<{
|
|
|
60
64
|
occurred_at: string;
|
|
61
65
|
event_type: "device.added";
|
|
62
66
|
customer_key?: string | undefined;
|
|
67
|
+
event_description?: string | undefined;
|
|
63
68
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
64
69
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
65
70
|
}, {
|
|
@@ -71,6 +76,7 @@ export declare const device_added_event: z.ZodObject<{
|
|
|
71
76
|
occurred_at: string;
|
|
72
77
|
event_type: "device.added";
|
|
73
78
|
customer_key?: string | undefined;
|
|
79
|
+
event_description?: string | undefined;
|
|
74
80
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
75
81
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
76
82
|
}>;
|
|
@@ -80,6 +86,7 @@ export declare const device_converted_to_unmanaged_event: z.ZodObject<{
|
|
|
80
86
|
workspace_id: z.ZodString;
|
|
81
87
|
created_at: z.ZodString;
|
|
82
88
|
occurred_at: z.ZodString;
|
|
89
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
83
90
|
} & {
|
|
84
91
|
device_id: z.ZodString;
|
|
85
92
|
connected_account_id: z.ZodString;
|
|
@@ -97,6 +104,7 @@ export declare const device_converted_to_unmanaged_event: z.ZodObject<{
|
|
|
97
104
|
occurred_at: string;
|
|
98
105
|
event_type: "device.converted_to_unmanaged";
|
|
99
106
|
customer_key?: string | undefined;
|
|
107
|
+
event_description?: string | undefined;
|
|
100
108
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
101
109
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
102
110
|
}, {
|
|
@@ -108,6 +116,7 @@ export declare const device_converted_to_unmanaged_event: z.ZodObject<{
|
|
|
108
116
|
occurred_at: string;
|
|
109
117
|
event_type: "device.converted_to_unmanaged";
|
|
110
118
|
customer_key?: string | undefined;
|
|
119
|
+
event_description?: string | undefined;
|
|
111
120
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
112
121
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
113
122
|
}>;
|
|
@@ -117,6 +126,7 @@ export declare const unmanaged_device_converted_to_managed_event: z.ZodObject<{
|
|
|
117
126
|
workspace_id: z.ZodString;
|
|
118
127
|
created_at: z.ZodString;
|
|
119
128
|
occurred_at: z.ZodString;
|
|
129
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
120
130
|
} & {
|
|
121
131
|
device_id: z.ZodString;
|
|
122
132
|
connected_account_id: z.ZodString;
|
|
@@ -134,6 +144,7 @@ export declare const unmanaged_device_converted_to_managed_event: z.ZodObject<{
|
|
|
134
144
|
occurred_at: string;
|
|
135
145
|
event_type: "device.unmanaged.converted_to_managed";
|
|
136
146
|
customer_key?: string | undefined;
|
|
147
|
+
event_description?: string | undefined;
|
|
137
148
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
138
149
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
139
150
|
}, {
|
|
@@ -145,6 +156,7 @@ export declare const unmanaged_device_converted_to_managed_event: z.ZodObject<{
|
|
|
145
156
|
occurred_at: string;
|
|
146
157
|
event_type: "device.unmanaged.converted_to_managed";
|
|
147
158
|
customer_key?: string | undefined;
|
|
159
|
+
event_description?: string | undefined;
|
|
148
160
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
149
161
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
150
162
|
}>;
|
|
@@ -154,6 +166,7 @@ export declare const unmanaged_device_connected_event: z.ZodObject<{
|
|
|
154
166
|
workspace_id: z.ZodString;
|
|
155
167
|
created_at: z.ZodString;
|
|
156
168
|
occurred_at: z.ZodString;
|
|
169
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
157
170
|
} & {
|
|
158
171
|
device_id: z.ZodString;
|
|
159
172
|
connected_account_id: z.ZodString;
|
|
@@ -171,6 +184,7 @@ export declare const unmanaged_device_connected_event: z.ZodObject<{
|
|
|
171
184
|
occurred_at: string;
|
|
172
185
|
event_type: "device.unmanaged.connected";
|
|
173
186
|
customer_key?: string | undefined;
|
|
187
|
+
event_description?: string | undefined;
|
|
174
188
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
175
189
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
176
190
|
}, {
|
|
@@ -182,6 +196,7 @@ export declare const unmanaged_device_connected_event: z.ZodObject<{
|
|
|
182
196
|
occurred_at: string;
|
|
183
197
|
event_type: "device.unmanaged.connected";
|
|
184
198
|
customer_key?: string | undefined;
|
|
199
|
+
event_description?: string | undefined;
|
|
185
200
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
186
201
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
187
202
|
}>;
|
|
@@ -191,6 +206,7 @@ export declare const device_disconnected_event: z.ZodObject<{
|
|
|
191
206
|
workspace_id: z.ZodString;
|
|
192
207
|
created_at: z.ZodString;
|
|
193
208
|
occurred_at: z.ZodString;
|
|
209
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
194
210
|
} & {
|
|
195
211
|
device_id: z.ZodString;
|
|
196
212
|
connected_account_id: z.ZodString;
|
|
@@ -283,6 +299,7 @@ export declare const device_disconnected_event: z.ZodObject<{
|
|
|
283
299
|
warning_code: string;
|
|
284
300
|
}[];
|
|
285
301
|
customer_key?: string | undefined;
|
|
302
|
+
event_description?: string | undefined;
|
|
286
303
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
287
304
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
288
305
|
}, {
|
|
@@ -315,6 +332,7 @@ export declare const device_disconnected_event: z.ZodObject<{
|
|
|
315
332
|
warning_code: string;
|
|
316
333
|
}[];
|
|
317
334
|
customer_key?: string | undefined;
|
|
335
|
+
event_description?: string | undefined;
|
|
318
336
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
319
337
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
320
338
|
}>;
|
|
@@ -324,6 +342,7 @@ export declare const unmanaged_device_disconnected_event: z.ZodObject<{
|
|
|
324
342
|
workspace_id: z.ZodString;
|
|
325
343
|
created_at: z.ZodString;
|
|
326
344
|
occurred_at: z.ZodString;
|
|
345
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
327
346
|
} & {
|
|
328
347
|
device_id: z.ZodString;
|
|
329
348
|
connected_account_id: z.ZodString;
|
|
@@ -416,6 +435,7 @@ export declare const unmanaged_device_disconnected_event: z.ZodObject<{
|
|
|
416
435
|
warning_code: string;
|
|
417
436
|
}[];
|
|
418
437
|
customer_key?: string | undefined;
|
|
438
|
+
event_description?: string | undefined;
|
|
419
439
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
420
440
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
421
441
|
}, {
|
|
@@ -448,6 +468,7 @@ export declare const unmanaged_device_disconnected_event: z.ZodObject<{
|
|
|
448
468
|
warning_code: string;
|
|
449
469
|
}[];
|
|
450
470
|
customer_key?: string | undefined;
|
|
471
|
+
event_description?: string | undefined;
|
|
451
472
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
452
473
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
453
474
|
}>;
|
|
@@ -457,6 +478,7 @@ export declare const device_tampered_event: z.ZodObject<{
|
|
|
457
478
|
workspace_id: z.ZodString;
|
|
458
479
|
created_at: z.ZodString;
|
|
459
480
|
occurred_at: z.ZodString;
|
|
481
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
460
482
|
} & {
|
|
461
483
|
device_id: z.ZodString;
|
|
462
484
|
connected_account_id: z.ZodString;
|
|
@@ -474,6 +496,7 @@ export declare const device_tampered_event: z.ZodObject<{
|
|
|
474
496
|
occurred_at: string;
|
|
475
497
|
event_type: "device.tampered";
|
|
476
498
|
customer_key?: string | undefined;
|
|
499
|
+
event_description?: string | undefined;
|
|
477
500
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
478
501
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
479
502
|
}, {
|
|
@@ -485,6 +508,7 @@ export declare const device_tampered_event: z.ZodObject<{
|
|
|
485
508
|
occurred_at: string;
|
|
486
509
|
event_type: "device.tampered";
|
|
487
510
|
customer_key?: string | undefined;
|
|
511
|
+
event_description?: string | undefined;
|
|
488
512
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
489
513
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
490
514
|
}>;
|
|
@@ -494,6 +518,7 @@ export declare const device_low_battery_event: z.ZodObject<{
|
|
|
494
518
|
workspace_id: z.ZodString;
|
|
495
519
|
created_at: z.ZodString;
|
|
496
520
|
occurred_at: z.ZodString;
|
|
521
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
497
522
|
} & {
|
|
498
523
|
device_id: z.ZodString;
|
|
499
524
|
connected_account_id: z.ZodString;
|
|
@@ -513,6 +538,7 @@ export declare const device_low_battery_event: z.ZodObject<{
|
|
|
513
538
|
occurred_at: string;
|
|
514
539
|
event_type: "device.low_battery";
|
|
515
540
|
customer_key?: string | undefined;
|
|
541
|
+
event_description?: string | undefined;
|
|
516
542
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
517
543
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
518
544
|
}, {
|
|
@@ -525,6 +551,7 @@ export declare const device_low_battery_event: z.ZodObject<{
|
|
|
525
551
|
occurred_at: string;
|
|
526
552
|
event_type: "device.low_battery";
|
|
527
553
|
customer_key?: string | undefined;
|
|
554
|
+
event_description?: string | undefined;
|
|
528
555
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
529
556
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
530
557
|
}>;
|
|
@@ -534,6 +561,7 @@ export declare const device_battery_status_changed_event: z.ZodObject<{
|
|
|
534
561
|
workspace_id: z.ZodString;
|
|
535
562
|
created_at: z.ZodString;
|
|
536
563
|
occurred_at: z.ZodString;
|
|
564
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
537
565
|
} & {
|
|
538
566
|
device_id: z.ZodString;
|
|
539
567
|
connected_account_id: z.ZodString;
|
|
@@ -555,6 +583,7 @@ export declare const device_battery_status_changed_event: z.ZodObject<{
|
|
|
555
583
|
event_type: "device.battery_status_changed";
|
|
556
584
|
battery_status: "critical" | "low" | "good" | "full";
|
|
557
585
|
customer_key?: string | undefined;
|
|
586
|
+
event_description?: string | undefined;
|
|
558
587
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
559
588
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
560
589
|
}, {
|
|
@@ -568,6 +597,7 @@ export declare const device_battery_status_changed_event: z.ZodObject<{
|
|
|
568
597
|
event_type: "device.battery_status_changed";
|
|
569
598
|
battery_status: "critical" | "low" | "good" | "full";
|
|
570
599
|
customer_key?: string | undefined;
|
|
600
|
+
event_description?: string | undefined;
|
|
571
601
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
572
602
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
573
603
|
}>;
|
|
@@ -577,6 +607,7 @@ export declare const device_removed_event: z.ZodObject<{
|
|
|
577
607
|
workspace_id: z.ZodString;
|
|
578
608
|
created_at: z.ZodString;
|
|
579
609
|
occurred_at: z.ZodString;
|
|
610
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
580
611
|
} & {
|
|
581
612
|
device_id: z.ZodString;
|
|
582
613
|
connected_account_id: z.ZodString;
|
|
@@ -594,6 +625,7 @@ export declare const device_removed_event: z.ZodObject<{
|
|
|
594
625
|
occurred_at: string;
|
|
595
626
|
event_type: "device.removed";
|
|
596
627
|
customer_key?: string | undefined;
|
|
628
|
+
event_description?: string | undefined;
|
|
597
629
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
598
630
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
599
631
|
}, {
|
|
@@ -605,6 +637,7 @@ export declare const device_removed_event: z.ZodObject<{
|
|
|
605
637
|
occurred_at: string;
|
|
606
638
|
event_type: "device.removed";
|
|
607
639
|
customer_key?: string | undefined;
|
|
640
|
+
event_description?: string | undefined;
|
|
608
641
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
609
642
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
610
643
|
}>;
|
|
@@ -614,6 +647,7 @@ export declare const device_deleted_event: z.ZodObject<{
|
|
|
614
647
|
workspace_id: z.ZodString;
|
|
615
648
|
created_at: z.ZodString;
|
|
616
649
|
occurred_at: z.ZodString;
|
|
650
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
617
651
|
} & {
|
|
618
652
|
device_id: z.ZodString;
|
|
619
653
|
connected_account_id: z.ZodString;
|
|
@@ -633,6 +667,7 @@ export declare const device_deleted_event: z.ZodObject<{
|
|
|
633
667
|
event_type: "device.deleted";
|
|
634
668
|
customer_key?: string | undefined;
|
|
635
669
|
device_name?: string | null | undefined;
|
|
670
|
+
event_description?: string | undefined;
|
|
636
671
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
637
672
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
638
673
|
}, {
|
|
@@ -645,6 +680,7 @@ export declare const device_deleted_event: z.ZodObject<{
|
|
|
645
680
|
event_type: "device.deleted";
|
|
646
681
|
customer_key?: string | undefined;
|
|
647
682
|
device_name?: string | null | undefined;
|
|
683
|
+
event_description?: string | undefined;
|
|
648
684
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
649
685
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
650
686
|
}>;
|
|
@@ -654,6 +690,7 @@ export declare const device_third_party_integration_detected_event: z.ZodObject<
|
|
|
654
690
|
workspace_id: z.ZodString;
|
|
655
691
|
created_at: z.ZodString;
|
|
656
692
|
occurred_at: z.ZodString;
|
|
693
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
657
694
|
} & {
|
|
658
695
|
device_id: z.ZodString;
|
|
659
696
|
connected_account_id: z.ZodString;
|
|
@@ -671,6 +708,7 @@ export declare const device_third_party_integration_detected_event: z.ZodObject<
|
|
|
671
708
|
occurred_at: string;
|
|
672
709
|
event_type: "device.third_party_integration_detected";
|
|
673
710
|
customer_key?: string | undefined;
|
|
711
|
+
event_description?: string | undefined;
|
|
674
712
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
675
713
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
676
714
|
}, {
|
|
@@ -682,6 +720,7 @@ export declare const device_third_party_integration_detected_event: z.ZodObject<
|
|
|
682
720
|
occurred_at: string;
|
|
683
721
|
event_type: "device.third_party_integration_detected";
|
|
684
722
|
customer_key?: string | undefined;
|
|
723
|
+
event_description?: string | undefined;
|
|
685
724
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
686
725
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
687
726
|
}>;
|
|
@@ -691,6 +730,7 @@ export declare const device_third_party_integration_no_longer_detected_event: z.
|
|
|
691
730
|
workspace_id: z.ZodString;
|
|
692
731
|
created_at: z.ZodString;
|
|
693
732
|
occurred_at: z.ZodString;
|
|
733
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
694
734
|
} & {
|
|
695
735
|
device_id: z.ZodString;
|
|
696
736
|
connected_account_id: z.ZodString;
|
|
@@ -708,6 +748,7 @@ export declare const device_third_party_integration_no_longer_detected_event: z.
|
|
|
708
748
|
occurred_at: string;
|
|
709
749
|
event_type: "device.third_party_integration_no_longer_detected";
|
|
710
750
|
customer_key?: string | undefined;
|
|
751
|
+
event_description?: string | undefined;
|
|
711
752
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
712
753
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
713
754
|
}, {
|
|
@@ -719,6 +760,7 @@ export declare const device_third_party_integration_no_longer_detected_event: z.
|
|
|
719
760
|
occurred_at: string;
|
|
720
761
|
event_type: "device.third_party_integration_no_longer_detected";
|
|
721
762
|
customer_key?: string | undefined;
|
|
763
|
+
event_description?: string | undefined;
|
|
722
764
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
723
765
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
724
766
|
}>;
|
|
@@ -728,6 +770,7 @@ export declare const device_salto_privacy_mode_activated_event: z.ZodObject<{
|
|
|
728
770
|
workspace_id: z.ZodString;
|
|
729
771
|
created_at: z.ZodString;
|
|
730
772
|
occurred_at: z.ZodString;
|
|
773
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
731
774
|
} & {
|
|
732
775
|
device_id: z.ZodString;
|
|
733
776
|
connected_account_id: z.ZodString;
|
|
@@ -745,6 +788,7 @@ export declare const device_salto_privacy_mode_activated_event: z.ZodObject<{
|
|
|
745
788
|
occurred_at: string;
|
|
746
789
|
event_type: "device.salto.privacy_mode_activated";
|
|
747
790
|
customer_key?: string | undefined;
|
|
791
|
+
event_description?: string | undefined;
|
|
748
792
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
749
793
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
750
794
|
}, {
|
|
@@ -756,6 +800,7 @@ export declare const device_salto_privacy_mode_activated_event: z.ZodObject<{
|
|
|
756
800
|
occurred_at: string;
|
|
757
801
|
event_type: "device.salto.privacy_mode_activated";
|
|
758
802
|
customer_key?: string | undefined;
|
|
803
|
+
event_description?: string | undefined;
|
|
759
804
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
760
805
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
761
806
|
}>;
|
|
@@ -765,6 +810,7 @@ export declare const device_salto_privacy_mode_deactivated_event: z.ZodObject<{
|
|
|
765
810
|
workspace_id: z.ZodString;
|
|
766
811
|
created_at: z.ZodString;
|
|
767
812
|
occurred_at: z.ZodString;
|
|
813
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
768
814
|
} & {
|
|
769
815
|
device_id: z.ZodString;
|
|
770
816
|
connected_account_id: z.ZodString;
|
|
@@ -782,6 +828,7 @@ export declare const device_salto_privacy_mode_deactivated_event: z.ZodObject<{
|
|
|
782
828
|
occurred_at: string;
|
|
783
829
|
event_type: "device.salto.privacy_mode_deactivated";
|
|
784
830
|
customer_key?: string | undefined;
|
|
831
|
+
event_description?: string | undefined;
|
|
785
832
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
786
833
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
787
834
|
}, {
|
|
@@ -793,6 +840,7 @@ export declare const device_salto_privacy_mode_deactivated_event: z.ZodObject<{
|
|
|
793
840
|
occurred_at: string;
|
|
794
841
|
event_type: "device.salto.privacy_mode_deactivated";
|
|
795
842
|
customer_key?: string | undefined;
|
|
843
|
+
event_description?: string | undefined;
|
|
796
844
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
797
845
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
798
846
|
}>;
|
|
@@ -802,6 +850,7 @@ export declare const device_connection_became_flaky_event: z.ZodObject<{
|
|
|
802
850
|
workspace_id: z.ZodString;
|
|
803
851
|
created_at: z.ZodString;
|
|
804
852
|
occurred_at: z.ZodString;
|
|
853
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
805
854
|
} & {
|
|
806
855
|
device_id: z.ZodString;
|
|
807
856
|
connected_account_id: z.ZodString;
|
|
@@ -892,6 +941,7 @@ export declare const device_connection_became_flaky_event: z.ZodObject<{
|
|
|
892
941
|
warning_code: string;
|
|
893
942
|
}[];
|
|
894
943
|
customer_key?: string | undefined;
|
|
944
|
+
event_description?: string | undefined;
|
|
895
945
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
896
946
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
897
947
|
}, {
|
|
@@ -923,6 +973,7 @@ export declare const device_connection_became_flaky_event: z.ZodObject<{
|
|
|
923
973
|
warning_code: string;
|
|
924
974
|
}[];
|
|
925
975
|
customer_key?: string | undefined;
|
|
976
|
+
event_description?: string | undefined;
|
|
926
977
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
927
978
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
928
979
|
}>;
|
|
@@ -932,6 +983,7 @@ export declare const device_connection_stabilized_event: z.ZodObject<{
|
|
|
932
983
|
workspace_id: z.ZodString;
|
|
933
984
|
created_at: z.ZodString;
|
|
934
985
|
occurred_at: z.ZodString;
|
|
986
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
935
987
|
} & {
|
|
936
988
|
device_id: z.ZodString;
|
|
937
989
|
connected_account_id: z.ZodString;
|
|
@@ -949,6 +1001,7 @@ export declare const device_connection_stabilized_event: z.ZodObject<{
|
|
|
949
1001
|
occurred_at: string;
|
|
950
1002
|
event_type: "device.connection_stabilized";
|
|
951
1003
|
customer_key?: string | undefined;
|
|
1004
|
+
event_description?: string | undefined;
|
|
952
1005
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
953
1006
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
954
1007
|
}, {
|
|
@@ -960,6 +1013,7 @@ export declare const device_connection_stabilized_event: z.ZodObject<{
|
|
|
960
1013
|
occurred_at: string;
|
|
961
1014
|
event_type: "device.connection_stabilized";
|
|
962
1015
|
customer_key?: string | undefined;
|
|
1016
|
+
event_description?: string | undefined;
|
|
963
1017
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
964
1018
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
965
1019
|
}>;
|
|
@@ -969,6 +1023,7 @@ export declare const device_error_subscription_required_event: z.ZodObject<{
|
|
|
969
1023
|
workspace_id: z.ZodString;
|
|
970
1024
|
created_at: z.ZodString;
|
|
971
1025
|
occurred_at: z.ZodString;
|
|
1026
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
972
1027
|
} & {
|
|
973
1028
|
device_id: z.ZodString;
|
|
974
1029
|
connected_account_id: z.ZodString;
|
|
@@ -1059,6 +1114,7 @@ export declare const device_error_subscription_required_event: z.ZodObject<{
|
|
|
1059
1114
|
warning_code: string;
|
|
1060
1115
|
}[];
|
|
1061
1116
|
customer_key?: string | undefined;
|
|
1117
|
+
event_description?: string | undefined;
|
|
1062
1118
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1063
1119
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1064
1120
|
}, {
|
|
@@ -1090,6 +1146,7 @@ export declare const device_error_subscription_required_event: z.ZodObject<{
|
|
|
1090
1146
|
warning_code: string;
|
|
1091
1147
|
}[];
|
|
1092
1148
|
customer_key?: string | undefined;
|
|
1149
|
+
event_description?: string | undefined;
|
|
1093
1150
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1094
1151
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1095
1152
|
}>;
|
|
@@ -1099,6 +1156,7 @@ export declare const device_error_subscription_required_resolved_event: z.ZodObj
|
|
|
1099
1156
|
workspace_id: z.ZodString;
|
|
1100
1157
|
created_at: z.ZodString;
|
|
1101
1158
|
occurred_at: z.ZodString;
|
|
1159
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1102
1160
|
} & {
|
|
1103
1161
|
device_id: z.ZodString;
|
|
1104
1162
|
connected_account_id: z.ZodString;
|
|
@@ -1116,6 +1174,7 @@ export declare const device_error_subscription_required_resolved_event: z.ZodObj
|
|
|
1116
1174
|
occurred_at: string;
|
|
1117
1175
|
event_type: "device.error.subscription_required.resolved";
|
|
1118
1176
|
customer_key?: string | undefined;
|
|
1177
|
+
event_description?: string | undefined;
|
|
1119
1178
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1120
1179
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1121
1180
|
}, {
|
|
@@ -1127,6 +1186,7 @@ export declare const device_error_subscription_required_resolved_event: z.ZodObj
|
|
|
1127
1186
|
occurred_at: string;
|
|
1128
1187
|
event_type: "device.error.subscription_required.resolved";
|
|
1129
1188
|
customer_key?: string | undefined;
|
|
1189
|
+
event_description?: string | undefined;
|
|
1130
1190
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1131
1191
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1132
1192
|
}>;
|
|
@@ -1136,6 +1196,7 @@ export declare const device_accessory_keypad_connected_event: z.ZodObject<{
|
|
|
1136
1196
|
workspace_id: z.ZodString;
|
|
1137
1197
|
created_at: z.ZodString;
|
|
1138
1198
|
occurred_at: z.ZodString;
|
|
1199
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1139
1200
|
} & {
|
|
1140
1201
|
device_id: z.ZodString;
|
|
1141
1202
|
connected_account_id: z.ZodString;
|
|
@@ -1153,6 +1214,7 @@ export declare const device_accessory_keypad_connected_event: z.ZodObject<{
|
|
|
1153
1214
|
occurred_at: string;
|
|
1154
1215
|
event_type: "device.accessory_keypad_connected";
|
|
1155
1216
|
customer_key?: string | undefined;
|
|
1217
|
+
event_description?: string | undefined;
|
|
1156
1218
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1157
1219
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1158
1220
|
}, {
|
|
@@ -1164,6 +1226,7 @@ export declare const device_accessory_keypad_connected_event: z.ZodObject<{
|
|
|
1164
1226
|
occurred_at: string;
|
|
1165
1227
|
event_type: "device.accessory_keypad_connected";
|
|
1166
1228
|
customer_key?: string | undefined;
|
|
1229
|
+
event_description?: string | undefined;
|
|
1167
1230
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1168
1231
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1169
1232
|
}>;
|
|
@@ -1173,6 +1236,7 @@ export declare const device_accessory_keypad_disconnected_event: z.ZodObject<{
|
|
|
1173
1236
|
workspace_id: z.ZodString;
|
|
1174
1237
|
created_at: z.ZodString;
|
|
1175
1238
|
occurred_at: z.ZodString;
|
|
1239
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1176
1240
|
} & {
|
|
1177
1241
|
device_id: z.ZodString;
|
|
1178
1242
|
connected_account_id: z.ZodString;
|
|
@@ -1263,6 +1327,7 @@ export declare const device_accessory_keypad_disconnected_event: z.ZodObject<{
|
|
|
1263
1327
|
warning_code: string;
|
|
1264
1328
|
}[];
|
|
1265
1329
|
customer_key?: string | undefined;
|
|
1330
|
+
event_description?: string | undefined;
|
|
1266
1331
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1267
1332
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1268
1333
|
}, {
|
|
@@ -1294,6 +1359,7 @@ export declare const device_accessory_keypad_disconnected_event: z.ZodObject<{
|
|
|
1294
1359
|
warning_code: string;
|
|
1295
1360
|
}[];
|
|
1296
1361
|
customer_key?: string | undefined;
|
|
1362
|
+
event_description?: string | undefined;
|
|
1297
1363
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1298
1364
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1299
1365
|
}>;
|
|
@@ -1303,6 +1369,7 @@ export declare const noise_sensor_noise_threshold_triggered_event: z.ZodObject<{
|
|
|
1303
1369
|
workspace_id: z.ZodString;
|
|
1304
1370
|
created_at: z.ZodString;
|
|
1305
1371
|
occurred_at: z.ZodString;
|
|
1372
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1306
1373
|
} & {
|
|
1307
1374
|
device_id: z.ZodString;
|
|
1308
1375
|
connected_account_id: z.ZodString;
|
|
@@ -1330,6 +1397,7 @@ export declare const noise_sensor_noise_threshold_triggered_event: z.ZodObject<{
|
|
|
1330
1397
|
noiseaware_metadata?: Record<string, unknown> | undefined;
|
|
1331
1398
|
minut_metadata?: Record<string, unknown> | undefined;
|
|
1332
1399
|
noise_level_decibels?: number | undefined;
|
|
1400
|
+
event_description?: string | undefined;
|
|
1333
1401
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1334
1402
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1335
1403
|
noise_threshold_id?: string | undefined;
|
|
@@ -1347,6 +1415,7 @@ export declare const noise_sensor_noise_threshold_triggered_event: z.ZodObject<{
|
|
|
1347
1415
|
noiseaware_metadata?: Record<string, unknown> | undefined;
|
|
1348
1416
|
minut_metadata?: Record<string, unknown> | undefined;
|
|
1349
1417
|
noise_level_decibels?: number | undefined;
|
|
1418
|
+
event_description?: string | undefined;
|
|
1350
1419
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1351
1420
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1352
1421
|
noise_threshold_id?: string | undefined;
|
|
@@ -1358,6 +1427,7 @@ export declare const lock_locked_event: z.ZodObject<{
|
|
|
1358
1427
|
workspace_id: z.ZodString;
|
|
1359
1428
|
created_at: z.ZodString;
|
|
1360
1429
|
occurred_at: z.ZodString;
|
|
1430
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1361
1431
|
} & {
|
|
1362
1432
|
device_id: z.ZodString;
|
|
1363
1433
|
connected_account_id: z.ZodString;
|
|
@@ -1386,6 +1456,7 @@ export declare const lock_locked_event: z.ZodObject<{
|
|
|
1386
1456
|
customer_key?: string | undefined;
|
|
1387
1457
|
access_code_id?: string | undefined;
|
|
1388
1458
|
action_attempt_id?: string | undefined;
|
|
1459
|
+
event_description?: string | undefined;
|
|
1389
1460
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1390
1461
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1391
1462
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -1404,6 +1475,7 @@ export declare const lock_locked_event: z.ZodObject<{
|
|
|
1404
1475
|
customer_key?: string | undefined;
|
|
1405
1476
|
access_code_id?: string | undefined;
|
|
1406
1477
|
action_attempt_id?: string | undefined;
|
|
1478
|
+
event_description?: string | undefined;
|
|
1407
1479
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1408
1480
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1409
1481
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -1416,6 +1488,7 @@ export declare const lock_unlocked_event: z.ZodObject<{
|
|
|
1416
1488
|
workspace_id: z.ZodString;
|
|
1417
1489
|
created_at: z.ZodString;
|
|
1418
1490
|
occurred_at: z.ZodString;
|
|
1491
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1419
1492
|
connected_account_id: z.ZodString;
|
|
1420
1493
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
1421
1494
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -1451,6 +1524,7 @@ export declare const lock_unlocked_event: z.ZodObject<{
|
|
|
1451
1524
|
acs_entrance_id?: string | undefined;
|
|
1452
1525
|
acs_system_id?: string | undefined;
|
|
1453
1526
|
action_attempt_id?: string | undefined;
|
|
1527
|
+
event_description?: string | undefined;
|
|
1454
1528
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1455
1529
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1456
1530
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -1473,6 +1547,7 @@ export declare const lock_unlocked_event: z.ZodObject<{
|
|
|
1473
1547
|
acs_entrance_id?: string | undefined;
|
|
1474
1548
|
acs_system_id?: string | undefined;
|
|
1475
1549
|
action_attempt_id?: string | undefined;
|
|
1550
|
+
event_description?: string | undefined;
|
|
1476
1551
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1477
1552
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1478
1553
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -1485,6 +1560,7 @@ export declare const lock_access_denied_event: z.ZodObject<{
|
|
|
1485
1560
|
workspace_id: z.ZodString;
|
|
1486
1561
|
created_at: z.ZodString;
|
|
1487
1562
|
occurred_at: z.ZodString;
|
|
1563
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1488
1564
|
connected_account_id: z.ZodString;
|
|
1489
1565
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
1490
1566
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -1511,6 +1587,7 @@ export declare const lock_access_denied_event: z.ZodObject<{
|
|
|
1511
1587
|
acs_user_id?: string | undefined;
|
|
1512
1588
|
acs_entrance_id?: string | undefined;
|
|
1513
1589
|
acs_system_id?: string | undefined;
|
|
1590
|
+
event_description?: string | undefined;
|
|
1514
1591
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1515
1592
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1516
1593
|
}, {
|
|
@@ -1527,6 +1604,7 @@ export declare const lock_access_denied_event: z.ZodObject<{
|
|
|
1527
1604
|
acs_user_id?: string | undefined;
|
|
1528
1605
|
acs_entrance_id?: string | undefined;
|
|
1529
1606
|
acs_system_id?: string | undefined;
|
|
1607
|
+
event_description?: string | undefined;
|
|
1530
1608
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1531
1609
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1532
1610
|
}>;
|
|
@@ -1536,6 +1614,7 @@ export declare const thermostat_climate_preset_activated_event: z.ZodObject<{
|
|
|
1536
1614
|
workspace_id: z.ZodString;
|
|
1537
1615
|
created_at: z.ZodString;
|
|
1538
1616
|
occurred_at: z.ZodString;
|
|
1617
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1539
1618
|
} & {
|
|
1540
1619
|
device_id: z.ZodString;
|
|
1541
1620
|
connected_account_id: z.ZodString;
|
|
@@ -1559,6 +1638,7 @@ export declare const thermostat_climate_preset_activated_event: z.ZodObject<{
|
|
|
1559
1638
|
event_type: "thermostat.climate_preset_activated";
|
|
1560
1639
|
is_fallback_climate_preset: boolean;
|
|
1561
1640
|
customer_key?: string | undefined;
|
|
1641
|
+
event_description?: string | undefined;
|
|
1562
1642
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1563
1643
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1564
1644
|
}, {
|
|
@@ -1573,6 +1653,7 @@ export declare const thermostat_climate_preset_activated_event: z.ZodObject<{
|
|
|
1573
1653
|
event_type: "thermostat.climate_preset_activated";
|
|
1574
1654
|
is_fallback_climate_preset: boolean;
|
|
1575
1655
|
customer_key?: string | undefined;
|
|
1656
|
+
event_description?: string | undefined;
|
|
1576
1657
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1577
1658
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1578
1659
|
}>;
|
|
@@ -1583,6 +1664,7 @@ export declare const thermostat_manually_adjusted_event: z.ZodObject<{
|
|
|
1583
1664
|
workspace_id: z.ZodString;
|
|
1584
1665
|
created_at: z.ZodString;
|
|
1585
1666
|
occurred_at: z.ZodString;
|
|
1667
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1586
1668
|
} & {
|
|
1587
1669
|
device_id: z.ZodString;
|
|
1588
1670
|
connected_account_id: z.ZodString;
|
|
@@ -1636,6 +1718,7 @@ export declare const thermostat_manually_adjusted_event: z.ZodObject<{
|
|
|
1636
1718
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1637
1719
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1638
1720
|
customer_key?: string | undefined;
|
|
1721
|
+
event_description?: string | undefined;
|
|
1639
1722
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1640
1723
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1641
1724
|
}, {
|
|
@@ -1654,6 +1737,7 @@ export declare const thermostat_manually_adjusted_event: z.ZodObject<{
|
|
|
1654
1737
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1655
1738
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1656
1739
|
customer_key?: string | undefined;
|
|
1740
|
+
event_description?: string | undefined;
|
|
1657
1741
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1658
1742
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1659
1743
|
}>;
|
|
@@ -1663,6 +1747,7 @@ export declare const temperature_threshold_exceeded_event: z.ZodObject<{
|
|
|
1663
1747
|
workspace_id: z.ZodString;
|
|
1664
1748
|
created_at: z.ZodString;
|
|
1665
1749
|
occurred_at: z.ZodString;
|
|
1750
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1666
1751
|
} & {
|
|
1667
1752
|
device_id: z.ZodString;
|
|
1668
1753
|
connected_account_id: z.ZodString;
|
|
@@ -1692,6 +1777,7 @@ export declare const temperature_threshold_exceeded_event: z.ZodObject<{
|
|
|
1692
1777
|
occurred_at: string;
|
|
1693
1778
|
event_type: "thermostat.temperature_threshold_exceeded";
|
|
1694
1779
|
customer_key?: string | undefined;
|
|
1780
|
+
event_description?: string | undefined;
|
|
1695
1781
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1696
1782
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1697
1783
|
}, {
|
|
@@ -1709,6 +1795,7 @@ export declare const temperature_threshold_exceeded_event: z.ZodObject<{
|
|
|
1709
1795
|
occurred_at: string;
|
|
1710
1796
|
event_type: "thermostat.temperature_threshold_exceeded";
|
|
1711
1797
|
customer_key?: string | undefined;
|
|
1798
|
+
event_description?: string | undefined;
|
|
1712
1799
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1713
1800
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1714
1801
|
}>;
|
|
@@ -1718,6 +1805,7 @@ export declare const temperature_threshold_no_longer_exceeded_event: z.ZodObject
|
|
|
1718
1805
|
workspace_id: z.ZodString;
|
|
1719
1806
|
created_at: z.ZodString;
|
|
1720
1807
|
occurred_at: z.ZodString;
|
|
1808
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1721
1809
|
} & {
|
|
1722
1810
|
device_id: z.ZodString;
|
|
1723
1811
|
connected_account_id: z.ZodString;
|
|
@@ -1747,6 +1835,7 @@ export declare const temperature_threshold_no_longer_exceeded_event: z.ZodObject
|
|
|
1747
1835
|
occurred_at: string;
|
|
1748
1836
|
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
1749
1837
|
customer_key?: string | undefined;
|
|
1838
|
+
event_description?: string | undefined;
|
|
1750
1839
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1751
1840
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1752
1841
|
}, {
|
|
@@ -1764,6 +1853,7 @@ export declare const temperature_threshold_no_longer_exceeded_event: z.ZodObject
|
|
|
1764
1853
|
occurred_at: string;
|
|
1765
1854
|
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
1766
1855
|
customer_key?: string | undefined;
|
|
1856
|
+
event_description?: string | undefined;
|
|
1767
1857
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1768
1858
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1769
1859
|
}>;
|
|
@@ -1773,6 +1863,7 @@ export declare const temperature_reached_set_point_event: z.ZodObject<{
|
|
|
1773
1863
|
workspace_id: z.ZodString;
|
|
1774
1864
|
created_at: z.ZodString;
|
|
1775
1865
|
occurred_at: z.ZodString;
|
|
1866
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1776
1867
|
} & {
|
|
1777
1868
|
device_id: z.ZodString;
|
|
1778
1869
|
connected_account_id: z.ZodString;
|
|
@@ -1796,6 +1887,7 @@ export declare const temperature_reached_set_point_event: z.ZodObject<{
|
|
|
1796
1887
|
occurred_at: string;
|
|
1797
1888
|
event_type: "thermostat.temperature_reached_set_point";
|
|
1798
1889
|
customer_key?: string | undefined;
|
|
1890
|
+
event_description?: string | undefined;
|
|
1799
1891
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1800
1892
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1801
1893
|
desired_temperature_celsius?: number | undefined;
|
|
@@ -1811,6 +1903,7 @@ export declare const temperature_reached_set_point_event: z.ZodObject<{
|
|
|
1811
1903
|
occurred_at: string;
|
|
1812
1904
|
event_type: "thermostat.temperature_reached_set_point";
|
|
1813
1905
|
customer_key?: string | undefined;
|
|
1906
|
+
event_description?: string | undefined;
|
|
1814
1907
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1815
1908
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1816
1909
|
desired_temperature_celsius?: number | undefined;
|
|
@@ -1822,6 +1915,7 @@ export declare const temperature_changed_event: z.ZodObject<{
|
|
|
1822
1915
|
workspace_id: z.ZodString;
|
|
1823
1916
|
created_at: z.ZodString;
|
|
1824
1917
|
occurred_at: z.ZodString;
|
|
1918
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1825
1919
|
} & {
|
|
1826
1920
|
device_id: z.ZodString;
|
|
1827
1921
|
connected_account_id: z.ZodString;
|
|
@@ -1843,6 +1937,7 @@ export declare const temperature_changed_event: z.ZodObject<{
|
|
|
1843
1937
|
occurred_at: string;
|
|
1844
1938
|
event_type: "thermostat.temperature_changed";
|
|
1845
1939
|
customer_key?: string | undefined;
|
|
1940
|
+
event_description?: string | undefined;
|
|
1846
1941
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1847
1942
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1848
1943
|
}, {
|
|
@@ -1856,6 +1951,7 @@ export declare const temperature_changed_event: z.ZodObject<{
|
|
|
1856
1951
|
occurred_at: string;
|
|
1857
1952
|
event_type: "thermostat.temperature_changed";
|
|
1858
1953
|
customer_key?: string | undefined;
|
|
1954
|
+
event_description?: string | undefined;
|
|
1859
1955
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1860
1956
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1861
1957
|
}>;
|
|
@@ -1865,6 +1961,7 @@ export declare const device_name_changed_event: z.ZodObject<{
|
|
|
1865
1961
|
workspace_id: z.ZodString;
|
|
1866
1962
|
created_at: z.ZodString;
|
|
1867
1963
|
occurred_at: z.ZodString;
|
|
1964
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1868
1965
|
} & {
|
|
1869
1966
|
device_id: z.ZodString;
|
|
1870
1967
|
connected_account_id: z.ZodString;
|
|
@@ -1884,6 +1981,7 @@ export declare const device_name_changed_event: z.ZodObject<{
|
|
|
1884
1981
|
occurred_at: string;
|
|
1885
1982
|
event_type: "device.name_changed";
|
|
1886
1983
|
customer_key?: string | undefined;
|
|
1984
|
+
event_description?: string | undefined;
|
|
1887
1985
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1888
1986
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1889
1987
|
}, {
|
|
@@ -1896,6 +1994,7 @@ export declare const device_name_changed_event: z.ZodObject<{
|
|
|
1896
1994
|
occurred_at: string;
|
|
1897
1995
|
event_type: "device.name_changed";
|
|
1898
1996
|
customer_key?: string | undefined;
|
|
1997
|
+
event_description?: string | undefined;
|
|
1899
1998
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1900
1999
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1901
2000
|
}>;
|
|
@@ -1905,6 +2004,7 @@ export declare const camera_activated_event: z.ZodObject<{
|
|
|
1905
2004
|
workspace_id: z.ZodString;
|
|
1906
2005
|
created_at: z.ZodString;
|
|
1907
2006
|
occurred_at: z.ZodString;
|
|
2007
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1908
2008
|
} & {
|
|
1909
2009
|
device_id: z.ZodString;
|
|
1910
2010
|
connected_account_id: z.ZodString;
|
|
@@ -1928,6 +2028,7 @@ export declare const camera_activated_event: z.ZodObject<{
|
|
|
1928
2028
|
activation_reason: "motion_detected";
|
|
1929
2029
|
image_url?: string | undefined;
|
|
1930
2030
|
customer_key?: string | undefined;
|
|
2031
|
+
event_description?: string | undefined;
|
|
1931
2032
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1932
2033
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1933
2034
|
motion_sub_type?: "human" | "vehicle" | "package" | "other" | undefined;
|
|
@@ -1943,6 +2044,7 @@ export declare const camera_activated_event: z.ZodObject<{
|
|
|
1943
2044
|
activation_reason: "motion_detected";
|
|
1944
2045
|
image_url?: string | undefined;
|
|
1945
2046
|
customer_key?: string | undefined;
|
|
2047
|
+
event_description?: string | undefined;
|
|
1946
2048
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1947
2049
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1948
2050
|
motion_sub_type?: "human" | "vehicle" | "package" | "other" | undefined;
|
|
@@ -1954,6 +2056,7 @@ export declare const device_doorbell_rang_event: z.ZodObject<{
|
|
|
1954
2056
|
workspace_id: z.ZodString;
|
|
1955
2057
|
created_at: z.ZodString;
|
|
1956
2058
|
occurred_at: z.ZodString;
|
|
2059
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1957
2060
|
} & {
|
|
1958
2061
|
device_id: z.ZodString;
|
|
1959
2062
|
connected_account_id: z.ZodString;
|
|
@@ -1974,6 +2077,7 @@ export declare const device_doorbell_rang_event: z.ZodObject<{
|
|
|
1974
2077
|
event_type: "device.doorbell_rang";
|
|
1975
2078
|
image_url?: string | undefined;
|
|
1976
2079
|
customer_key?: string | undefined;
|
|
2080
|
+
event_description?: string | undefined;
|
|
1977
2081
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1978
2082
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1979
2083
|
video_url?: string | undefined;
|
|
@@ -1987,6 +2091,7 @@ export declare const device_doorbell_rang_event: z.ZodObject<{
|
|
|
1987
2091
|
event_type: "device.doorbell_rang";
|
|
1988
2092
|
image_url?: string | undefined;
|
|
1989
2093
|
customer_key?: string | undefined;
|
|
2094
|
+
event_description?: string | undefined;
|
|
1990
2095
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1991
2096
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1992
2097
|
video_url?: string | undefined;
|
|
@@ -1997,6 +2102,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
1997
2102
|
workspace_id: z.ZodString;
|
|
1998
2103
|
created_at: z.ZodString;
|
|
1999
2104
|
occurred_at: z.ZodString;
|
|
2105
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2000
2106
|
} & {
|
|
2001
2107
|
device_id: z.ZodString;
|
|
2002
2108
|
connected_account_id: z.ZodString;
|
|
@@ -2014,6 +2120,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2014
2120
|
occurred_at: string;
|
|
2015
2121
|
event_type: "device.connected";
|
|
2016
2122
|
customer_key?: string | undefined;
|
|
2123
|
+
event_description?: string | undefined;
|
|
2017
2124
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2018
2125
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2019
2126
|
}, {
|
|
@@ -2025,6 +2132,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2025
2132
|
occurred_at: string;
|
|
2026
2133
|
event_type: "device.connected";
|
|
2027
2134
|
customer_key?: string | undefined;
|
|
2135
|
+
event_description?: string | undefined;
|
|
2028
2136
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2029
2137
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2030
2138
|
}>, z.ZodObject<{
|
|
@@ -2032,6 +2140,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2032
2140
|
workspace_id: z.ZodString;
|
|
2033
2141
|
created_at: z.ZodString;
|
|
2034
2142
|
occurred_at: z.ZodString;
|
|
2143
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2035
2144
|
} & {
|
|
2036
2145
|
device_id: z.ZodString;
|
|
2037
2146
|
connected_account_id: z.ZodString;
|
|
@@ -2049,6 +2158,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2049
2158
|
occurred_at: string;
|
|
2050
2159
|
event_type: "device.added";
|
|
2051
2160
|
customer_key?: string | undefined;
|
|
2161
|
+
event_description?: string | undefined;
|
|
2052
2162
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2053
2163
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2054
2164
|
}, {
|
|
@@ -2060,6 +2170,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2060
2170
|
occurred_at: string;
|
|
2061
2171
|
event_type: "device.added";
|
|
2062
2172
|
customer_key?: string | undefined;
|
|
2173
|
+
event_description?: string | undefined;
|
|
2063
2174
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2064
2175
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2065
2176
|
}>, z.ZodObject<{
|
|
@@ -2067,6 +2178,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2067
2178
|
workspace_id: z.ZodString;
|
|
2068
2179
|
created_at: z.ZodString;
|
|
2069
2180
|
occurred_at: z.ZodString;
|
|
2181
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2070
2182
|
} & {
|
|
2071
2183
|
device_id: z.ZodString;
|
|
2072
2184
|
connected_account_id: z.ZodString;
|
|
@@ -2084,6 +2196,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2084
2196
|
occurred_at: string;
|
|
2085
2197
|
event_type: "device.converted_to_unmanaged";
|
|
2086
2198
|
customer_key?: string | undefined;
|
|
2199
|
+
event_description?: string | undefined;
|
|
2087
2200
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2088
2201
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2089
2202
|
}, {
|
|
@@ -2095,6 +2208,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2095
2208
|
occurred_at: string;
|
|
2096
2209
|
event_type: "device.converted_to_unmanaged";
|
|
2097
2210
|
customer_key?: string | undefined;
|
|
2211
|
+
event_description?: string | undefined;
|
|
2098
2212
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2099
2213
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2100
2214
|
}>, z.ZodObject<{
|
|
@@ -2102,6 +2216,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2102
2216
|
workspace_id: z.ZodString;
|
|
2103
2217
|
created_at: z.ZodString;
|
|
2104
2218
|
occurred_at: z.ZodString;
|
|
2219
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2105
2220
|
} & {
|
|
2106
2221
|
device_id: z.ZodString;
|
|
2107
2222
|
connected_account_id: z.ZodString;
|
|
@@ -2119,6 +2234,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2119
2234
|
occurred_at: string;
|
|
2120
2235
|
event_type: "device.unmanaged.converted_to_managed";
|
|
2121
2236
|
customer_key?: string | undefined;
|
|
2237
|
+
event_description?: string | undefined;
|
|
2122
2238
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2123
2239
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2124
2240
|
}, {
|
|
@@ -2130,6 +2246,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2130
2246
|
occurred_at: string;
|
|
2131
2247
|
event_type: "device.unmanaged.converted_to_managed";
|
|
2132
2248
|
customer_key?: string | undefined;
|
|
2249
|
+
event_description?: string | undefined;
|
|
2133
2250
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2134
2251
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2135
2252
|
}>, z.ZodObject<{
|
|
@@ -2137,6 +2254,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2137
2254
|
workspace_id: z.ZodString;
|
|
2138
2255
|
created_at: z.ZodString;
|
|
2139
2256
|
occurred_at: z.ZodString;
|
|
2257
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2140
2258
|
} & {
|
|
2141
2259
|
device_id: z.ZodString;
|
|
2142
2260
|
connected_account_id: z.ZodString;
|
|
@@ -2154,6 +2272,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2154
2272
|
occurred_at: string;
|
|
2155
2273
|
event_type: "device.unmanaged.connected";
|
|
2156
2274
|
customer_key?: string | undefined;
|
|
2275
|
+
event_description?: string | undefined;
|
|
2157
2276
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2158
2277
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2159
2278
|
}, {
|
|
@@ -2165,6 +2284,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2165
2284
|
occurred_at: string;
|
|
2166
2285
|
event_type: "device.unmanaged.connected";
|
|
2167
2286
|
customer_key?: string | undefined;
|
|
2287
|
+
event_description?: string | undefined;
|
|
2168
2288
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2169
2289
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2170
2290
|
}>, z.ZodObject<{
|
|
@@ -2172,6 +2292,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2172
2292
|
workspace_id: z.ZodString;
|
|
2173
2293
|
created_at: z.ZodString;
|
|
2174
2294
|
occurred_at: z.ZodString;
|
|
2295
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2175
2296
|
} & {
|
|
2176
2297
|
device_id: z.ZodString;
|
|
2177
2298
|
connected_account_id: z.ZodString;
|
|
@@ -2264,6 +2385,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2264
2385
|
warning_code: string;
|
|
2265
2386
|
}[];
|
|
2266
2387
|
customer_key?: string | undefined;
|
|
2388
|
+
event_description?: string | undefined;
|
|
2267
2389
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2268
2390
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2269
2391
|
}, {
|
|
@@ -2296,6 +2418,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2296
2418
|
warning_code: string;
|
|
2297
2419
|
}[];
|
|
2298
2420
|
customer_key?: string | undefined;
|
|
2421
|
+
event_description?: string | undefined;
|
|
2299
2422
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2300
2423
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2301
2424
|
}>, z.ZodObject<{
|
|
@@ -2303,6 +2426,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2303
2426
|
workspace_id: z.ZodString;
|
|
2304
2427
|
created_at: z.ZodString;
|
|
2305
2428
|
occurred_at: z.ZodString;
|
|
2429
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2306
2430
|
} & {
|
|
2307
2431
|
device_id: z.ZodString;
|
|
2308
2432
|
connected_account_id: z.ZodString;
|
|
@@ -2395,6 +2519,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2395
2519
|
warning_code: string;
|
|
2396
2520
|
}[];
|
|
2397
2521
|
customer_key?: string | undefined;
|
|
2522
|
+
event_description?: string | undefined;
|
|
2398
2523
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2399
2524
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2400
2525
|
}, {
|
|
@@ -2427,6 +2552,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2427
2552
|
warning_code: string;
|
|
2428
2553
|
}[];
|
|
2429
2554
|
customer_key?: string | undefined;
|
|
2555
|
+
event_description?: string | undefined;
|
|
2430
2556
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2431
2557
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2432
2558
|
}>, z.ZodObject<{
|
|
@@ -2434,6 +2560,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2434
2560
|
workspace_id: z.ZodString;
|
|
2435
2561
|
created_at: z.ZodString;
|
|
2436
2562
|
occurred_at: z.ZodString;
|
|
2563
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2437
2564
|
} & {
|
|
2438
2565
|
device_id: z.ZodString;
|
|
2439
2566
|
connected_account_id: z.ZodString;
|
|
@@ -2451,6 +2578,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2451
2578
|
occurred_at: string;
|
|
2452
2579
|
event_type: "device.tampered";
|
|
2453
2580
|
customer_key?: string | undefined;
|
|
2581
|
+
event_description?: string | undefined;
|
|
2454
2582
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2455
2583
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2456
2584
|
}, {
|
|
@@ -2462,6 +2590,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2462
2590
|
occurred_at: string;
|
|
2463
2591
|
event_type: "device.tampered";
|
|
2464
2592
|
customer_key?: string | undefined;
|
|
2593
|
+
event_description?: string | undefined;
|
|
2465
2594
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2466
2595
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2467
2596
|
}>, z.ZodObject<{
|
|
@@ -2469,6 +2598,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2469
2598
|
workspace_id: z.ZodString;
|
|
2470
2599
|
created_at: z.ZodString;
|
|
2471
2600
|
occurred_at: z.ZodString;
|
|
2601
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2472
2602
|
} & {
|
|
2473
2603
|
device_id: z.ZodString;
|
|
2474
2604
|
connected_account_id: z.ZodString;
|
|
@@ -2488,6 +2618,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2488
2618
|
occurred_at: string;
|
|
2489
2619
|
event_type: "device.low_battery";
|
|
2490
2620
|
customer_key?: string | undefined;
|
|
2621
|
+
event_description?: string | undefined;
|
|
2491
2622
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2492
2623
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2493
2624
|
}, {
|
|
@@ -2500,6 +2631,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2500
2631
|
occurred_at: string;
|
|
2501
2632
|
event_type: "device.low_battery";
|
|
2502
2633
|
customer_key?: string | undefined;
|
|
2634
|
+
event_description?: string | undefined;
|
|
2503
2635
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2504
2636
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2505
2637
|
}>, z.ZodObject<{
|
|
@@ -2507,6 +2639,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2507
2639
|
workspace_id: z.ZodString;
|
|
2508
2640
|
created_at: z.ZodString;
|
|
2509
2641
|
occurred_at: z.ZodString;
|
|
2642
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2510
2643
|
} & {
|
|
2511
2644
|
device_id: z.ZodString;
|
|
2512
2645
|
connected_account_id: z.ZodString;
|
|
@@ -2528,6 +2661,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2528
2661
|
event_type: "device.battery_status_changed";
|
|
2529
2662
|
battery_status: "critical" | "low" | "good" | "full";
|
|
2530
2663
|
customer_key?: string | undefined;
|
|
2664
|
+
event_description?: string | undefined;
|
|
2531
2665
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2532
2666
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2533
2667
|
}, {
|
|
@@ -2541,6 +2675,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2541
2675
|
event_type: "device.battery_status_changed";
|
|
2542
2676
|
battery_status: "critical" | "low" | "good" | "full";
|
|
2543
2677
|
customer_key?: string | undefined;
|
|
2678
|
+
event_description?: string | undefined;
|
|
2544
2679
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2545
2680
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2546
2681
|
}>, z.ZodObject<{
|
|
@@ -2548,6 +2683,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2548
2683
|
workspace_id: z.ZodString;
|
|
2549
2684
|
created_at: z.ZodString;
|
|
2550
2685
|
occurred_at: z.ZodString;
|
|
2686
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2551
2687
|
} & {
|
|
2552
2688
|
device_id: z.ZodString;
|
|
2553
2689
|
connected_account_id: z.ZodString;
|
|
@@ -2565,6 +2701,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2565
2701
|
occurred_at: string;
|
|
2566
2702
|
event_type: "device.removed";
|
|
2567
2703
|
customer_key?: string | undefined;
|
|
2704
|
+
event_description?: string | undefined;
|
|
2568
2705
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2569
2706
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2570
2707
|
}, {
|
|
@@ -2576,6 +2713,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2576
2713
|
occurred_at: string;
|
|
2577
2714
|
event_type: "device.removed";
|
|
2578
2715
|
customer_key?: string | undefined;
|
|
2716
|
+
event_description?: string | undefined;
|
|
2579
2717
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2580
2718
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2581
2719
|
}>, z.ZodObject<{
|
|
@@ -2583,6 +2721,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2583
2721
|
workspace_id: z.ZodString;
|
|
2584
2722
|
created_at: z.ZodString;
|
|
2585
2723
|
occurred_at: z.ZodString;
|
|
2724
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2586
2725
|
} & {
|
|
2587
2726
|
device_id: z.ZodString;
|
|
2588
2727
|
connected_account_id: z.ZodString;
|
|
@@ -2602,6 +2741,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2602
2741
|
event_type: "device.deleted";
|
|
2603
2742
|
customer_key?: string | undefined;
|
|
2604
2743
|
device_name?: string | null | undefined;
|
|
2744
|
+
event_description?: string | undefined;
|
|
2605
2745
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2606
2746
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2607
2747
|
}, {
|
|
@@ -2614,6 +2754,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2614
2754
|
event_type: "device.deleted";
|
|
2615
2755
|
customer_key?: string | undefined;
|
|
2616
2756
|
device_name?: string | null | undefined;
|
|
2757
|
+
event_description?: string | undefined;
|
|
2617
2758
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2618
2759
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2619
2760
|
}>, z.ZodObject<{
|
|
@@ -2621,6 +2762,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2621
2762
|
workspace_id: z.ZodString;
|
|
2622
2763
|
created_at: z.ZodString;
|
|
2623
2764
|
occurred_at: z.ZodString;
|
|
2765
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2624
2766
|
} & {
|
|
2625
2767
|
device_id: z.ZodString;
|
|
2626
2768
|
connected_account_id: z.ZodString;
|
|
@@ -2638,6 +2780,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2638
2780
|
occurred_at: string;
|
|
2639
2781
|
event_type: "device.third_party_integration_detected";
|
|
2640
2782
|
customer_key?: string | undefined;
|
|
2783
|
+
event_description?: string | undefined;
|
|
2641
2784
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2642
2785
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2643
2786
|
}, {
|
|
@@ -2649,6 +2792,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2649
2792
|
occurred_at: string;
|
|
2650
2793
|
event_type: "device.third_party_integration_detected";
|
|
2651
2794
|
customer_key?: string | undefined;
|
|
2795
|
+
event_description?: string | undefined;
|
|
2652
2796
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2653
2797
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2654
2798
|
}>, z.ZodObject<{
|
|
@@ -2656,6 +2800,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2656
2800
|
workspace_id: z.ZodString;
|
|
2657
2801
|
created_at: z.ZodString;
|
|
2658
2802
|
occurred_at: z.ZodString;
|
|
2803
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2659
2804
|
} & {
|
|
2660
2805
|
device_id: z.ZodString;
|
|
2661
2806
|
connected_account_id: z.ZodString;
|
|
@@ -2673,6 +2818,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2673
2818
|
occurred_at: string;
|
|
2674
2819
|
event_type: "device.third_party_integration_no_longer_detected";
|
|
2675
2820
|
customer_key?: string | undefined;
|
|
2821
|
+
event_description?: string | undefined;
|
|
2676
2822
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2677
2823
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2678
2824
|
}, {
|
|
@@ -2684,6 +2830,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2684
2830
|
occurred_at: string;
|
|
2685
2831
|
event_type: "device.third_party_integration_no_longer_detected";
|
|
2686
2832
|
customer_key?: string | undefined;
|
|
2833
|
+
event_description?: string | undefined;
|
|
2687
2834
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2688
2835
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2689
2836
|
}>, z.ZodObject<{
|
|
@@ -2691,6 +2838,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2691
2838
|
workspace_id: z.ZodString;
|
|
2692
2839
|
created_at: z.ZodString;
|
|
2693
2840
|
occurred_at: z.ZodString;
|
|
2841
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2694
2842
|
} & {
|
|
2695
2843
|
device_id: z.ZodString;
|
|
2696
2844
|
connected_account_id: z.ZodString;
|
|
@@ -2708,6 +2856,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2708
2856
|
occurred_at: string;
|
|
2709
2857
|
event_type: "device.salto.privacy_mode_activated";
|
|
2710
2858
|
customer_key?: string | undefined;
|
|
2859
|
+
event_description?: string | undefined;
|
|
2711
2860
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2712
2861
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2713
2862
|
}, {
|
|
@@ -2719,6 +2868,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2719
2868
|
occurred_at: string;
|
|
2720
2869
|
event_type: "device.salto.privacy_mode_activated";
|
|
2721
2870
|
customer_key?: string | undefined;
|
|
2871
|
+
event_description?: string | undefined;
|
|
2722
2872
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2723
2873
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2724
2874
|
}>, z.ZodObject<{
|
|
@@ -2726,6 +2876,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2726
2876
|
workspace_id: z.ZodString;
|
|
2727
2877
|
created_at: z.ZodString;
|
|
2728
2878
|
occurred_at: z.ZodString;
|
|
2879
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2729
2880
|
} & {
|
|
2730
2881
|
device_id: z.ZodString;
|
|
2731
2882
|
connected_account_id: z.ZodString;
|
|
@@ -2743,6 +2894,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2743
2894
|
occurred_at: string;
|
|
2744
2895
|
event_type: "device.salto.privacy_mode_deactivated";
|
|
2745
2896
|
customer_key?: string | undefined;
|
|
2897
|
+
event_description?: string | undefined;
|
|
2746
2898
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2747
2899
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2748
2900
|
}, {
|
|
@@ -2754,6 +2906,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2754
2906
|
occurred_at: string;
|
|
2755
2907
|
event_type: "device.salto.privacy_mode_deactivated";
|
|
2756
2908
|
customer_key?: string | undefined;
|
|
2909
|
+
event_description?: string | undefined;
|
|
2757
2910
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2758
2911
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2759
2912
|
}>, z.ZodObject<{
|
|
@@ -2761,6 +2914,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2761
2914
|
workspace_id: z.ZodString;
|
|
2762
2915
|
created_at: z.ZodString;
|
|
2763
2916
|
occurred_at: z.ZodString;
|
|
2917
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2764
2918
|
} & {
|
|
2765
2919
|
device_id: z.ZodString;
|
|
2766
2920
|
connected_account_id: z.ZodString;
|
|
@@ -2851,6 +3005,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2851
3005
|
warning_code: string;
|
|
2852
3006
|
}[];
|
|
2853
3007
|
customer_key?: string | undefined;
|
|
3008
|
+
event_description?: string | undefined;
|
|
2854
3009
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2855
3010
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2856
3011
|
}, {
|
|
@@ -2882,6 +3037,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2882
3037
|
warning_code: string;
|
|
2883
3038
|
}[];
|
|
2884
3039
|
customer_key?: string | undefined;
|
|
3040
|
+
event_description?: string | undefined;
|
|
2885
3041
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2886
3042
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2887
3043
|
}>, z.ZodObject<{
|
|
@@ -2889,6 +3045,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2889
3045
|
workspace_id: z.ZodString;
|
|
2890
3046
|
created_at: z.ZodString;
|
|
2891
3047
|
occurred_at: z.ZodString;
|
|
3048
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2892
3049
|
} & {
|
|
2893
3050
|
device_id: z.ZodString;
|
|
2894
3051
|
connected_account_id: z.ZodString;
|
|
@@ -2906,6 +3063,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2906
3063
|
occurred_at: string;
|
|
2907
3064
|
event_type: "device.connection_stabilized";
|
|
2908
3065
|
customer_key?: string | undefined;
|
|
3066
|
+
event_description?: string | undefined;
|
|
2909
3067
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2910
3068
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2911
3069
|
}, {
|
|
@@ -2917,6 +3075,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2917
3075
|
occurred_at: string;
|
|
2918
3076
|
event_type: "device.connection_stabilized";
|
|
2919
3077
|
customer_key?: string | undefined;
|
|
3078
|
+
event_description?: string | undefined;
|
|
2920
3079
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2921
3080
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2922
3081
|
}>, z.ZodObject<{
|
|
@@ -2924,6 +3083,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
2924
3083
|
workspace_id: z.ZodString;
|
|
2925
3084
|
created_at: z.ZodString;
|
|
2926
3085
|
occurred_at: z.ZodString;
|
|
3086
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2927
3087
|
} & {
|
|
2928
3088
|
device_id: z.ZodString;
|
|
2929
3089
|
connected_account_id: z.ZodString;
|
|
@@ -3014,6 +3174,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3014
3174
|
warning_code: string;
|
|
3015
3175
|
}[];
|
|
3016
3176
|
customer_key?: string | undefined;
|
|
3177
|
+
event_description?: string | undefined;
|
|
3017
3178
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3018
3179
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3019
3180
|
}, {
|
|
@@ -3045,6 +3206,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3045
3206
|
warning_code: string;
|
|
3046
3207
|
}[];
|
|
3047
3208
|
customer_key?: string | undefined;
|
|
3209
|
+
event_description?: string | undefined;
|
|
3048
3210
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3049
3211
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3050
3212
|
}>, z.ZodObject<{
|
|
@@ -3052,6 +3214,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3052
3214
|
workspace_id: z.ZodString;
|
|
3053
3215
|
created_at: z.ZodString;
|
|
3054
3216
|
occurred_at: z.ZodString;
|
|
3217
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3055
3218
|
} & {
|
|
3056
3219
|
device_id: z.ZodString;
|
|
3057
3220
|
connected_account_id: z.ZodString;
|
|
@@ -3069,6 +3232,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3069
3232
|
occurred_at: string;
|
|
3070
3233
|
event_type: "device.error.subscription_required.resolved";
|
|
3071
3234
|
customer_key?: string | undefined;
|
|
3235
|
+
event_description?: string | undefined;
|
|
3072
3236
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3073
3237
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3074
3238
|
}, {
|
|
@@ -3080,6 +3244,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3080
3244
|
occurred_at: string;
|
|
3081
3245
|
event_type: "device.error.subscription_required.resolved";
|
|
3082
3246
|
customer_key?: string | undefined;
|
|
3247
|
+
event_description?: string | undefined;
|
|
3083
3248
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3084
3249
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3085
3250
|
}>, z.ZodObject<{
|
|
@@ -3087,6 +3252,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3087
3252
|
workspace_id: z.ZodString;
|
|
3088
3253
|
created_at: z.ZodString;
|
|
3089
3254
|
occurred_at: z.ZodString;
|
|
3255
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3090
3256
|
} & {
|
|
3091
3257
|
device_id: z.ZodString;
|
|
3092
3258
|
connected_account_id: z.ZodString;
|
|
@@ -3104,6 +3270,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3104
3270
|
occurred_at: string;
|
|
3105
3271
|
event_type: "device.accessory_keypad_connected";
|
|
3106
3272
|
customer_key?: string | undefined;
|
|
3273
|
+
event_description?: string | undefined;
|
|
3107
3274
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3108
3275
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3109
3276
|
}, {
|
|
@@ -3115,6 +3282,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3115
3282
|
occurred_at: string;
|
|
3116
3283
|
event_type: "device.accessory_keypad_connected";
|
|
3117
3284
|
customer_key?: string | undefined;
|
|
3285
|
+
event_description?: string | undefined;
|
|
3118
3286
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3119
3287
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3120
3288
|
}>, z.ZodObject<{
|
|
@@ -3122,6 +3290,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3122
3290
|
workspace_id: z.ZodString;
|
|
3123
3291
|
created_at: z.ZodString;
|
|
3124
3292
|
occurred_at: z.ZodString;
|
|
3293
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3125
3294
|
} & {
|
|
3126
3295
|
device_id: z.ZodString;
|
|
3127
3296
|
connected_account_id: z.ZodString;
|
|
@@ -3212,6 +3381,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3212
3381
|
warning_code: string;
|
|
3213
3382
|
}[];
|
|
3214
3383
|
customer_key?: string | undefined;
|
|
3384
|
+
event_description?: string | undefined;
|
|
3215
3385
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3216
3386
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3217
3387
|
}, {
|
|
@@ -3243,6 +3413,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3243
3413
|
warning_code: string;
|
|
3244
3414
|
}[];
|
|
3245
3415
|
customer_key?: string | undefined;
|
|
3416
|
+
event_description?: string | undefined;
|
|
3246
3417
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3247
3418
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3248
3419
|
}>, z.ZodObject<{
|
|
@@ -3250,6 +3421,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3250
3421
|
workspace_id: z.ZodString;
|
|
3251
3422
|
created_at: z.ZodString;
|
|
3252
3423
|
occurred_at: z.ZodString;
|
|
3424
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3253
3425
|
} & {
|
|
3254
3426
|
device_id: z.ZodString;
|
|
3255
3427
|
connected_account_id: z.ZodString;
|
|
@@ -3277,6 +3449,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3277
3449
|
noiseaware_metadata?: Record<string, unknown> | undefined;
|
|
3278
3450
|
minut_metadata?: Record<string, unknown> | undefined;
|
|
3279
3451
|
noise_level_decibels?: number | undefined;
|
|
3452
|
+
event_description?: string | undefined;
|
|
3280
3453
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3281
3454
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3282
3455
|
noise_threshold_id?: string | undefined;
|
|
@@ -3294,6 +3467,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3294
3467
|
noiseaware_metadata?: Record<string, unknown> | undefined;
|
|
3295
3468
|
minut_metadata?: Record<string, unknown> | undefined;
|
|
3296
3469
|
noise_level_decibels?: number | undefined;
|
|
3470
|
+
event_description?: string | undefined;
|
|
3297
3471
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3298
3472
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3299
3473
|
noise_threshold_id?: string | undefined;
|
|
@@ -3303,6 +3477,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3303
3477
|
workspace_id: z.ZodString;
|
|
3304
3478
|
created_at: z.ZodString;
|
|
3305
3479
|
occurred_at: z.ZodString;
|
|
3480
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3306
3481
|
} & {
|
|
3307
3482
|
device_id: z.ZodString;
|
|
3308
3483
|
connected_account_id: z.ZodString;
|
|
@@ -3331,6 +3506,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3331
3506
|
customer_key?: string | undefined;
|
|
3332
3507
|
access_code_id?: string | undefined;
|
|
3333
3508
|
action_attempt_id?: string | undefined;
|
|
3509
|
+
event_description?: string | undefined;
|
|
3334
3510
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3335
3511
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3336
3512
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -3349,6 +3525,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3349
3525
|
customer_key?: string | undefined;
|
|
3350
3526
|
access_code_id?: string | undefined;
|
|
3351
3527
|
action_attempt_id?: string | undefined;
|
|
3528
|
+
event_description?: string | undefined;
|
|
3352
3529
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3353
3530
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3354
3531
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -3359,6 +3536,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3359
3536
|
workspace_id: z.ZodString;
|
|
3360
3537
|
created_at: z.ZodString;
|
|
3361
3538
|
occurred_at: z.ZodString;
|
|
3539
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3362
3540
|
connected_account_id: z.ZodString;
|
|
3363
3541
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
3364
3542
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -3394,6 +3572,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3394
3572
|
acs_entrance_id?: string | undefined;
|
|
3395
3573
|
acs_system_id?: string | undefined;
|
|
3396
3574
|
action_attempt_id?: string | undefined;
|
|
3575
|
+
event_description?: string | undefined;
|
|
3397
3576
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3398
3577
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3399
3578
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -3416,6 +3595,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3416
3595
|
acs_entrance_id?: string | undefined;
|
|
3417
3596
|
acs_system_id?: string | undefined;
|
|
3418
3597
|
action_attempt_id?: string | undefined;
|
|
3598
|
+
event_description?: string | undefined;
|
|
3419
3599
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3420
3600
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3421
3601
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -3426,6 +3606,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3426
3606
|
workspace_id: z.ZodString;
|
|
3427
3607
|
created_at: z.ZodString;
|
|
3428
3608
|
occurred_at: z.ZodString;
|
|
3609
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3429
3610
|
connected_account_id: z.ZodString;
|
|
3430
3611
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
3431
3612
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -3452,6 +3633,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3452
3633
|
acs_user_id?: string | undefined;
|
|
3453
3634
|
acs_entrance_id?: string | undefined;
|
|
3454
3635
|
acs_system_id?: string | undefined;
|
|
3636
|
+
event_description?: string | undefined;
|
|
3455
3637
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3456
3638
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3457
3639
|
}, {
|
|
@@ -3468,6 +3650,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3468
3650
|
acs_user_id?: string | undefined;
|
|
3469
3651
|
acs_entrance_id?: string | undefined;
|
|
3470
3652
|
acs_system_id?: string | undefined;
|
|
3653
|
+
event_description?: string | undefined;
|
|
3471
3654
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3472
3655
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3473
3656
|
}>, z.ZodObject<{
|
|
@@ -3475,6 +3658,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3475
3658
|
workspace_id: z.ZodString;
|
|
3476
3659
|
created_at: z.ZodString;
|
|
3477
3660
|
occurred_at: z.ZodString;
|
|
3661
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3478
3662
|
} & {
|
|
3479
3663
|
device_id: z.ZodString;
|
|
3480
3664
|
connected_account_id: z.ZodString;
|
|
@@ -3498,6 +3682,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3498
3682
|
event_type: "thermostat.climate_preset_activated";
|
|
3499
3683
|
is_fallback_climate_preset: boolean;
|
|
3500
3684
|
customer_key?: string | undefined;
|
|
3685
|
+
event_description?: string | undefined;
|
|
3501
3686
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3502
3687
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3503
3688
|
}, {
|
|
@@ -3512,6 +3697,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3512
3697
|
event_type: "thermostat.climate_preset_activated";
|
|
3513
3698
|
is_fallback_climate_preset: boolean;
|
|
3514
3699
|
customer_key?: string | undefined;
|
|
3700
|
+
event_description?: string | undefined;
|
|
3515
3701
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3516
3702
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3517
3703
|
}>, z.ZodObject<{
|
|
@@ -3519,6 +3705,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3519
3705
|
workspace_id: z.ZodString;
|
|
3520
3706
|
created_at: z.ZodString;
|
|
3521
3707
|
occurred_at: z.ZodString;
|
|
3708
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3522
3709
|
} & {
|
|
3523
3710
|
device_id: z.ZodString;
|
|
3524
3711
|
connected_account_id: z.ZodString;
|
|
@@ -3572,6 +3759,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3572
3759
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3573
3760
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3574
3761
|
customer_key?: string | undefined;
|
|
3762
|
+
event_description?: string | undefined;
|
|
3575
3763
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3576
3764
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3577
3765
|
}, {
|
|
@@ -3590,6 +3778,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3590
3778
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3591
3779
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3592
3780
|
customer_key?: string | undefined;
|
|
3781
|
+
event_description?: string | undefined;
|
|
3593
3782
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3594
3783
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3595
3784
|
}>, z.ZodObject<{
|
|
@@ -3597,6 +3786,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3597
3786
|
workspace_id: z.ZodString;
|
|
3598
3787
|
created_at: z.ZodString;
|
|
3599
3788
|
occurred_at: z.ZodString;
|
|
3789
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3600
3790
|
} & {
|
|
3601
3791
|
device_id: z.ZodString;
|
|
3602
3792
|
connected_account_id: z.ZodString;
|
|
@@ -3626,6 +3816,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3626
3816
|
occurred_at: string;
|
|
3627
3817
|
event_type: "thermostat.temperature_threshold_exceeded";
|
|
3628
3818
|
customer_key?: string | undefined;
|
|
3819
|
+
event_description?: string | undefined;
|
|
3629
3820
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3630
3821
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3631
3822
|
}, {
|
|
@@ -3643,6 +3834,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3643
3834
|
occurred_at: string;
|
|
3644
3835
|
event_type: "thermostat.temperature_threshold_exceeded";
|
|
3645
3836
|
customer_key?: string | undefined;
|
|
3837
|
+
event_description?: string | undefined;
|
|
3646
3838
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3647
3839
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3648
3840
|
}>, z.ZodObject<{
|
|
@@ -3650,6 +3842,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3650
3842
|
workspace_id: z.ZodString;
|
|
3651
3843
|
created_at: z.ZodString;
|
|
3652
3844
|
occurred_at: z.ZodString;
|
|
3845
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3653
3846
|
} & {
|
|
3654
3847
|
device_id: z.ZodString;
|
|
3655
3848
|
connected_account_id: z.ZodString;
|
|
@@ -3679,6 +3872,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3679
3872
|
occurred_at: string;
|
|
3680
3873
|
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
3681
3874
|
customer_key?: string | undefined;
|
|
3875
|
+
event_description?: string | undefined;
|
|
3682
3876
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3683
3877
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3684
3878
|
}, {
|
|
@@ -3696,6 +3890,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3696
3890
|
occurred_at: string;
|
|
3697
3891
|
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
3698
3892
|
customer_key?: string | undefined;
|
|
3893
|
+
event_description?: string | undefined;
|
|
3699
3894
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3700
3895
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3701
3896
|
}>, z.ZodObject<{
|
|
@@ -3703,6 +3898,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3703
3898
|
workspace_id: z.ZodString;
|
|
3704
3899
|
created_at: z.ZodString;
|
|
3705
3900
|
occurred_at: z.ZodString;
|
|
3901
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3706
3902
|
} & {
|
|
3707
3903
|
device_id: z.ZodString;
|
|
3708
3904
|
connected_account_id: z.ZodString;
|
|
@@ -3726,6 +3922,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3726
3922
|
occurred_at: string;
|
|
3727
3923
|
event_type: "thermostat.temperature_reached_set_point";
|
|
3728
3924
|
customer_key?: string | undefined;
|
|
3925
|
+
event_description?: string | undefined;
|
|
3729
3926
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3730
3927
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3731
3928
|
desired_temperature_celsius?: number | undefined;
|
|
@@ -3741,6 +3938,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3741
3938
|
occurred_at: string;
|
|
3742
3939
|
event_type: "thermostat.temperature_reached_set_point";
|
|
3743
3940
|
customer_key?: string | undefined;
|
|
3941
|
+
event_description?: string | undefined;
|
|
3744
3942
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3745
3943
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3746
3944
|
desired_temperature_celsius?: number | undefined;
|
|
@@ -3750,6 +3948,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3750
3948
|
workspace_id: z.ZodString;
|
|
3751
3949
|
created_at: z.ZodString;
|
|
3752
3950
|
occurred_at: z.ZodString;
|
|
3951
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3753
3952
|
} & {
|
|
3754
3953
|
device_id: z.ZodString;
|
|
3755
3954
|
connected_account_id: z.ZodString;
|
|
@@ -3771,6 +3970,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3771
3970
|
occurred_at: string;
|
|
3772
3971
|
event_type: "thermostat.temperature_changed";
|
|
3773
3972
|
customer_key?: string | undefined;
|
|
3973
|
+
event_description?: string | undefined;
|
|
3774
3974
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3775
3975
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3776
3976
|
}, {
|
|
@@ -3784,6 +3984,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3784
3984
|
occurred_at: string;
|
|
3785
3985
|
event_type: "thermostat.temperature_changed";
|
|
3786
3986
|
customer_key?: string | undefined;
|
|
3987
|
+
event_description?: string | undefined;
|
|
3787
3988
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3788
3989
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3789
3990
|
}>, z.ZodObject<{
|
|
@@ -3791,6 +3992,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3791
3992
|
workspace_id: z.ZodString;
|
|
3792
3993
|
created_at: z.ZodString;
|
|
3793
3994
|
occurred_at: z.ZodString;
|
|
3995
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3794
3996
|
} & {
|
|
3795
3997
|
device_id: z.ZodString;
|
|
3796
3998
|
connected_account_id: z.ZodString;
|
|
@@ -3810,6 +4012,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3810
4012
|
occurred_at: string;
|
|
3811
4013
|
event_type: "device.name_changed";
|
|
3812
4014
|
customer_key?: string | undefined;
|
|
4015
|
+
event_description?: string | undefined;
|
|
3813
4016
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3814
4017
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3815
4018
|
}, {
|
|
@@ -3822,6 +4025,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3822
4025
|
occurred_at: string;
|
|
3823
4026
|
event_type: "device.name_changed";
|
|
3824
4027
|
customer_key?: string | undefined;
|
|
4028
|
+
event_description?: string | undefined;
|
|
3825
4029
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3826
4030
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3827
4031
|
}>, z.ZodObject<{
|
|
@@ -3829,6 +4033,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3829
4033
|
workspace_id: z.ZodString;
|
|
3830
4034
|
created_at: z.ZodString;
|
|
3831
4035
|
occurred_at: z.ZodString;
|
|
4036
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3832
4037
|
} & {
|
|
3833
4038
|
device_id: z.ZodString;
|
|
3834
4039
|
connected_account_id: z.ZodString;
|
|
@@ -3852,6 +4057,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3852
4057
|
activation_reason: "motion_detected";
|
|
3853
4058
|
image_url?: string | undefined;
|
|
3854
4059
|
customer_key?: string | undefined;
|
|
4060
|
+
event_description?: string | undefined;
|
|
3855
4061
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3856
4062
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3857
4063
|
motion_sub_type?: "human" | "vehicle" | "package" | "other" | undefined;
|
|
@@ -3867,6 +4073,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3867
4073
|
activation_reason: "motion_detected";
|
|
3868
4074
|
image_url?: string | undefined;
|
|
3869
4075
|
customer_key?: string | undefined;
|
|
4076
|
+
event_description?: string | undefined;
|
|
3870
4077
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3871
4078
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3872
4079
|
motion_sub_type?: "human" | "vehicle" | "package" | "other" | undefined;
|
|
@@ -3876,6 +4083,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3876
4083
|
workspace_id: z.ZodString;
|
|
3877
4084
|
created_at: z.ZodString;
|
|
3878
4085
|
occurred_at: z.ZodString;
|
|
4086
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3879
4087
|
} & {
|
|
3880
4088
|
device_id: z.ZodString;
|
|
3881
4089
|
connected_account_id: z.ZodString;
|
|
@@ -3896,6 +4104,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3896
4104
|
event_type: "device.doorbell_rang";
|
|
3897
4105
|
image_url?: string | undefined;
|
|
3898
4106
|
customer_key?: string | undefined;
|
|
4107
|
+
event_description?: string | undefined;
|
|
3899
4108
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3900
4109
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3901
4110
|
video_url?: string | undefined;
|
|
@@ -3909,6 +4118,7 @@ export declare const device_events: readonly [z.ZodObject<{
|
|
|
3909
4118
|
event_type: "device.doorbell_rang";
|
|
3910
4119
|
image_url?: string | undefined;
|
|
3911
4120
|
customer_key?: string | undefined;
|
|
4121
|
+
event_description?: string | undefined;
|
|
3912
4122
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3913
4123
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3914
4124
|
video_url?: string | undefined;
|