@seamapi/types 1.323.0 → 1.325.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 +1627 -773
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3829 -1177
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +257 -5
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +257 -5
- package/lib/seam/connect/models/acs/acs-system.d.ts +10 -10
- package/lib/seam/connect/models/devices/device.d.ts +419 -11
- package/lib/seam/connect/models/devices/device.js +103 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +258 -6
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +258 -6
- package/lib/seam/connect/models/events/access-codes.js +32 -41
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/acs/common.js +9 -12
- package/lib/seam/connect/models/events/acs/common.js.map +1 -1
- package/lib/seam/connect/models/events/acs/credentials.js +2 -2
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/encoders.js +6 -3
- package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
- package/lib/seam/connect/models/events/acs/systems.js +3 -3
- package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
- package/lib/seam/connect/models/events/acs/users.js +5 -3
- package/lib/seam/connect/models/events/acs/users.js.map +1 -1
- package/lib/seam/connect/models/events/action-attempts.js +10 -22
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
- package/lib/seam/connect/models/events/client-sessions.js +5 -7
- package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
- package/lib/seam/connect/models/events/common.js +5 -2
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.js +10 -14
- package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.js +15 -19
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +43 -47
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
- package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
- package/lib/seam/connect/models/events/phones.js +4 -6
- package/lib/seam/connect/models/events/phones.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +124 -222
- package/lib/seam/connect/openapi.js +1241 -475
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2131 -545
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +118 -3
- package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
- package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
- package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
- package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
- package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
- package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
- package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
- package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
- package/src/lib/seam/connect/models/events/common.ts +5 -2
- package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
- package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
- package/src/lib/seam/connect/models/events/devices.ts +75 -47
- package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
- package/src/lib/seam/connect/models/events/phones.ts +6 -6
- package/src/lib/seam/connect/openapi.ts +1449 -475
- package/src/lib/seam/connect/route-types.ts +2580 -630
|
@@ -53,13 +53,205 @@ export default {
|
|
|
53
53
|
type: 'object',
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
56
|
+
description: 'Error associated with the `device`.',
|
|
57
|
+
oneOf: [
|
|
58
|
+
{
|
|
59
|
+
description: 'Device is offline',
|
|
60
|
+
properties: {
|
|
61
|
+
error_code: {
|
|
62
|
+
description:
|
|
63
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
64
|
+
enum: ['device_offline'],
|
|
65
|
+
type: 'string',
|
|
66
|
+
},
|
|
67
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
68
|
+
message: { type: 'string' },
|
|
69
|
+
},
|
|
70
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
71
|
+
type: 'object',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
description: 'Device has been removed',
|
|
75
|
+
properties: {
|
|
76
|
+
error_code: {
|
|
77
|
+
description:
|
|
78
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
79
|
+
enum: ['device_removed'],
|
|
80
|
+
type: 'string',
|
|
81
|
+
},
|
|
82
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
83
|
+
message: { type: 'string' },
|
|
84
|
+
},
|
|
85
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
86
|
+
type: 'object',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
description: 'Account is disconnected',
|
|
90
|
+
properties: {
|
|
91
|
+
error_code: {
|
|
92
|
+
description:
|
|
93
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
94
|
+
enum: ['account_disconnected'],
|
|
95
|
+
type: 'string',
|
|
96
|
+
},
|
|
97
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
98
|
+
message: { type: 'string' },
|
|
99
|
+
},
|
|
100
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
101
|
+
type: 'object',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
description: 'Hub is disconnected',
|
|
105
|
+
properties: {
|
|
106
|
+
error_code: {
|
|
107
|
+
description:
|
|
108
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
109
|
+
enum: ['hub_disconnected'],
|
|
110
|
+
type: 'string',
|
|
111
|
+
},
|
|
112
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
113
|
+
message: { type: 'string' },
|
|
114
|
+
},
|
|
115
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
116
|
+
type: 'object',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
description: 'Device is disconnected',
|
|
120
|
+
properties: {
|
|
121
|
+
error_code: {
|
|
122
|
+
description:
|
|
123
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
124
|
+
enum: ['device_disconnected'],
|
|
125
|
+
type: 'string',
|
|
126
|
+
},
|
|
127
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
128
|
+
message: { type: 'string' },
|
|
129
|
+
},
|
|
130
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
131
|
+
type: 'object',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
description: 'The backup access code pool is empty.',
|
|
135
|
+
properties: {
|
|
136
|
+
error_code: {
|
|
137
|
+
description:
|
|
138
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
139
|
+
enum: ['empty_backup_access_code_pool'],
|
|
140
|
+
type: 'string',
|
|
141
|
+
},
|
|
142
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
143
|
+
message: { type: 'string' },
|
|
144
|
+
},
|
|
145
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
146
|
+
type: 'object',
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
description:
|
|
150
|
+
'User is not authorized to use the August Lock.',
|
|
151
|
+
properties: {
|
|
152
|
+
error_code: {
|
|
153
|
+
description:
|
|
154
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
155
|
+
enum: ['august_lock_not_authorized'],
|
|
156
|
+
type: 'string',
|
|
157
|
+
},
|
|
158
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
159
|
+
message: { type: 'string' },
|
|
160
|
+
},
|
|
161
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
162
|
+
type: 'object',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
166
|
+
properties: {
|
|
167
|
+
error_code: {
|
|
168
|
+
description:
|
|
169
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
170
|
+
enum: ['august_lock_missing_bridge'],
|
|
171
|
+
type: 'string',
|
|
172
|
+
},
|
|
173
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
174
|
+
message: { type: 'string' },
|
|
175
|
+
},
|
|
176
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
177
|
+
type: 'object',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
description: 'Salto site user limit reached.',
|
|
181
|
+
properties: {
|
|
182
|
+
error_code: {
|
|
183
|
+
description:
|
|
184
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
185
|
+
enum: ['salto_site_user_limit_reached'],
|
|
186
|
+
type: 'string',
|
|
187
|
+
},
|
|
188
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
189
|
+
message: { type: 'string' },
|
|
190
|
+
},
|
|
191
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
192
|
+
type: 'object',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
description: 'Lock is not paired with a Gateway.',
|
|
196
|
+
properties: {
|
|
197
|
+
error_code: {
|
|
198
|
+
description:
|
|
199
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
200
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
201
|
+
type: 'string',
|
|
202
|
+
},
|
|
203
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
204
|
+
message: { type: 'string' },
|
|
205
|
+
},
|
|
206
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
207
|
+
type: 'object',
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
description: 'Missing device credentials.',
|
|
211
|
+
properties: {
|
|
212
|
+
error_code: {
|
|
213
|
+
description:
|
|
214
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
215
|
+
enum: ['missing_device_credentials'],
|
|
216
|
+
type: 'string',
|
|
217
|
+
},
|
|
218
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
219
|
+
message: { type: 'string' },
|
|
220
|
+
},
|
|
221
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
222
|
+
type: 'object',
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
description: 'The auxiliary heat is running.',
|
|
226
|
+
properties: {
|
|
227
|
+
error_code: {
|
|
228
|
+
description:
|
|
229
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
230
|
+
enum: ['auxiliary_heat_running'],
|
|
231
|
+
type: 'string',
|
|
232
|
+
},
|
|
233
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
234
|
+
message: { type: 'string' },
|
|
235
|
+
},
|
|
236
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
237
|
+
type: 'object',
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
description: 'Subscription required to connect.',
|
|
241
|
+
properties: {
|
|
242
|
+
error_code: {
|
|
243
|
+
description:
|
|
244
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
245
|
+
enum: ['subscription_required'],
|
|
246
|
+
type: 'string',
|
|
247
|
+
},
|
|
248
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
249
|
+
message: { type: 'string' },
|
|
250
|
+
},
|
|
251
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
252
|
+
type: 'object',
|
|
253
|
+
},
|
|
254
|
+
],
|
|
63
255
|
},
|
|
64
256
|
{
|
|
65
257
|
properties: {
|
|
@@ -4415,13 +4607,205 @@ export default {
|
|
|
4415
4607
|
items: {
|
|
4416
4608
|
oneOf: [
|
|
4417
4609
|
{
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4610
|
+
description: 'Error associated with the `device`.',
|
|
4611
|
+
oneOf: [
|
|
4612
|
+
{
|
|
4613
|
+
description: 'Device is offline',
|
|
4614
|
+
properties: {
|
|
4615
|
+
error_code: {
|
|
4616
|
+
description:
|
|
4617
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4618
|
+
enum: ['device_offline'],
|
|
4619
|
+
type: 'string',
|
|
4620
|
+
},
|
|
4621
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4622
|
+
message: { type: 'string' },
|
|
4623
|
+
},
|
|
4624
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4625
|
+
type: 'object',
|
|
4626
|
+
},
|
|
4627
|
+
{
|
|
4628
|
+
description: 'Device has been removed',
|
|
4629
|
+
properties: {
|
|
4630
|
+
error_code: {
|
|
4631
|
+
description:
|
|
4632
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4633
|
+
enum: ['device_removed'],
|
|
4634
|
+
type: 'string',
|
|
4635
|
+
},
|
|
4636
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4637
|
+
message: { type: 'string' },
|
|
4638
|
+
},
|
|
4639
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4640
|
+
type: 'object',
|
|
4641
|
+
},
|
|
4642
|
+
{
|
|
4643
|
+
description: 'Account is disconnected',
|
|
4644
|
+
properties: {
|
|
4645
|
+
error_code: {
|
|
4646
|
+
description:
|
|
4647
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4648
|
+
enum: ['account_disconnected'],
|
|
4649
|
+
type: 'string',
|
|
4650
|
+
},
|
|
4651
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4652
|
+
message: { type: 'string' },
|
|
4653
|
+
},
|
|
4654
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4655
|
+
type: 'object',
|
|
4656
|
+
},
|
|
4657
|
+
{
|
|
4658
|
+
description: 'Hub is disconnected',
|
|
4659
|
+
properties: {
|
|
4660
|
+
error_code: {
|
|
4661
|
+
description:
|
|
4662
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4663
|
+
enum: ['hub_disconnected'],
|
|
4664
|
+
type: 'string',
|
|
4665
|
+
},
|
|
4666
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4667
|
+
message: { type: 'string' },
|
|
4668
|
+
},
|
|
4669
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4670
|
+
type: 'object',
|
|
4671
|
+
},
|
|
4672
|
+
{
|
|
4673
|
+
description: 'Device is disconnected',
|
|
4674
|
+
properties: {
|
|
4675
|
+
error_code: {
|
|
4676
|
+
description:
|
|
4677
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4678
|
+
enum: ['device_disconnected'],
|
|
4679
|
+
type: 'string',
|
|
4680
|
+
},
|
|
4681
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4682
|
+
message: { type: 'string' },
|
|
4683
|
+
},
|
|
4684
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4685
|
+
type: 'object',
|
|
4686
|
+
},
|
|
4687
|
+
{
|
|
4688
|
+
description: 'The backup access code pool is empty.',
|
|
4689
|
+
properties: {
|
|
4690
|
+
error_code: {
|
|
4691
|
+
description:
|
|
4692
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4693
|
+
enum: ['empty_backup_access_code_pool'],
|
|
4694
|
+
type: 'string',
|
|
4695
|
+
},
|
|
4696
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4697
|
+
message: { type: 'string' },
|
|
4698
|
+
},
|
|
4699
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4700
|
+
type: 'object',
|
|
4701
|
+
},
|
|
4702
|
+
{
|
|
4703
|
+
description:
|
|
4704
|
+
'User is not authorized to use the August Lock.',
|
|
4705
|
+
properties: {
|
|
4706
|
+
error_code: {
|
|
4707
|
+
description:
|
|
4708
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4709
|
+
enum: ['august_lock_not_authorized'],
|
|
4710
|
+
type: 'string',
|
|
4711
|
+
},
|
|
4712
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4713
|
+
message: { type: 'string' },
|
|
4714
|
+
},
|
|
4715
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4716
|
+
type: 'object',
|
|
4717
|
+
},
|
|
4718
|
+
{
|
|
4719
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
4720
|
+
properties: {
|
|
4721
|
+
error_code: {
|
|
4722
|
+
description:
|
|
4723
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4724
|
+
enum: ['august_lock_missing_bridge'],
|
|
4725
|
+
type: 'string',
|
|
4726
|
+
},
|
|
4727
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4728
|
+
message: { type: 'string' },
|
|
4729
|
+
},
|
|
4730
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4731
|
+
type: 'object',
|
|
4732
|
+
},
|
|
4733
|
+
{
|
|
4734
|
+
description: 'Salto site user limit reached.',
|
|
4735
|
+
properties: {
|
|
4736
|
+
error_code: {
|
|
4737
|
+
description:
|
|
4738
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4739
|
+
enum: ['salto_site_user_limit_reached'],
|
|
4740
|
+
type: 'string',
|
|
4741
|
+
},
|
|
4742
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4743
|
+
message: { type: 'string' },
|
|
4744
|
+
},
|
|
4745
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4746
|
+
type: 'object',
|
|
4747
|
+
},
|
|
4748
|
+
{
|
|
4749
|
+
description: 'Lock is not paired with a Gateway.',
|
|
4750
|
+
properties: {
|
|
4751
|
+
error_code: {
|
|
4752
|
+
description:
|
|
4753
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4754
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
4755
|
+
type: 'string',
|
|
4756
|
+
},
|
|
4757
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4758
|
+
message: { type: 'string' },
|
|
4759
|
+
},
|
|
4760
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4761
|
+
type: 'object',
|
|
4762
|
+
},
|
|
4763
|
+
{
|
|
4764
|
+
description: 'Missing device credentials.',
|
|
4765
|
+
properties: {
|
|
4766
|
+
error_code: {
|
|
4767
|
+
description:
|
|
4768
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4769
|
+
enum: ['missing_device_credentials'],
|
|
4770
|
+
type: 'string',
|
|
4771
|
+
},
|
|
4772
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4773
|
+
message: { type: 'string' },
|
|
4774
|
+
},
|
|
4775
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4776
|
+
type: 'object',
|
|
4777
|
+
},
|
|
4778
|
+
{
|
|
4779
|
+
description: 'The auxiliary heat is running.',
|
|
4780
|
+
properties: {
|
|
4781
|
+
error_code: {
|
|
4782
|
+
description:
|
|
4783
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4784
|
+
enum: ['auxiliary_heat_running'],
|
|
4785
|
+
type: 'string',
|
|
4786
|
+
},
|
|
4787
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4788
|
+
message: { type: 'string' },
|
|
4789
|
+
},
|
|
4790
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4791
|
+
type: 'object',
|
|
4792
|
+
},
|
|
4793
|
+
{
|
|
4794
|
+
description: 'Subscription required to connect.',
|
|
4795
|
+
properties: {
|
|
4796
|
+
error_code: {
|
|
4797
|
+
description:
|
|
4798
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
4799
|
+
enum: ['subscription_required'],
|
|
4800
|
+
type: 'string',
|
|
4801
|
+
},
|
|
4802
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
4803
|
+
message: { type: 'string' },
|
|
4804
|
+
},
|
|
4805
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
4806
|
+
type: 'object',
|
|
4807
|
+
},
|
|
4808
|
+
],
|
|
4425
4809
|
},
|
|
4426
4810
|
{
|
|
4427
4811
|
properties: {
|
|
@@ -5901,30 +6285,31 @@ export default {
|
|
|
5901
6285
|
discriminator: { propertyName: 'event_type' },
|
|
5902
6286
|
oneOf: [
|
|
5903
6287
|
{
|
|
5904
|
-
description:
|
|
6288
|
+
description:
|
|
6289
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was created.',
|
|
5905
6290
|
properties: {
|
|
5906
6291
|
access_code_id: {
|
|
5907
|
-
description:
|
|
6292
|
+
description:
|
|
6293
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
5908
6294
|
format: 'uuid',
|
|
5909
6295
|
type: 'string',
|
|
5910
|
-
'x-title': 'Access Code ID',
|
|
5911
6296
|
},
|
|
5912
6297
|
connected_account_id: {
|
|
5913
|
-
description:
|
|
6298
|
+
description:
|
|
6299
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
5914
6300
|
format: 'uuid',
|
|
5915
6301
|
type: 'string',
|
|
5916
|
-
'x-title': 'Connected Account ID',
|
|
5917
6302
|
},
|
|
5918
6303
|
created_at: {
|
|
5919
|
-
description: '
|
|
6304
|
+
description: 'Date and time at which the event was created.',
|
|
5920
6305
|
format: 'date-time',
|
|
5921
6306
|
type: 'string',
|
|
5922
6307
|
},
|
|
5923
6308
|
device_id: {
|
|
5924
|
-
description:
|
|
6309
|
+
description:
|
|
6310
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
5925
6311
|
format: 'uuid',
|
|
5926
6312
|
type: 'string',
|
|
5927
|
-
'x-title': 'Device ID',
|
|
5928
6313
|
},
|
|
5929
6314
|
event_id: {
|
|
5930
6315
|
description: 'ID of the event.',
|
|
@@ -5933,7 +6318,7 @@ export default {
|
|
|
5933
6318
|
},
|
|
5934
6319
|
event_type: { enum: ['access_code.created'], type: 'string' },
|
|
5935
6320
|
occurred_at: {
|
|
5936
|
-
description: '
|
|
6321
|
+
description: 'Date and time at which the event occurred.',
|
|
5937
6322
|
format: 'date-time',
|
|
5938
6323
|
type: 'string',
|
|
5939
6324
|
},
|
|
@@ -5957,30 +6342,31 @@ export default {
|
|
|
5957
6342
|
type: 'object',
|
|
5958
6343
|
},
|
|
5959
6344
|
{
|
|
5960
|
-
description:
|
|
6345
|
+
description:
|
|
6346
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was changed.',
|
|
5961
6347
|
properties: {
|
|
5962
6348
|
access_code_id: {
|
|
5963
|
-
description:
|
|
6349
|
+
description:
|
|
6350
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
5964
6351
|
format: 'uuid',
|
|
5965
6352
|
type: 'string',
|
|
5966
|
-
'x-title': 'Access Code ID',
|
|
5967
6353
|
},
|
|
5968
6354
|
connected_account_id: {
|
|
5969
|
-
description:
|
|
6355
|
+
description:
|
|
6356
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
5970
6357
|
format: 'uuid',
|
|
5971
6358
|
type: 'string',
|
|
5972
|
-
'x-title': 'Connected Account ID',
|
|
5973
6359
|
},
|
|
5974
6360
|
created_at: {
|
|
5975
|
-
description: '
|
|
6361
|
+
description: 'Date and time at which the event was created.',
|
|
5976
6362
|
format: 'date-time',
|
|
5977
6363
|
type: 'string',
|
|
5978
6364
|
},
|
|
5979
6365
|
device_id: {
|
|
5980
|
-
description:
|
|
6366
|
+
description:
|
|
6367
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
5981
6368
|
format: 'uuid',
|
|
5982
6369
|
type: 'string',
|
|
5983
|
-
'x-title': 'Device ID',
|
|
5984
6370
|
},
|
|
5985
6371
|
event_id: {
|
|
5986
6372
|
description: 'ID of the event.',
|
|
@@ -5989,7 +6375,7 @@ export default {
|
|
|
5989
6375
|
},
|
|
5990
6376
|
event_type: { enum: ['access_code.changed'], type: 'string' },
|
|
5991
6377
|
occurred_at: {
|
|
5992
|
-
description: '
|
|
6378
|
+
description: 'Date and time at which the event occurred.',
|
|
5993
6379
|
format: 'date-time',
|
|
5994
6380
|
type: 'string',
|
|
5995
6381
|
},
|
|
@@ -6013,35 +6399,36 @@ export default {
|
|
|
6013
6399
|
type: 'object',
|
|
6014
6400
|
},
|
|
6015
6401
|
{
|
|
6016
|
-
description:
|
|
6402
|
+
description:
|
|
6403
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was [scheduled natively](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) on a device.',
|
|
6017
6404
|
properties: {
|
|
6018
6405
|
access_code_id: {
|
|
6019
|
-
description:
|
|
6406
|
+
description:
|
|
6407
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6020
6408
|
format: 'uuid',
|
|
6021
6409
|
type: 'string',
|
|
6022
|
-
'x-title': 'Access Code ID',
|
|
6023
6410
|
},
|
|
6024
6411
|
code: {
|
|
6025
|
-
description:
|
|
6412
|
+
description:
|
|
6413
|
+
'Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6026
6414
|
type: 'string',
|
|
6027
|
-
'x-title': 'Access Code',
|
|
6028
6415
|
},
|
|
6029
6416
|
connected_account_id: {
|
|
6030
|
-
description:
|
|
6417
|
+
description:
|
|
6418
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6031
6419
|
format: 'uuid',
|
|
6032
6420
|
type: 'string',
|
|
6033
|
-
'x-title': 'Connected Account ID',
|
|
6034
6421
|
},
|
|
6035
6422
|
created_at: {
|
|
6036
|
-
description: '
|
|
6423
|
+
description: 'Date and time at which the event was created.',
|
|
6037
6424
|
format: 'date-time',
|
|
6038
6425
|
type: 'string',
|
|
6039
6426
|
},
|
|
6040
6427
|
device_id: {
|
|
6041
|
-
description:
|
|
6428
|
+
description:
|
|
6429
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6042
6430
|
format: 'uuid',
|
|
6043
6431
|
type: 'string',
|
|
6044
|
-
'x-title': 'Device ID',
|
|
6045
6432
|
},
|
|
6046
6433
|
event_id: {
|
|
6047
6434
|
description: 'ID of the event.',
|
|
@@ -6053,7 +6440,7 @@ export default {
|
|
|
6053
6440
|
type: 'string',
|
|
6054
6441
|
},
|
|
6055
6442
|
occurred_at: {
|
|
6056
|
-
description: '
|
|
6443
|
+
description: 'Date and time at which the event occurred.',
|
|
6057
6444
|
format: 'date-time',
|
|
6058
6445
|
type: 'string',
|
|
6059
6446
|
},
|
|
@@ -6078,35 +6465,36 @@ export default {
|
|
|
6078
6465
|
type: 'object',
|
|
6079
6466
|
},
|
|
6080
6467
|
{
|
|
6081
|
-
description:
|
|
6468
|
+
description:
|
|
6469
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was set on a device.',
|
|
6082
6470
|
properties: {
|
|
6083
6471
|
access_code_id: {
|
|
6084
|
-
description:
|
|
6472
|
+
description:
|
|
6473
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6085
6474
|
format: 'uuid',
|
|
6086
6475
|
type: 'string',
|
|
6087
|
-
'x-title': 'Access Code ID',
|
|
6088
6476
|
},
|
|
6089
6477
|
code: {
|
|
6090
|
-
description:
|
|
6478
|
+
description:
|
|
6479
|
+
'Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6091
6480
|
type: 'string',
|
|
6092
|
-
'x-title': 'Access Code',
|
|
6093
6481
|
},
|
|
6094
6482
|
connected_account_id: {
|
|
6095
|
-
description:
|
|
6483
|
+
description:
|
|
6484
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6096
6485
|
format: 'uuid',
|
|
6097
6486
|
type: 'string',
|
|
6098
|
-
'x-title': 'Connected Account ID',
|
|
6099
6487
|
},
|
|
6100
6488
|
created_at: {
|
|
6101
|
-
description: '
|
|
6489
|
+
description: 'Date and time at which the event was created.',
|
|
6102
6490
|
format: 'date-time',
|
|
6103
6491
|
type: 'string',
|
|
6104
6492
|
},
|
|
6105
6493
|
device_id: {
|
|
6106
|
-
description:
|
|
6494
|
+
description:
|
|
6495
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6107
6496
|
format: 'uuid',
|
|
6108
6497
|
type: 'string',
|
|
6109
|
-
'x-title': 'Device ID',
|
|
6110
6498
|
},
|
|
6111
6499
|
event_id: {
|
|
6112
6500
|
description: 'ID of the event.',
|
|
@@ -6118,7 +6506,7 @@ export default {
|
|
|
6118
6506
|
type: 'string',
|
|
6119
6507
|
},
|
|
6120
6508
|
occurred_at: {
|
|
6121
|
-
description: '
|
|
6509
|
+
description: 'Date and time at which the event occurred.',
|
|
6122
6510
|
format: 'date-time',
|
|
6123
6511
|
type: 'string',
|
|
6124
6512
|
},
|
|
@@ -6143,30 +6531,31 @@ export default {
|
|
|
6143
6531
|
type: 'object',
|
|
6144
6532
|
},
|
|
6145
6533
|
{
|
|
6146
|
-
description:
|
|
6534
|
+
description:
|
|
6535
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was removed from a device.',
|
|
6147
6536
|
properties: {
|
|
6148
6537
|
access_code_id: {
|
|
6149
|
-
description:
|
|
6538
|
+
description:
|
|
6539
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6150
6540
|
format: 'uuid',
|
|
6151
6541
|
type: 'string',
|
|
6152
|
-
'x-title': 'Access Code ID',
|
|
6153
6542
|
},
|
|
6154
6543
|
connected_account_id: {
|
|
6155
|
-
description:
|
|
6544
|
+
description:
|
|
6545
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6156
6546
|
format: 'uuid',
|
|
6157
6547
|
type: 'string',
|
|
6158
|
-
'x-title': 'Connected Account ID',
|
|
6159
6548
|
},
|
|
6160
6549
|
created_at: {
|
|
6161
|
-
description: '
|
|
6550
|
+
description: 'Date and time at which the event was created.',
|
|
6162
6551
|
format: 'date-time',
|
|
6163
6552
|
type: 'string',
|
|
6164
6553
|
},
|
|
6165
6554
|
device_id: {
|
|
6166
|
-
description:
|
|
6555
|
+
description:
|
|
6556
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6167
6557
|
format: 'uuid',
|
|
6168
6558
|
type: 'string',
|
|
6169
|
-
'x-title': 'Device ID',
|
|
6170
6559
|
},
|
|
6171
6560
|
event_id: {
|
|
6172
6561
|
description: 'ID of the event.',
|
|
@@ -6178,7 +6567,7 @@ export default {
|
|
|
6178
6567
|
type: 'string',
|
|
6179
6568
|
},
|
|
6180
6569
|
occurred_at: {
|
|
6181
|
-
description: '
|
|
6570
|
+
description: 'Date and time at which the event occurred.',
|
|
6182
6571
|
format: 'date-time',
|
|
6183
6572
|
type: 'string',
|
|
6184
6573
|
},
|
|
@@ -6203,30 +6592,30 @@ export default {
|
|
|
6203
6592
|
},
|
|
6204
6593
|
{
|
|
6205
6594
|
description:
|
|
6206
|
-
'There was an unusually long delay in setting an access code on a device.',
|
|
6595
|
+
'There was an unusually long delay in setting an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) on a device.',
|
|
6207
6596
|
properties: {
|
|
6208
6597
|
access_code_id: {
|
|
6209
|
-
description:
|
|
6598
|
+
description:
|
|
6599
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6210
6600
|
format: 'uuid',
|
|
6211
6601
|
type: 'string',
|
|
6212
|
-
'x-title': 'Access Code ID',
|
|
6213
6602
|
},
|
|
6214
6603
|
connected_account_id: {
|
|
6215
|
-
description:
|
|
6604
|
+
description:
|
|
6605
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6216
6606
|
format: 'uuid',
|
|
6217
6607
|
type: 'string',
|
|
6218
|
-
'x-title': 'Connected Account ID',
|
|
6219
6608
|
},
|
|
6220
6609
|
created_at: {
|
|
6221
|
-
description: '
|
|
6610
|
+
description: 'Date and time at which the event was created.',
|
|
6222
6611
|
format: 'date-time',
|
|
6223
6612
|
type: 'string',
|
|
6224
6613
|
},
|
|
6225
6614
|
device_id: {
|
|
6226
|
-
description:
|
|
6615
|
+
description:
|
|
6616
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6227
6617
|
format: 'uuid',
|
|
6228
6618
|
type: 'string',
|
|
6229
|
-
'x-title': 'Device ID',
|
|
6230
6619
|
},
|
|
6231
6620
|
event_id: {
|
|
6232
6621
|
description: 'ID of the event.',
|
|
@@ -6238,7 +6627,7 @@ export default {
|
|
|
6238
6627
|
type: 'string',
|
|
6239
6628
|
},
|
|
6240
6629
|
occurred_at: {
|
|
6241
|
-
description: '
|
|
6630
|
+
description: 'Date and time at which the event occurred.',
|
|
6242
6631
|
format: 'date-time',
|
|
6243
6632
|
type: 'string',
|
|
6244
6633
|
},
|
|
@@ -6262,30 +6651,31 @@ export default {
|
|
|
6262
6651
|
type: 'object',
|
|
6263
6652
|
},
|
|
6264
6653
|
{
|
|
6265
|
-
description:
|
|
6654
|
+
description:
|
|
6655
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be set on a device.',
|
|
6266
6656
|
properties: {
|
|
6267
6657
|
access_code_id: {
|
|
6268
|
-
description:
|
|
6658
|
+
description:
|
|
6659
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6269
6660
|
format: 'uuid',
|
|
6270
6661
|
type: 'string',
|
|
6271
|
-
'x-title': 'Access Code ID',
|
|
6272
6662
|
},
|
|
6273
6663
|
connected_account_id: {
|
|
6274
|
-
description:
|
|
6664
|
+
description:
|
|
6665
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6275
6666
|
format: 'uuid',
|
|
6276
6667
|
type: 'string',
|
|
6277
|
-
'x-title': 'Connected Account ID',
|
|
6278
6668
|
},
|
|
6279
6669
|
created_at: {
|
|
6280
|
-
description: '
|
|
6670
|
+
description: 'Date and time at which the event was created.',
|
|
6281
6671
|
format: 'date-time',
|
|
6282
6672
|
type: 'string',
|
|
6283
6673
|
},
|
|
6284
6674
|
device_id: {
|
|
6285
|
-
description:
|
|
6675
|
+
description:
|
|
6676
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6286
6677
|
format: 'uuid',
|
|
6287
6678
|
type: 'string',
|
|
6288
|
-
'x-title': 'Device ID',
|
|
6289
6679
|
},
|
|
6290
6680
|
event_id: {
|
|
6291
6681
|
description: 'ID of the event.',
|
|
@@ -6297,7 +6687,7 @@ export default {
|
|
|
6297
6687
|
type: 'string',
|
|
6298
6688
|
},
|
|
6299
6689
|
occurred_at: {
|
|
6300
|
-
description: '
|
|
6690
|
+
description: 'Date and time at which the event occurred.',
|
|
6301
6691
|
format: 'date-time',
|
|
6302
6692
|
type: 'string',
|
|
6303
6693
|
},
|
|
@@ -6321,36 +6711,37 @@ export default {
|
|
|
6321
6711
|
type: 'object',
|
|
6322
6712
|
},
|
|
6323
6713
|
{
|
|
6324
|
-
description:
|
|
6714
|
+
description:
|
|
6715
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted.',
|
|
6325
6716
|
properties: {
|
|
6326
6717
|
access_code_id: {
|
|
6327
|
-
description:
|
|
6718
|
+
description:
|
|
6719
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6328
6720
|
format: 'uuid',
|
|
6329
6721
|
type: 'string',
|
|
6330
|
-
'x-title': 'Access Code ID',
|
|
6331
6722
|
},
|
|
6332
6723
|
code: {
|
|
6333
|
-
description:
|
|
6724
|
+
description:
|
|
6725
|
+
'Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6334
6726
|
nullable: true,
|
|
6335
6727
|
type: 'string',
|
|
6336
|
-
'x-title': 'Access Code',
|
|
6337
6728
|
},
|
|
6338
6729
|
connected_account_id: {
|
|
6339
|
-
description:
|
|
6730
|
+
description:
|
|
6731
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6340
6732
|
format: 'uuid',
|
|
6341
6733
|
type: 'string',
|
|
6342
|
-
'x-title': 'Connected Account ID',
|
|
6343
6734
|
},
|
|
6344
6735
|
created_at: {
|
|
6345
|
-
description: '
|
|
6736
|
+
description: 'Date and time at which the event was created.',
|
|
6346
6737
|
format: 'date-time',
|
|
6347
6738
|
type: 'string',
|
|
6348
6739
|
},
|
|
6349
6740
|
device_id: {
|
|
6350
|
-
description:
|
|
6741
|
+
description:
|
|
6742
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6351
6743
|
format: 'uuid',
|
|
6352
6744
|
type: 'string',
|
|
6353
|
-
'x-title': 'Device ID',
|
|
6354
6745
|
},
|
|
6355
6746
|
event_id: {
|
|
6356
6747
|
description: 'ID of the event.',
|
|
@@ -6359,7 +6750,7 @@ export default {
|
|
|
6359
6750
|
},
|
|
6360
6751
|
event_type: { enum: ['access_code.deleted'], type: 'string' },
|
|
6361
6752
|
occurred_at: {
|
|
6362
|
-
description: '
|
|
6753
|
+
description: 'Date and time at which the event occurred.',
|
|
6363
6754
|
format: 'date-time',
|
|
6364
6755
|
type: 'string',
|
|
6365
6756
|
},
|
|
@@ -6385,30 +6776,30 @@ export default {
|
|
|
6385
6776
|
},
|
|
6386
6777
|
{
|
|
6387
6778
|
description:
|
|
6388
|
-
'There was an unusually long delay in removing an access code from a device.',
|
|
6779
|
+
'There was an unusually long delay in removing an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) from a device.',
|
|
6389
6780
|
properties: {
|
|
6390
6781
|
access_code_id: {
|
|
6391
|
-
description:
|
|
6782
|
+
description:
|
|
6783
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6392
6784
|
format: 'uuid',
|
|
6393
6785
|
type: 'string',
|
|
6394
|
-
'x-title': 'Access Code ID',
|
|
6395
6786
|
},
|
|
6396
6787
|
connected_account_id: {
|
|
6397
|
-
description:
|
|
6788
|
+
description:
|
|
6789
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6398
6790
|
format: 'uuid',
|
|
6399
6791
|
type: 'string',
|
|
6400
|
-
'x-title': 'Connected Account ID',
|
|
6401
6792
|
},
|
|
6402
6793
|
created_at: {
|
|
6403
|
-
description: '
|
|
6794
|
+
description: 'Date and time at which the event was created.',
|
|
6404
6795
|
format: 'date-time',
|
|
6405
6796
|
type: 'string',
|
|
6406
6797
|
},
|
|
6407
6798
|
device_id: {
|
|
6408
|
-
description:
|
|
6799
|
+
description:
|
|
6800
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6409
6801
|
format: 'uuid',
|
|
6410
6802
|
type: 'string',
|
|
6411
|
-
'x-title': 'Device ID',
|
|
6412
6803
|
},
|
|
6413
6804
|
event_id: {
|
|
6414
6805
|
description: 'ID of the event.',
|
|
@@ -6420,7 +6811,7 @@ export default {
|
|
|
6420
6811
|
type: 'string',
|
|
6421
6812
|
},
|
|
6422
6813
|
occurred_at: {
|
|
6423
|
-
description: '
|
|
6814
|
+
description: 'Date and time at which the event occurred.',
|
|
6424
6815
|
format: 'date-time',
|
|
6425
6816
|
type: 'string',
|
|
6426
6817
|
},
|
|
@@ -6444,30 +6835,31 @@ export default {
|
|
|
6444
6835
|
type: 'object',
|
|
6445
6836
|
},
|
|
6446
6837
|
{
|
|
6447
|
-
description:
|
|
6838
|
+
description:
|
|
6839
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be removed from a device.',
|
|
6448
6840
|
properties: {
|
|
6449
6841
|
access_code_id: {
|
|
6450
|
-
description:
|
|
6842
|
+
description:
|
|
6843
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6451
6844
|
format: 'uuid',
|
|
6452
6845
|
type: 'string',
|
|
6453
|
-
'x-title': 'Access Code ID',
|
|
6454
6846
|
},
|
|
6455
6847
|
connected_account_id: {
|
|
6456
|
-
description:
|
|
6848
|
+
description:
|
|
6849
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6457
6850
|
format: 'uuid',
|
|
6458
6851
|
type: 'string',
|
|
6459
|
-
'x-title': 'Connected Account ID',
|
|
6460
6852
|
},
|
|
6461
6853
|
created_at: {
|
|
6462
|
-
description: '
|
|
6854
|
+
description: 'Date and time at which the event was created.',
|
|
6463
6855
|
format: 'date-time',
|
|
6464
6856
|
type: 'string',
|
|
6465
6857
|
},
|
|
6466
6858
|
device_id: {
|
|
6467
|
-
description:
|
|
6859
|
+
description:
|
|
6860
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6468
6861
|
format: 'uuid',
|
|
6469
6862
|
type: 'string',
|
|
6470
|
-
'x-title': 'Device ID',
|
|
6471
6863
|
},
|
|
6472
6864
|
event_id: {
|
|
6473
6865
|
description: 'ID of the event.',
|
|
@@ -6479,7 +6871,7 @@ export default {
|
|
|
6479
6871
|
type: 'string',
|
|
6480
6872
|
},
|
|
6481
6873
|
occurred_at: {
|
|
6482
|
-
description: '
|
|
6874
|
+
description: 'Date and time at which the event occurred.',
|
|
6483
6875
|
format: 'date-time',
|
|
6484
6876
|
type: 'string',
|
|
6485
6877
|
},
|
|
@@ -6503,30 +6895,31 @@ export default {
|
|
|
6503
6895
|
type: 'object',
|
|
6504
6896
|
},
|
|
6505
6897
|
{
|
|
6506
|
-
description:
|
|
6898
|
+
description:
|
|
6899
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was modified outside of Seam.',
|
|
6507
6900
|
properties: {
|
|
6508
6901
|
access_code_id: {
|
|
6509
|
-
description:
|
|
6902
|
+
description:
|
|
6903
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6510
6904
|
format: 'uuid',
|
|
6511
6905
|
type: 'string',
|
|
6512
|
-
'x-title': 'Access Code ID',
|
|
6513
6906
|
},
|
|
6514
6907
|
connected_account_id: {
|
|
6515
|
-
description:
|
|
6908
|
+
description:
|
|
6909
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6516
6910
|
format: 'uuid',
|
|
6517
6911
|
type: 'string',
|
|
6518
|
-
'x-title': 'Connected Account ID',
|
|
6519
6912
|
},
|
|
6520
6913
|
created_at: {
|
|
6521
|
-
description: '
|
|
6914
|
+
description: 'Date and time at which the event was created.',
|
|
6522
6915
|
format: 'date-time',
|
|
6523
6916
|
type: 'string',
|
|
6524
6917
|
},
|
|
6525
6918
|
device_id: {
|
|
6526
|
-
description:
|
|
6919
|
+
description:
|
|
6920
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6527
6921
|
format: 'uuid',
|
|
6528
6922
|
type: 'string',
|
|
6529
|
-
'x-title': 'Device ID',
|
|
6530
6923
|
},
|
|
6531
6924
|
event_id: {
|
|
6532
6925
|
description: 'ID of the event.',
|
|
@@ -6538,7 +6931,7 @@ export default {
|
|
|
6538
6931
|
type: 'string',
|
|
6539
6932
|
},
|
|
6540
6933
|
occurred_at: {
|
|
6541
|
-
description: '
|
|
6934
|
+
description: 'Date and time at which the event occurred.',
|
|
6542
6935
|
format: 'date-time',
|
|
6543
6936
|
type: 'string',
|
|
6544
6937
|
},
|
|
@@ -6562,30 +6955,31 @@ export default {
|
|
|
6562
6955
|
type: 'object',
|
|
6563
6956
|
},
|
|
6564
6957
|
{
|
|
6565
|
-
description:
|
|
6958
|
+
description:
|
|
6959
|
+
'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted outside of Seam.',
|
|
6566
6960
|
properties: {
|
|
6567
6961
|
access_code_id: {
|
|
6568
|
-
description:
|
|
6962
|
+
description:
|
|
6963
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6569
6964
|
format: 'uuid',
|
|
6570
6965
|
type: 'string',
|
|
6571
|
-
'x-title': 'Access Code ID',
|
|
6572
6966
|
},
|
|
6573
6967
|
connected_account_id: {
|
|
6574
|
-
description:
|
|
6968
|
+
description:
|
|
6969
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6575
6970
|
format: 'uuid',
|
|
6576
6971
|
type: 'string',
|
|
6577
|
-
'x-title': 'Connected Account ID',
|
|
6578
6972
|
},
|
|
6579
6973
|
created_at: {
|
|
6580
|
-
description: '
|
|
6974
|
+
description: 'Date and time at which the event was created.',
|
|
6581
6975
|
format: 'date-time',
|
|
6582
6976
|
type: 'string',
|
|
6583
6977
|
},
|
|
6584
6978
|
device_id: {
|
|
6585
|
-
description:
|
|
6979
|
+
description:
|
|
6980
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6586
6981
|
format: 'uuid',
|
|
6587
6982
|
type: 'string',
|
|
6588
|
-
'x-title': 'Device ID',
|
|
6589
6983
|
},
|
|
6590
6984
|
event_id: {
|
|
6591
6985
|
description: 'ID of the event.',
|
|
@@ -6597,7 +6991,7 @@ export default {
|
|
|
6597
6991
|
type: 'string',
|
|
6598
6992
|
},
|
|
6599
6993
|
occurred_at: {
|
|
6600
|
-
description: '
|
|
6994
|
+
description: 'Date and time at which the event occurred.',
|
|
6601
6995
|
format: 'date-time',
|
|
6602
6996
|
type: 'string',
|
|
6603
6997
|
},
|
|
@@ -6622,31 +7016,31 @@ export default {
|
|
|
6622
7016
|
},
|
|
6623
7017
|
{
|
|
6624
7018
|
description:
|
|
6625
|
-
'A backup access code was pulled from the backup access code pool and set on a device.',
|
|
7019
|
+
'A [backup access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device.',
|
|
6626
7020
|
properties: {
|
|
6627
7021
|
access_code_id: {
|
|
6628
|
-
description:
|
|
7022
|
+
description:
|
|
7023
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6629
7024
|
format: 'uuid',
|
|
6630
7025
|
type: 'string',
|
|
6631
|
-
'x-title': 'Access Code ID',
|
|
6632
7026
|
},
|
|
6633
7027
|
backup_access_code_id: { type: 'string' },
|
|
6634
7028
|
connected_account_id: {
|
|
6635
|
-
description:
|
|
7029
|
+
description:
|
|
7030
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6636
7031
|
format: 'uuid',
|
|
6637
7032
|
type: 'string',
|
|
6638
|
-
'x-title': 'Connected Account ID',
|
|
6639
7033
|
},
|
|
6640
7034
|
created_at: {
|
|
6641
|
-
description: '
|
|
7035
|
+
description: 'Date and time at which the event was created.',
|
|
6642
7036
|
format: 'date-time',
|
|
6643
7037
|
type: 'string',
|
|
6644
7038
|
},
|
|
6645
7039
|
device_id: {
|
|
6646
|
-
description:
|
|
7040
|
+
description:
|
|
7041
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6647
7042
|
format: 'uuid',
|
|
6648
7043
|
type: 'string',
|
|
6649
|
-
'x-title': 'Device ID',
|
|
6650
7044
|
},
|
|
6651
7045
|
event_id: {
|
|
6652
7046
|
description: 'ID of the event.',
|
|
@@ -6658,7 +7052,7 @@ export default {
|
|
|
6658
7052
|
type: 'string',
|
|
6659
7053
|
},
|
|
6660
7054
|
occurred_at: {
|
|
6661
|
-
description: '
|
|
7055
|
+
description: 'Date and time at which the event occurred.',
|
|
6662
7056
|
format: 'date-time',
|
|
6663
7057
|
type: 'string',
|
|
6664
7058
|
},
|
|
@@ -6684,30 +7078,30 @@ export default {
|
|
|
6684
7078
|
},
|
|
6685
7079
|
{
|
|
6686
7080
|
description:
|
|
6687
|
-
'An unmanaged access code was successfully
|
|
7081
|
+
'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code.',
|
|
6688
7082
|
properties: {
|
|
6689
7083
|
access_code_id: {
|
|
6690
|
-
description:
|
|
7084
|
+
description:
|
|
7085
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6691
7086
|
format: 'uuid',
|
|
6692
7087
|
type: 'string',
|
|
6693
|
-
'x-title': 'Access Code ID',
|
|
6694
7088
|
},
|
|
6695
7089
|
connected_account_id: {
|
|
6696
|
-
description:
|
|
7090
|
+
description:
|
|
7091
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6697
7092
|
format: 'uuid',
|
|
6698
7093
|
type: 'string',
|
|
6699
|
-
'x-title': 'Connected Account ID',
|
|
6700
7094
|
},
|
|
6701
7095
|
created_at: {
|
|
6702
|
-
description: '
|
|
7096
|
+
description: 'Date and time at which the event was created.',
|
|
6703
7097
|
format: 'date-time',
|
|
6704
7098
|
type: 'string',
|
|
6705
7099
|
},
|
|
6706
7100
|
device_id: {
|
|
6707
|
-
description:
|
|
7101
|
+
description:
|
|
7102
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6708
7103
|
format: 'uuid',
|
|
6709
7104
|
type: 'string',
|
|
6710
|
-
'x-title': 'Device ID',
|
|
6711
7105
|
},
|
|
6712
7106
|
event_id: {
|
|
6713
7107
|
description: 'ID of the event.',
|
|
@@ -6719,7 +7113,7 @@ export default {
|
|
|
6719
7113
|
type: 'string',
|
|
6720
7114
|
},
|
|
6721
7115
|
occurred_at: {
|
|
6722
|
-
description: '
|
|
7116
|
+
description: 'Date and time at which the event occurred.',
|
|
6723
7117
|
format: 'date-time',
|
|
6724
7118
|
type: 'string',
|
|
6725
7119
|
},
|
|
@@ -6744,30 +7138,30 @@ export default {
|
|
|
6744
7138
|
},
|
|
6745
7139
|
{
|
|
6746
7140
|
description:
|
|
6747
|
-
'An unmanaged access code failed to be converted to a managed access code.',
|
|
7141
|
+
'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code.',
|
|
6748
7142
|
properties: {
|
|
6749
7143
|
access_code_id: {
|
|
6750
|
-
description:
|
|
7144
|
+
description:
|
|
7145
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6751
7146
|
format: 'uuid',
|
|
6752
7147
|
type: 'string',
|
|
6753
|
-
'x-title': 'Access Code ID',
|
|
6754
7148
|
},
|
|
6755
7149
|
connected_account_id: {
|
|
6756
|
-
description:
|
|
7150
|
+
description:
|
|
7151
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6757
7152
|
format: 'uuid',
|
|
6758
7153
|
type: 'string',
|
|
6759
|
-
'x-title': 'Connected Account ID',
|
|
6760
7154
|
},
|
|
6761
7155
|
created_at: {
|
|
6762
|
-
description: '
|
|
7156
|
+
description: 'Date and time at which the event was created.',
|
|
6763
7157
|
format: 'date-time',
|
|
6764
7158
|
type: 'string',
|
|
6765
7159
|
},
|
|
6766
7160
|
device_id: {
|
|
6767
|
-
description:
|
|
7161
|
+
description:
|
|
7162
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6768
7163
|
format: 'uuid',
|
|
6769
7164
|
type: 'string',
|
|
6770
|
-
'x-title': 'Device ID',
|
|
6771
7165
|
},
|
|
6772
7166
|
event_id: {
|
|
6773
7167
|
description: 'ID of the event.',
|
|
@@ -6779,7 +7173,7 @@ export default {
|
|
|
6779
7173
|
type: 'string',
|
|
6780
7174
|
},
|
|
6781
7175
|
occurred_at: {
|
|
6782
|
-
description: '
|
|
7176
|
+
description: 'Date and time at which the event occurred.',
|
|
6783
7177
|
format: 'date-time',
|
|
6784
7178
|
type: 'string',
|
|
6785
7179
|
},
|
|
@@ -6803,30 +7197,31 @@ export default {
|
|
|
6803
7197
|
type: 'object',
|
|
6804
7198
|
},
|
|
6805
7199
|
{
|
|
6806
|
-
description:
|
|
7200
|
+
description:
|
|
7201
|
+
'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was created on a device.',
|
|
6807
7202
|
properties: {
|
|
6808
7203
|
access_code_id: {
|
|
6809
|
-
description:
|
|
7204
|
+
description:
|
|
7205
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6810
7206
|
format: 'uuid',
|
|
6811
7207
|
type: 'string',
|
|
6812
|
-
'x-title': 'Access Code ID',
|
|
6813
7208
|
},
|
|
6814
7209
|
connected_account_id: {
|
|
6815
|
-
description:
|
|
7210
|
+
description:
|
|
7211
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6816
7212
|
format: 'uuid',
|
|
6817
7213
|
type: 'string',
|
|
6818
|
-
'x-title': 'Connected Account ID',
|
|
6819
7214
|
},
|
|
6820
7215
|
created_at: {
|
|
6821
|
-
description: '
|
|
7216
|
+
description: 'Date and time at which the event was created.',
|
|
6822
7217
|
format: 'date-time',
|
|
6823
7218
|
type: 'string',
|
|
6824
7219
|
},
|
|
6825
7220
|
device_id: {
|
|
6826
|
-
description:
|
|
7221
|
+
description:
|
|
7222
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6827
7223
|
format: 'uuid',
|
|
6828
7224
|
type: 'string',
|
|
6829
|
-
'x-title': 'Device ID',
|
|
6830
7225
|
},
|
|
6831
7226
|
event_id: {
|
|
6832
7227
|
description: 'ID of the event.',
|
|
@@ -6838,7 +7233,7 @@ export default {
|
|
|
6838
7233
|
type: 'string',
|
|
6839
7234
|
},
|
|
6840
7235
|
occurred_at: {
|
|
6841
|
-
description: '
|
|
7236
|
+
description: 'Date and time at which the event occurred.',
|
|
6842
7237
|
format: 'date-time',
|
|
6843
7238
|
type: 'string',
|
|
6844
7239
|
},
|
|
@@ -6862,30 +7257,31 @@ export default {
|
|
|
6862
7257
|
type: 'object',
|
|
6863
7258
|
},
|
|
6864
7259
|
{
|
|
6865
|
-
description:
|
|
7260
|
+
description:
|
|
7261
|
+
'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device.',
|
|
6866
7262
|
properties: {
|
|
6867
7263
|
access_code_id: {
|
|
6868
|
-
description:
|
|
7264
|
+
description:
|
|
7265
|
+
'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
|
|
6869
7266
|
format: 'uuid',
|
|
6870
7267
|
type: 'string',
|
|
6871
|
-
'x-title': 'Access Code ID',
|
|
6872
7268
|
},
|
|
6873
7269
|
connected_account_id: {
|
|
6874
|
-
description:
|
|
7270
|
+
description:
|
|
7271
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6875
7272
|
format: 'uuid',
|
|
6876
7273
|
type: 'string',
|
|
6877
|
-
'x-title': 'Connected Account ID',
|
|
6878
7274
|
},
|
|
6879
7275
|
created_at: {
|
|
6880
|
-
description: '
|
|
7276
|
+
description: 'Date and time at which the event was created.',
|
|
6881
7277
|
format: 'date-time',
|
|
6882
7278
|
type: 'string',
|
|
6883
7279
|
},
|
|
6884
7280
|
device_id: {
|
|
6885
|
-
description:
|
|
7281
|
+
description:
|
|
7282
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
6886
7283
|
format: 'uuid',
|
|
6887
7284
|
type: 'string',
|
|
6888
|
-
'x-title': 'Device ID',
|
|
6889
7285
|
},
|
|
6890
7286
|
event_id: {
|
|
6891
7287
|
description: 'ID of the event.',
|
|
@@ -6897,7 +7293,7 @@ export default {
|
|
|
6897
7293
|
type: 'string',
|
|
6898
7294
|
},
|
|
6899
7295
|
occurred_at: {
|
|
6900
|
-
description: '
|
|
7296
|
+
description: 'Date and time at which the event occurred.',
|
|
6901
7297
|
format: 'date-time',
|
|
6902
7298
|
type: 'string',
|
|
6903
7299
|
},
|
|
@@ -6921,22 +7317,23 @@ export default {
|
|
|
6921
7317
|
type: 'object',
|
|
6922
7318
|
},
|
|
6923
7319
|
{
|
|
6924
|
-
description:
|
|
7320
|
+
description:
|
|
7321
|
+
'An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was connected.',
|
|
6925
7322
|
properties: {
|
|
6926
7323
|
acs_system_id: {
|
|
6927
|
-
description:
|
|
7324
|
+
description:
|
|
7325
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
6928
7326
|
format: 'uuid',
|
|
6929
7327
|
type: 'string',
|
|
6930
|
-
'x-title': 'ACS System ID',
|
|
6931
7328
|
},
|
|
6932
7329
|
connected_account_id: {
|
|
6933
|
-
description:
|
|
7330
|
+
description:
|
|
7331
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6934
7332
|
format: 'uuid',
|
|
6935
7333
|
type: 'string',
|
|
6936
|
-
'x-title': 'Connected Account ID',
|
|
6937
7334
|
},
|
|
6938
7335
|
created_at: {
|
|
6939
|
-
description: '
|
|
7336
|
+
description: 'Date and time at which the event was created.',
|
|
6940
7337
|
format: 'date-time',
|
|
6941
7338
|
type: 'string',
|
|
6942
7339
|
},
|
|
@@ -6947,7 +7344,7 @@ export default {
|
|
|
6947
7344
|
},
|
|
6948
7345
|
event_type: { enum: ['acs_system.connected'], type: 'string' },
|
|
6949
7346
|
occurred_at: {
|
|
6950
|
-
description: '
|
|
7347
|
+
description: 'Date and time at which the event occurred.',
|
|
6951
7348
|
format: 'date-time',
|
|
6952
7349
|
type: 'string',
|
|
6953
7350
|
},
|
|
@@ -6969,22 +7366,23 @@ export default {
|
|
|
6969
7366
|
type: 'object',
|
|
6970
7367
|
},
|
|
6971
7368
|
{
|
|
6972
|
-
description:
|
|
7369
|
+
description:
|
|
7370
|
+
'An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was added.',
|
|
6973
7371
|
properties: {
|
|
6974
7372
|
acs_system_id: {
|
|
6975
|
-
description:
|
|
7373
|
+
description:
|
|
7374
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
6976
7375
|
format: 'uuid',
|
|
6977
7376
|
type: 'string',
|
|
6978
|
-
'x-title': 'ACS System ID',
|
|
6979
7377
|
},
|
|
6980
7378
|
connected_account_id: {
|
|
6981
|
-
description:
|
|
7379
|
+
description:
|
|
7380
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
6982
7381
|
format: 'uuid',
|
|
6983
7382
|
type: 'string',
|
|
6984
|
-
'x-title': 'Connected Account ID',
|
|
6985
7383
|
},
|
|
6986
7384
|
created_at: {
|
|
6987
|
-
description: '
|
|
7385
|
+
description: 'Date and time at which the event was created.',
|
|
6988
7386
|
format: 'date-time',
|
|
6989
7387
|
type: 'string',
|
|
6990
7388
|
},
|
|
@@ -6995,7 +7393,7 @@ export default {
|
|
|
6995
7393
|
},
|
|
6996
7394
|
event_type: { enum: ['acs_system.added'], type: 'string' },
|
|
6997
7395
|
occurred_at: {
|
|
6998
|
-
description: '
|
|
7396
|
+
description: 'Date and time at which the event occurred.',
|
|
6999
7397
|
format: 'date-time',
|
|
7000
7398
|
type: 'string',
|
|
7001
7399
|
},
|
|
@@ -7017,22 +7415,23 @@ export default {
|
|
|
7017
7415
|
type: 'object',
|
|
7018
7416
|
},
|
|
7019
7417
|
{
|
|
7020
|
-
description:
|
|
7418
|
+
description:
|
|
7419
|
+
'An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was disconnected.',
|
|
7021
7420
|
properties: {
|
|
7022
7421
|
acs_system_id: {
|
|
7023
|
-
description:
|
|
7422
|
+
description:
|
|
7423
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7024
7424
|
format: 'uuid',
|
|
7025
7425
|
type: 'string',
|
|
7026
|
-
'x-title': 'ACS System ID',
|
|
7027
7426
|
},
|
|
7028
7427
|
connected_account_id: {
|
|
7029
|
-
description:
|
|
7428
|
+
description:
|
|
7429
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7030
7430
|
format: 'uuid',
|
|
7031
7431
|
type: 'string',
|
|
7032
|
-
'x-title': 'Connected Account ID',
|
|
7033
7432
|
},
|
|
7034
7433
|
created_at: {
|
|
7035
|
-
description: '
|
|
7434
|
+
description: 'Date and time at which the event was created.',
|
|
7036
7435
|
format: 'date-time',
|
|
7037
7436
|
type: 'string',
|
|
7038
7437
|
},
|
|
@@ -7043,7 +7442,7 @@ export default {
|
|
|
7043
7442
|
},
|
|
7044
7443
|
event_type: { enum: ['acs_system.disconnected'], type: 'string' },
|
|
7045
7444
|
occurred_at: {
|
|
7046
|
-
description: '
|
|
7445
|
+
description: 'Date and time at which the event occurred.',
|
|
7047
7446
|
format: 'date-time',
|
|
7048
7447
|
type: 'string',
|
|
7049
7448
|
},
|
|
@@ -7065,23 +7464,24 @@ export default {
|
|
|
7065
7464
|
type: 'object',
|
|
7066
7465
|
},
|
|
7067
7466
|
{
|
|
7068
|
-
description:
|
|
7467
|
+
description:
|
|
7468
|
+
'An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was deleted.',
|
|
7069
7469
|
properties: {
|
|
7070
7470
|
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
7071
7471
|
acs_system_id: {
|
|
7072
|
-
description:
|
|
7472
|
+
description:
|
|
7473
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7073
7474
|
format: 'uuid',
|
|
7074
7475
|
type: 'string',
|
|
7075
|
-
'x-title': 'ACS System ID',
|
|
7076
7476
|
},
|
|
7077
7477
|
connected_account_id: {
|
|
7078
|
-
description:
|
|
7478
|
+
description:
|
|
7479
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7079
7480
|
format: 'uuid',
|
|
7080
7481
|
type: 'string',
|
|
7081
|
-
'x-title': 'Connected Account ID',
|
|
7082
7482
|
},
|
|
7083
7483
|
created_at: {
|
|
7084
|
-
description: '
|
|
7484
|
+
description: 'Date and time at which the event was created.',
|
|
7085
7485
|
format: 'date-time',
|
|
7086
7486
|
type: 'string',
|
|
7087
7487
|
},
|
|
@@ -7092,7 +7492,7 @@ export default {
|
|
|
7092
7492
|
},
|
|
7093
7493
|
event_type: { enum: ['acs_credential.deleted'], type: 'string' },
|
|
7094
7494
|
occurred_at: {
|
|
7095
|
-
description: '
|
|
7495
|
+
description: 'Date and time at which the event occurred.',
|
|
7096
7496
|
format: 'date-time',
|
|
7097
7497
|
type: 'string',
|
|
7098
7498
|
},
|
|
@@ -7115,23 +7515,24 @@ export default {
|
|
|
7115
7515
|
type: 'object',
|
|
7116
7516
|
},
|
|
7117
7517
|
{
|
|
7118
|
-
description:
|
|
7518
|
+
description:
|
|
7519
|
+
'An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued.',
|
|
7119
7520
|
properties: {
|
|
7120
7521
|
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
7121
7522
|
acs_system_id: {
|
|
7122
|
-
description:
|
|
7523
|
+
description:
|
|
7524
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7123
7525
|
format: 'uuid',
|
|
7124
7526
|
type: 'string',
|
|
7125
|
-
'x-title': 'ACS System ID',
|
|
7126
7527
|
},
|
|
7127
7528
|
connected_account_id: {
|
|
7128
|
-
description:
|
|
7529
|
+
description:
|
|
7530
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7129
7531
|
format: 'uuid',
|
|
7130
7532
|
type: 'string',
|
|
7131
|
-
'x-title': 'Connected Account ID',
|
|
7132
7533
|
},
|
|
7133
7534
|
created_at: {
|
|
7134
|
-
description: '
|
|
7535
|
+
description: 'Date and time at which the event was created.',
|
|
7135
7536
|
format: 'date-time',
|
|
7136
7537
|
type: 'string',
|
|
7137
7538
|
},
|
|
@@ -7142,7 +7543,7 @@ export default {
|
|
|
7142
7543
|
},
|
|
7143
7544
|
event_type: { enum: ['acs_credential.issued'], type: 'string' },
|
|
7144
7545
|
occurred_at: {
|
|
7145
|
-
description: '
|
|
7546
|
+
description: 'Date and time at which the event occurred.',
|
|
7146
7547
|
format: 'date-time',
|
|
7147
7548
|
type: 'string',
|
|
7148
7549
|
},
|
|
@@ -7165,23 +7566,24 @@ export default {
|
|
|
7165
7566
|
type: 'object',
|
|
7166
7567
|
},
|
|
7167
7568
|
{
|
|
7168
|
-
description:
|
|
7569
|
+
description:
|
|
7570
|
+
'An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.',
|
|
7169
7571
|
properties: {
|
|
7170
7572
|
acs_system_id: {
|
|
7171
|
-
description:
|
|
7573
|
+
description:
|
|
7574
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7172
7575
|
format: 'uuid',
|
|
7173
7576
|
type: 'string',
|
|
7174
|
-
'x-title': 'ACS System ID',
|
|
7175
7577
|
},
|
|
7176
7578
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
7177
7579
|
connected_account_id: {
|
|
7178
|
-
description:
|
|
7580
|
+
description:
|
|
7581
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7179
7582
|
format: 'uuid',
|
|
7180
7583
|
type: 'string',
|
|
7181
|
-
'x-title': 'Connected Account ID',
|
|
7182
7584
|
},
|
|
7183
7585
|
created_at: {
|
|
7184
|
-
description: '
|
|
7586
|
+
description: 'Date and time at which the event was created.',
|
|
7185
7587
|
format: 'date-time',
|
|
7186
7588
|
type: 'string',
|
|
7187
7589
|
},
|
|
@@ -7192,7 +7594,7 @@ export default {
|
|
|
7192
7594
|
},
|
|
7193
7595
|
event_type: { enum: ['acs_user.deleted'], type: 'string' },
|
|
7194
7596
|
occurred_at: {
|
|
7195
|
-
description: '
|
|
7597
|
+
description: 'Date and time at which the event occurred.',
|
|
7196
7598
|
format: 'date-time',
|
|
7197
7599
|
type: 'string',
|
|
7198
7600
|
},
|
|
@@ -7215,27 +7617,29 @@ export default {
|
|
|
7215
7617
|
type: 'object',
|
|
7216
7618
|
},
|
|
7217
7619
|
{
|
|
7218
|
-
description:
|
|
7620
|
+
description:
|
|
7621
|
+
'An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was added.',
|
|
7219
7622
|
properties: {
|
|
7220
7623
|
acs_encoder_id: {
|
|
7221
|
-
description:
|
|
7624
|
+
description:
|
|
7625
|
+
'ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).',
|
|
7222
7626
|
format: 'uuid',
|
|
7223
7627
|
type: 'string',
|
|
7224
7628
|
},
|
|
7225
7629
|
acs_system_id: {
|
|
7226
|
-
description:
|
|
7630
|
+
description:
|
|
7631
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7227
7632
|
format: 'uuid',
|
|
7228
7633
|
type: 'string',
|
|
7229
|
-
'x-title': 'ACS System ID',
|
|
7230
7634
|
},
|
|
7231
7635
|
connected_account_id: {
|
|
7232
|
-
description:
|
|
7636
|
+
description:
|
|
7637
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7233
7638
|
format: 'uuid',
|
|
7234
7639
|
type: 'string',
|
|
7235
|
-
'x-title': 'Connected Account ID',
|
|
7236
7640
|
},
|
|
7237
7641
|
created_at: {
|
|
7238
|
-
description: '
|
|
7642
|
+
description: 'Date and time at which the event was created.',
|
|
7239
7643
|
format: 'date-time',
|
|
7240
7644
|
type: 'string',
|
|
7241
7645
|
},
|
|
@@ -7246,7 +7650,7 @@ export default {
|
|
|
7246
7650
|
},
|
|
7247
7651
|
event_type: { enum: ['acs_encoder.added'], type: 'string' },
|
|
7248
7652
|
occurred_at: {
|
|
7249
|
-
description: '
|
|
7653
|
+
description: 'Date and time at which the event occurred.',
|
|
7250
7654
|
format: 'date-time',
|
|
7251
7655
|
type: 'string',
|
|
7252
7656
|
},
|
|
@@ -7269,27 +7673,29 @@ export default {
|
|
|
7269
7673
|
type: 'object',
|
|
7270
7674
|
},
|
|
7271
7675
|
{
|
|
7272
|
-
description:
|
|
7676
|
+
description:
|
|
7677
|
+
'An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was removed.',
|
|
7273
7678
|
properties: {
|
|
7274
7679
|
acs_encoder_id: {
|
|
7275
|
-
description:
|
|
7680
|
+
description:
|
|
7681
|
+
'ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).',
|
|
7276
7682
|
format: 'uuid',
|
|
7277
7683
|
type: 'string',
|
|
7278
7684
|
},
|
|
7279
7685
|
acs_system_id: {
|
|
7280
|
-
description:
|
|
7686
|
+
description:
|
|
7687
|
+
'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
7281
7688
|
format: 'uuid',
|
|
7282
7689
|
type: 'string',
|
|
7283
|
-
'x-title': 'ACS System ID',
|
|
7284
7690
|
},
|
|
7285
7691
|
connected_account_id: {
|
|
7286
|
-
description:
|
|
7692
|
+
description:
|
|
7693
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7287
7694
|
format: 'uuid',
|
|
7288
7695
|
type: 'string',
|
|
7289
|
-
'x-title': 'Connected Account ID',
|
|
7290
7696
|
},
|
|
7291
7697
|
created_at: {
|
|
7292
|
-
description: '
|
|
7698
|
+
description: 'Date and time at which the event was created.',
|
|
7293
7699
|
format: 'date-time',
|
|
7294
7700
|
type: 'string',
|
|
7295
7701
|
},
|
|
@@ -7300,7 +7706,7 @@ export default {
|
|
|
7300
7706
|
},
|
|
7301
7707
|
event_type: { enum: ['acs_encoder.removed'], type: 'string' },
|
|
7302
7708
|
occurred_at: {
|
|
7303
|
-
description: '
|
|
7709
|
+
description: 'Date and time at which the event occurred.',
|
|
7304
7710
|
format: 'date-time',
|
|
7305
7711
|
type: 'string',
|
|
7306
7712
|
},
|
|
@@ -7323,16 +7729,17 @@ export default {
|
|
|
7323
7729
|
type: 'object',
|
|
7324
7730
|
},
|
|
7325
7731
|
{
|
|
7326
|
-
description:
|
|
7732
|
+
description:
|
|
7733
|
+
'A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.',
|
|
7327
7734
|
properties: {
|
|
7328
7735
|
client_session_id: {
|
|
7329
|
-
description:
|
|
7736
|
+
description:
|
|
7737
|
+
'ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).',
|
|
7330
7738
|
format: 'uuid',
|
|
7331
7739
|
type: 'string',
|
|
7332
|
-
'x-title': 'Client Session ID',
|
|
7333
7740
|
},
|
|
7334
7741
|
created_at: {
|
|
7335
|
-
description: '
|
|
7742
|
+
description: 'Date and time at which the event was created.',
|
|
7336
7743
|
format: 'date-time',
|
|
7337
7744
|
type: 'string',
|
|
7338
7745
|
},
|
|
@@ -7343,7 +7750,7 @@ export default {
|
|
|
7343
7750
|
},
|
|
7344
7751
|
event_type: { enum: ['client_session.deleted'], type: 'string' },
|
|
7345
7752
|
occurred_at: {
|
|
7346
|
-
description: '
|
|
7753
|
+
description: 'Date and time at which the event occurred.',
|
|
7347
7754
|
format: 'date-time',
|
|
7348
7755
|
type: 'string',
|
|
7349
7756
|
},
|
|
@@ -7366,22 +7773,22 @@ export default {
|
|
|
7366
7773
|
},
|
|
7367
7774
|
{
|
|
7368
7775
|
description:
|
|
7369
|
-
'A connected account was connected for the first time
|
|
7776
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was connected for the first time or was reconnected after being disconnected.',
|
|
7370
7777
|
properties: {
|
|
7371
7778
|
connect_webview_id: {
|
|
7372
|
-
description:
|
|
7779
|
+
description:
|
|
7780
|
+
'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
|
|
7373
7781
|
format: 'uuid',
|
|
7374
7782
|
type: 'string',
|
|
7375
|
-
'x-title': 'Connect Webview ID',
|
|
7376
7783
|
},
|
|
7377
7784
|
connected_account_id: {
|
|
7378
|
-
description:
|
|
7785
|
+
description:
|
|
7786
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7379
7787
|
format: 'uuid',
|
|
7380
7788
|
type: 'string',
|
|
7381
|
-
'x-title': 'Connected Account ID',
|
|
7382
7789
|
},
|
|
7383
7790
|
created_at: {
|
|
7384
|
-
description: '
|
|
7791
|
+
description: 'Date and time at which the event was created.',
|
|
7385
7792
|
format: 'date-time',
|
|
7386
7793
|
type: 'string',
|
|
7387
7794
|
},
|
|
@@ -7395,7 +7802,7 @@ export default {
|
|
|
7395
7802
|
type: 'string',
|
|
7396
7803
|
},
|
|
7397
7804
|
occurred_at: {
|
|
7398
|
-
description: '
|
|
7805
|
+
description: 'Date and time at which the event occurred.',
|
|
7399
7806
|
format: 'date-time',
|
|
7400
7807
|
type: 'string',
|
|
7401
7808
|
},
|
|
@@ -7418,22 +7825,23 @@ export default {
|
|
|
7418
7825
|
type: 'object',
|
|
7419
7826
|
},
|
|
7420
7827
|
{
|
|
7421
|
-
description:
|
|
7828
|
+
description:
|
|
7829
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was created.',
|
|
7422
7830
|
properties: {
|
|
7423
7831
|
connect_webview_id: {
|
|
7424
|
-
description:
|
|
7832
|
+
description:
|
|
7833
|
+
'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
|
|
7425
7834
|
format: 'uuid',
|
|
7426
7835
|
type: 'string',
|
|
7427
|
-
'x-title': 'Connect Webview ID',
|
|
7428
7836
|
},
|
|
7429
7837
|
connected_account_id: {
|
|
7430
|
-
description:
|
|
7838
|
+
description:
|
|
7839
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7431
7840
|
format: 'uuid',
|
|
7432
7841
|
type: 'string',
|
|
7433
|
-
'x-title': 'Connected Account ID',
|
|
7434
7842
|
},
|
|
7435
7843
|
created_at: {
|
|
7436
|
-
description: '
|
|
7844
|
+
description: 'Date and time at which the event was created.',
|
|
7437
7845
|
format: 'date-time',
|
|
7438
7846
|
type: 'string',
|
|
7439
7847
|
},
|
|
@@ -7447,7 +7855,7 @@ export default {
|
|
|
7447
7855
|
type: 'string',
|
|
7448
7856
|
},
|
|
7449
7857
|
occurred_at: {
|
|
7450
|
-
description: '
|
|
7858
|
+
description: 'Date and time at which the event occurred.',
|
|
7451
7859
|
format: 'date-time',
|
|
7452
7860
|
type: 'string',
|
|
7453
7861
|
},
|
|
@@ -7472,22 +7880,22 @@ export default {
|
|
|
7472
7880
|
{
|
|
7473
7881
|
deprecated: true,
|
|
7474
7882
|
description:
|
|
7475
|
-
'A connected account had a successful
|
|
7883
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) had a successful login using a [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
|
|
7476
7884
|
properties: {
|
|
7477
7885
|
connect_webview_id: {
|
|
7478
|
-
description:
|
|
7886
|
+
description:
|
|
7887
|
+
'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
|
|
7479
7888
|
format: 'uuid',
|
|
7480
7889
|
type: 'string',
|
|
7481
|
-
'x-title': 'Connect Webview ID',
|
|
7482
7890
|
},
|
|
7483
7891
|
connected_account_id: {
|
|
7484
|
-
description:
|
|
7892
|
+
description:
|
|
7893
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7485
7894
|
format: 'uuid',
|
|
7486
7895
|
type: 'string',
|
|
7487
|
-
'x-title': 'Connected Account ID',
|
|
7488
7896
|
},
|
|
7489
7897
|
created_at: {
|
|
7490
|
-
description: '
|
|
7898
|
+
description: 'Date and time at which the event was created.',
|
|
7491
7899
|
format: 'date-time',
|
|
7492
7900
|
type: 'string',
|
|
7493
7901
|
},
|
|
@@ -7501,7 +7909,7 @@ export default {
|
|
|
7501
7909
|
type: 'string',
|
|
7502
7910
|
},
|
|
7503
7911
|
occurred_at: {
|
|
7504
|
-
description: '
|
|
7912
|
+
description: 'Date and time at which the event occurred.',
|
|
7505
7913
|
format: 'date-time',
|
|
7506
7914
|
type: 'string',
|
|
7507
7915
|
},
|
|
@@ -7525,16 +7933,17 @@ export default {
|
|
|
7525
7933
|
'x-deprecated': 'Use `connect_webview.login_succeeded`.',
|
|
7526
7934
|
},
|
|
7527
7935
|
{
|
|
7528
|
-
description:
|
|
7936
|
+
description:
|
|
7937
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected.',
|
|
7529
7938
|
properties: {
|
|
7530
7939
|
connected_account_id: {
|
|
7531
|
-
description:
|
|
7940
|
+
description:
|
|
7941
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7532
7942
|
format: 'uuid',
|
|
7533
7943
|
type: 'string',
|
|
7534
|
-
'x-title': 'Connected Account ID',
|
|
7535
7944
|
},
|
|
7536
7945
|
created_at: {
|
|
7537
|
-
description: '
|
|
7946
|
+
description: 'Date and time at which the event was created.',
|
|
7538
7947
|
format: 'date-time',
|
|
7539
7948
|
type: 'string',
|
|
7540
7949
|
},
|
|
@@ -7548,7 +7957,7 @@ export default {
|
|
|
7548
7957
|
type: 'string',
|
|
7549
7958
|
},
|
|
7550
7959
|
occurred_at: {
|
|
7551
|
-
description: '
|
|
7960
|
+
description: 'Date and time at which the event occurred.',
|
|
7552
7961
|
format: 'date-time',
|
|
7553
7962
|
type: 'string',
|
|
7554
7963
|
},
|
|
@@ -7571,16 +7980,16 @@ export default {
|
|
|
7571
7980
|
},
|
|
7572
7981
|
{
|
|
7573
7982
|
description:
|
|
7574
|
-
'A connected account completed the first sync with Seam and devices are now available.',
|
|
7983
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync with Seam, and the corresponding devices or systems are now available.',
|
|
7575
7984
|
properties: {
|
|
7576
7985
|
connected_account_id: {
|
|
7577
|
-
description:
|
|
7986
|
+
description:
|
|
7987
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7578
7988
|
format: 'uuid',
|
|
7579
7989
|
type: 'string',
|
|
7580
|
-
'x-title': 'Connected Account ID',
|
|
7581
7990
|
},
|
|
7582
7991
|
created_at: {
|
|
7583
|
-
description: '
|
|
7992
|
+
description: 'Date and time at which the event was created.',
|
|
7584
7993
|
format: 'date-time',
|
|
7585
7994
|
type: 'string',
|
|
7586
7995
|
},
|
|
@@ -7594,7 +8003,7 @@ export default {
|
|
|
7594
8003
|
type: 'string',
|
|
7595
8004
|
},
|
|
7596
8005
|
occurred_at: {
|
|
7597
|
-
description: '
|
|
8006
|
+
description: 'Date and time at which the event occurred.',
|
|
7598
8007
|
format: 'date-time',
|
|
7599
8008
|
type: 'string',
|
|
7600
8009
|
},
|
|
@@ -7616,16 +8025,17 @@ export default {
|
|
|
7616
8025
|
type: 'object',
|
|
7617
8026
|
},
|
|
7618
8027
|
{
|
|
7619
|
-
description:
|
|
8028
|
+
description:
|
|
8029
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted.',
|
|
7620
8030
|
properties: {
|
|
7621
8031
|
connected_account_id: {
|
|
7622
|
-
description:
|
|
8032
|
+
description:
|
|
8033
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7623
8034
|
format: 'uuid',
|
|
7624
8035
|
type: 'string',
|
|
7625
|
-
'x-title': 'Connected Account ID',
|
|
7626
8036
|
},
|
|
7627
8037
|
created_at: {
|
|
7628
|
-
description: '
|
|
8038
|
+
description: 'Date and time at which the event was created.',
|
|
7629
8039
|
format: 'date-time',
|
|
7630
8040
|
type: 'string',
|
|
7631
8041
|
},
|
|
@@ -7639,7 +8049,7 @@ export default {
|
|
|
7639
8049
|
type: 'string',
|
|
7640
8050
|
},
|
|
7641
8051
|
occurred_at: {
|
|
7642
|
-
description: '
|
|
8052
|
+
description: 'Date and time at which the event occurred.',
|
|
7643
8053
|
format: 'date-time',
|
|
7644
8054
|
type: 'string',
|
|
7645
8055
|
},
|
|
@@ -7662,16 +8072,16 @@ export default {
|
|
|
7662
8072
|
},
|
|
7663
8073
|
{
|
|
7664
8074
|
description:
|
|
7665
|
-
'A connected account completed the first sync after reconnection with Seam and devices are now available.',
|
|
8075
|
+
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync after reconnection with Seam, and the corresponding devices or systems are now available.',
|
|
7666
8076
|
properties: {
|
|
7667
8077
|
connected_account_id: {
|
|
7668
|
-
description:
|
|
8078
|
+
description:
|
|
8079
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7669
8080
|
format: 'uuid',
|
|
7670
8081
|
type: 'string',
|
|
7671
|
-
'x-title': 'Connected Account ID',
|
|
7672
8082
|
},
|
|
7673
8083
|
created_at: {
|
|
7674
|
-
description: '
|
|
8084
|
+
description: 'Date and time at which the event was created.',
|
|
7675
8085
|
format: 'date-time',
|
|
7676
8086
|
type: 'string',
|
|
7677
8087
|
},
|
|
@@ -7687,7 +8097,7 @@ export default {
|
|
|
7687
8097
|
type: 'string',
|
|
7688
8098
|
},
|
|
7689
8099
|
occurred_at: {
|
|
7690
|
-
description: '
|
|
8100
|
+
description: 'Date and time at which the event occurred.',
|
|
7691
8101
|
format: 'date-time',
|
|
7692
8102
|
type: 'string',
|
|
7693
8103
|
},
|
|
@@ -7709,21 +8119,18 @@ export default {
|
|
|
7709
8119
|
type: 'object',
|
|
7710
8120
|
},
|
|
7711
8121
|
{
|
|
7712
|
-
description:
|
|
8122
|
+
description:
|
|
8123
|
+
'A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.',
|
|
7713
8124
|
properties: {
|
|
7714
8125
|
action_attempt_id: {
|
|
7715
|
-
description:
|
|
8126
|
+
description:
|
|
8127
|
+
'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
|
|
7716
8128
|
format: 'uuid',
|
|
7717
8129
|
type: 'string',
|
|
7718
|
-
'x-title': 'Action Attempt ID',
|
|
7719
|
-
},
|
|
7720
|
-
action_type: {
|
|
7721
|
-
description: 'The type of action.',
|
|
7722
|
-
type: 'string',
|
|
7723
|
-
'x-title': 'Action Type',
|
|
7724
8130
|
},
|
|
8131
|
+
action_type: { description: 'Type of action.', type: 'string' },
|
|
7725
8132
|
created_at: {
|
|
7726
|
-
description: '
|
|
8133
|
+
description: 'Date and time at which the event was created.',
|
|
7727
8134
|
format: 'date-time',
|
|
7728
8135
|
type: 'string',
|
|
7729
8136
|
},
|
|
@@ -7737,15 +8144,11 @@ export default {
|
|
|
7737
8144
|
type: 'string',
|
|
7738
8145
|
},
|
|
7739
8146
|
occurred_at: {
|
|
7740
|
-
description: '
|
|
8147
|
+
description: 'Date and time at which the event occurred.',
|
|
7741
8148
|
format: 'date-time',
|
|
7742
8149
|
type: 'string',
|
|
7743
8150
|
},
|
|
7744
|
-
status: {
|
|
7745
|
-
description: 'The status of the action.',
|
|
7746
|
-
type: 'string',
|
|
7747
|
-
'x-title': 'Status',
|
|
7748
|
-
},
|
|
8151
|
+
status: { description: 'Status of the action.', type: 'string' },
|
|
7749
8152
|
workspace_id: {
|
|
7750
8153
|
description:
|
|
7751
8154
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
@@ -7766,21 +8169,18 @@ export default {
|
|
|
7766
8169
|
type: 'object',
|
|
7767
8170
|
},
|
|
7768
8171
|
{
|
|
7769
|
-
description:
|
|
8172
|
+
description:
|
|
8173
|
+
'A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.',
|
|
7770
8174
|
properties: {
|
|
7771
8175
|
action_attempt_id: {
|
|
7772
|
-
description:
|
|
8176
|
+
description:
|
|
8177
|
+
'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
|
|
7773
8178
|
format: 'uuid',
|
|
7774
8179
|
type: 'string',
|
|
7775
|
-
'x-title': 'Action Attempt ID',
|
|
7776
|
-
},
|
|
7777
|
-
action_type: {
|
|
7778
|
-
description: 'The type of action.',
|
|
7779
|
-
type: 'string',
|
|
7780
|
-
'x-title': 'Action Type',
|
|
7781
8180
|
},
|
|
8181
|
+
action_type: { description: 'Type of action.', type: 'string' },
|
|
7782
8182
|
created_at: {
|
|
7783
|
-
description: '
|
|
8183
|
+
description: 'Date and time at which the event was created.',
|
|
7784
8184
|
format: 'date-time',
|
|
7785
8185
|
type: 'string',
|
|
7786
8186
|
},
|
|
@@ -7794,15 +8194,11 @@ export default {
|
|
|
7794
8194
|
type: 'string',
|
|
7795
8195
|
},
|
|
7796
8196
|
occurred_at: {
|
|
7797
|
-
description: '
|
|
8197
|
+
description: 'Date and time at which the event occurred.',
|
|
7798
8198
|
format: 'date-time',
|
|
7799
8199
|
type: 'string',
|
|
7800
8200
|
},
|
|
7801
|
-
status: {
|
|
7802
|
-
description: 'The status of the action.',
|
|
7803
|
-
type: 'string',
|
|
7804
|
-
'x-title': 'Status',
|
|
7805
|
-
},
|
|
8201
|
+
status: { description: 'Status of the action.', type: 'string' },
|
|
7806
8202
|
workspace_id: {
|
|
7807
8203
|
description:
|
|
7808
8204
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
@@ -7823,21 +8219,18 @@ export default {
|
|
|
7823
8219
|
type: 'object',
|
|
7824
8220
|
},
|
|
7825
8221
|
{
|
|
7826
|
-
description:
|
|
8222
|
+
description:
|
|
8223
|
+
'An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.',
|
|
7827
8224
|
properties: {
|
|
7828
8225
|
action_attempt_id: {
|
|
7829
|
-
description:
|
|
8226
|
+
description:
|
|
8227
|
+
'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
|
|
7830
8228
|
format: 'uuid',
|
|
7831
8229
|
type: 'string',
|
|
7832
|
-
'x-title': 'Action Attempt ID',
|
|
7833
|
-
},
|
|
7834
|
-
action_type: {
|
|
7835
|
-
description: 'The type of action.',
|
|
7836
|
-
type: 'string',
|
|
7837
|
-
'x-title': 'Action Type',
|
|
7838
8230
|
},
|
|
8231
|
+
action_type: { description: 'Type of action.', type: 'string' },
|
|
7839
8232
|
created_at: {
|
|
7840
|
-
description: '
|
|
8233
|
+
description: 'Date and time at which the event was created.',
|
|
7841
8234
|
format: 'date-time',
|
|
7842
8235
|
type: 'string',
|
|
7843
8236
|
},
|
|
@@ -7851,15 +8244,11 @@ export default {
|
|
|
7851
8244
|
type: 'string',
|
|
7852
8245
|
},
|
|
7853
8246
|
occurred_at: {
|
|
7854
|
-
description: '
|
|
8247
|
+
description: 'Date and time at which the event occurred.',
|
|
7855
8248
|
format: 'date-time',
|
|
7856
8249
|
type: 'string',
|
|
7857
8250
|
},
|
|
7858
|
-
status: {
|
|
7859
|
-
description: 'The status of the action.',
|
|
7860
|
-
type: 'string',
|
|
7861
|
-
'x-title': 'Status',
|
|
7862
|
-
},
|
|
8251
|
+
status: { description: 'Status of the action.', type: 'string' },
|
|
7863
8252
|
workspace_id: {
|
|
7864
8253
|
description:
|
|
7865
8254
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
@@ -7880,21 +8269,18 @@ export default {
|
|
|
7880
8269
|
type: 'object',
|
|
7881
8270
|
},
|
|
7882
8271
|
{
|
|
7883
|
-
description:
|
|
8272
|
+
description:
|
|
8273
|
+
'An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.',
|
|
7884
8274
|
properties: {
|
|
7885
8275
|
action_attempt_id: {
|
|
7886
|
-
description:
|
|
8276
|
+
description:
|
|
8277
|
+
'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
|
|
7887
8278
|
format: 'uuid',
|
|
7888
8279
|
type: 'string',
|
|
7889
|
-
'x-title': 'Action Attempt ID',
|
|
7890
|
-
},
|
|
7891
|
-
action_type: {
|
|
7892
|
-
description: 'The type of action.',
|
|
7893
|
-
type: 'string',
|
|
7894
|
-
'x-title': 'Action Type',
|
|
7895
8280
|
},
|
|
8281
|
+
action_type: { description: 'Type of action.', type: 'string' },
|
|
7896
8282
|
created_at: {
|
|
7897
|
-
description: '
|
|
8283
|
+
description: 'Date and time at which the event was created.',
|
|
7898
8284
|
format: 'date-time',
|
|
7899
8285
|
type: 'string',
|
|
7900
8286
|
},
|
|
@@ -7908,15 +8294,11 @@ export default {
|
|
|
7908
8294
|
type: 'string',
|
|
7909
8295
|
},
|
|
7910
8296
|
occurred_at: {
|
|
7911
|
-
description: '
|
|
8297
|
+
description: 'Date and time at which the event occurred.',
|
|
7912
8298
|
format: 'date-time',
|
|
7913
8299
|
type: 'string',
|
|
7914
8300
|
},
|
|
7915
|
-
status: {
|
|
7916
|
-
description: 'The status of the action.',
|
|
7917
|
-
type: 'string',
|
|
7918
|
-
'x-title': 'Status',
|
|
7919
|
-
},
|
|
8301
|
+
status: { description: 'Status of the action.', type: 'string' },
|
|
7920
8302
|
workspace_id: {
|
|
7921
8303
|
description:
|
|
7922
8304
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
@@ -7937,22 +8319,23 @@ export default {
|
|
|
7937
8319
|
type: 'object',
|
|
7938
8320
|
},
|
|
7939
8321
|
{
|
|
7940
|
-
description:
|
|
8322
|
+
description:
|
|
8323
|
+
'A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login succeeded.',
|
|
7941
8324
|
properties: {
|
|
7942
8325
|
connect_webview_id: {
|
|
7943
|
-
description:
|
|
8326
|
+
description:
|
|
8327
|
+
'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
|
|
7944
8328
|
format: 'uuid',
|
|
7945
8329
|
type: 'string',
|
|
7946
|
-
'x-title': 'Connect Webview ID',
|
|
7947
8330
|
},
|
|
7948
8331
|
connected_account_id: {
|
|
7949
|
-
description:
|
|
8332
|
+
description:
|
|
8333
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7950
8334
|
format: 'uuid',
|
|
7951
8335
|
type: 'string',
|
|
7952
|
-
'x-title': 'Connected Account ID',
|
|
7953
8336
|
},
|
|
7954
8337
|
created_at: {
|
|
7955
|
-
description: '
|
|
8338
|
+
description: 'Date and time at which the event was created.',
|
|
7956
8339
|
format: 'date-time',
|
|
7957
8340
|
type: 'string',
|
|
7958
8341
|
},
|
|
@@ -7966,7 +8349,7 @@ export default {
|
|
|
7966
8349
|
type: 'string',
|
|
7967
8350
|
},
|
|
7968
8351
|
occurred_at: {
|
|
7969
|
-
description: '
|
|
8352
|
+
description: 'Date and time at which the event occurred.',
|
|
7970
8353
|
format: 'date-time',
|
|
7971
8354
|
type: 'string',
|
|
7972
8355
|
},
|
|
@@ -7989,16 +8372,17 @@ export default {
|
|
|
7989
8372
|
type: 'object',
|
|
7990
8373
|
},
|
|
7991
8374
|
{
|
|
7992
|
-
description:
|
|
8375
|
+
description:
|
|
8376
|
+
'A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login failed.',
|
|
7993
8377
|
properties: {
|
|
7994
8378
|
connect_webview_id: {
|
|
7995
|
-
description:
|
|
8379
|
+
description:
|
|
8380
|
+
'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
|
|
7996
8381
|
format: 'uuid',
|
|
7997
8382
|
type: 'string',
|
|
7998
|
-
'x-title': 'Connect Webview ID',
|
|
7999
8383
|
},
|
|
8000
8384
|
created_at: {
|
|
8001
|
-
description: '
|
|
8385
|
+
description: 'Date and time at which the event was created.',
|
|
8002
8386
|
format: 'date-time',
|
|
8003
8387
|
type: 'string',
|
|
8004
8388
|
},
|
|
@@ -8012,7 +8396,7 @@ export default {
|
|
|
8012
8396
|
type: 'string',
|
|
8013
8397
|
},
|
|
8014
8398
|
occurred_at: {
|
|
8015
|
-
description: '
|
|
8399
|
+
description: 'Date and time at which the event occurred.',
|
|
8016
8400
|
format: 'date-time',
|
|
8017
8401
|
type: 'string',
|
|
8018
8402
|
},
|
|
@@ -8034,7 +8418,8 @@ export default {
|
|
|
8034
8418
|
type: 'object',
|
|
8035
8419
|
},
|
|
8036
8420
|
{
|
|
8037
|
-
description:
|
|
8421
|
+
description:
|
|
8422
|
+
'The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`. Note that some devices operate entirely in offline mode, so Seam never emits a `device.connected` event for these devices.',
|
|
8038
8423
|
properties: {
|
|
8039
8424
|
connected_account_id: {
|
|
8040
8425
|
description:
|
|
@@ -8043,7 +8428,7 @@ export default {
|
|
|
8043
8428
|
type: 'string',
|
|
8044
8429
|
},
|
|
8045
8430
|
created_at: {
|
|
8046
|
-
description: '
|
|
8431
|
+
description: 'Date and time at which the event was created.',
|
|
8047
8432
|
format: 'date-time',
|
|
8048
8433
|
type: 'string',
|
|
8049
8434
|
},
|
|
@@ -8059,7 +8444,7 @@ export default {
|
|
|
8059
8444
|
},
|
|
8060
8445
|
event_type: { enum: ['device.connected'], type: 'string' },
|
|
8061
8446
|
occurred_at: {
|
|
8062
|
-
description: '
|
|
8447
|
+
description: 'Date and time at which the event occurred.',
|
|
8063
8448
|
format: 'date-time',
|
|
8064
8449
|
type: 'string',
|
|
8065
8450
|
},
|
|
@@ -8082,7 +8467,8 @@ export default {
|
|
|
8082
8467
|
type: 'object',
|
|
8083
8468
|
},
|
|
8084
8469
|
{
|
|
8085
|
-
description:
|
|
8470
|
+
description:
|
|
8471
|
+
'A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed.',
|
|
8086
8472
|
properties: {
|
|
8087
8473
|
connected_account_id: {
|
|
8088
8474
|
description:
|
|
@@ -8091,7 +8477,7 @@ export default {
|
|
|
8091
8477
|
type: 'string',
|
|
8092
8478
|
},
|
|
8093
8479
|
created_at: {
|
|
8094
|
-
description: '
|
|
8480
|
+
description: 'Date and time at which the event was created.',
|
|
8095
8481
|
format: 'date-time',
|
|
8096
8482
|
type: 'string',
|
|
8097
8483
|
},
|
|
@@ -8107,7 +8493,7 @@ export default {
|
|
|
8107
8493
|
},
|
|
8108
8494
|
event_type: { enum: ['device.added'], type: 'string' },
|
|
8109
8495
|
occurred_at: {
|
|
8110
|
-
description: '
|
|
8496
|
+
description: 'Date and time at which the event occurred.',
|
|
8111
8497
|
format: 'date-time',
|
|
8112
8498
|
type: 'string',
|
|
8113
8499
|
},
|
|
@@ -8140,7 +8526,7 @@ export default {
|
|
|
8140
8526
|
type: 'string',
|
|
8141
8527
|
},
|
|
8142
8528
|
created_at: {
|
|
8143
|
-
description: '
|
|
8529
|
+
description: 'Date and time at which the event was created.',
|
|
8144
8530
|
format: 'date-time',
|
|
8145
8531
|
type: 'string',
|
|
8146
8532
|
},
|
|
@@ -8159,7 +8545,7 @@ export default {
|
|
|
8159
8545
|
type: 'string',
|
|
8160
8546
|
},
|
|
8161
8547
|
occurred_at: {
|
|
8162
|
-
description: '
|
|
8548
|
+
description: 'Date and time at which the event occurred.',
|
|
8163
8549
|
format: 'date-time',
|
|
8164
8550
|
type: 'string',
|
|
8165
8551
|
},
|
|
@@ -8192,7 +8578,7 @@ export default {
|
|
|
8192
8578
|
type: 'string',
|
|
8193
8579
|
},
|
|
8194
8580
|
created_at: {
|
|
8195
|
-
description: '
|
|
8581
|
+
description: 'Date and time at which the event was created.',
|
|
8196
8582
|
format: 'date-time',
|
|
8197
8583
|
type: 'string',
|
|
8198
8584
|
},
|
|
@@ -8211,7 +8597,7 @@ export default {
|
|
|
8211
8597
|
type: 'string',
|
|
8212
8598
|
},
|
|
8213
8599
|
occurred_at: {
|
|
8214
|
-
description: '
|
|
8600
|
+
description: 'Date and time at which the event occurred.',
|
|
8215
8601
|
format: 'date-time',
|
|
8216
8602
|
type: 'string',
|
|
8217
8603
|
},
|
|
@@ -8235,7 +8621,7 @@ export default {
|
|
|
8235
8621
|
},
|
|
8236
8622
|
{
|
|
8237
8623
|
description:
|
|
8238
|
-
'
|
|
8624
|
+
'The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.',
|
|
8239
8625
|
properties: {
|
|
8240
8626
|
connected_account_id: {
|
|
8241
8627
|
description:
|
|
@@ -8244,7 +8630,7 @@ export default {
|
|
|
8244
8630
|
type: 'string',
|
|
8245
8631
|
},
|
|
8246
8632
|
created_at: {
|
|
8247
|
-
description: '
|
|
8633
|
+
description: 'Date and time at which the event was created.',
|
|
8248
8634
|
format: 'date-time',
|
|
8249
8635
|
type: 'string',
|
|
8250
8636
|
},
|
|
@@ -8263,7 +8649,7 @@ export default {
|
|
|
8263
8649
|
type: 'string',
|
|
8264
8650
|
},
|
|
8265
8651
|
occurred_at: {
|
|
8266
|
-
description: '
|
|
8652
|
+
description: 'Date and time at which the event occurred.',
|
|
8267
8653
|
format: 'date-time',
|
|
8268
8654
|
type: 'string',
|
|
8269
8655
|
},
|
|
@@ -8286,7 +8672,8 @@ export default {
|
|
|
8286
8672
|
type: 'object',
|
|
8287
8673
|
},
|
|
8288
8674
|
{
|
|
8289
|
-
description:
|
|
8675
|
+
description:
|
|
8676
|
+
'The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.',
|
|
8290
8677
|
properties: {
|
|
8291
8678
|
connected_account_id: {
|
|
8292
8679
|
description:
|
|
@@ -8295,7 +8682,7 @@ export default {
|
|
|
8295
8682
|
type: 'string',
|
|
8296
8683
|
},
|
|
8297
8684
|
created_at: {
|
|
8298
|
-
description: '
|
|
8685
|
+
description: 'Date and time at which the event was created.',
|
|
8299
8686
|
format: 'date-time',
|
|
8300
8687
|
type: 'string',
|
|
8301
8688
|
},
|
|
@@ -8321,7 +8708,7 @@ export default {
|
|
|
8321
8708
|
},
|
|
8322
8709
|
event_type: { enum: ['device.disconnected'], type: 'string' },
|
|
8323
8710
|
occurred_at: {
|
|
8324
|
-
description: '
|
|
8711
|
+
description: 'Date and time at which the event occurred.',
|
|
8325
8712
|
format: 'date-time',
|
|
8326
8713
|
type: 'string',
|
|
8327
8714
|
},
|
|
@@ -8346,7 +8733,7 @@ export default {
|
|
|
8346
8733
|
},
|
|
8347
8734
|
{
|
|
8348
8735
|
description:
|
|
8349
|
-
'
|
|
8736
|
+
'The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.',
|
|
8350
8737
|
properties: {
|
|
8351
8738
|
connected_account_id: {
|
|
8352
8739
|
description:
|
|
@@ -8355,7 +8742,7 @@ export default {
|
|
|
8355
8742
|
type: 'string',
|
|
8356
8743
|
},
|
|
8357
8744
|
created_at: {
|
|
8358
|
-
description: '
|
|
8745
|
+
description: 'Date and time at which the event was created.',
|
|
8359
8746
|
format: 'date-time',
|
|
8360
8747
|
type: 'string',
|
|
8361
8748
|
},
|
|
@@ -8384,7 +8771,7 @@ export default {
|
|
|
8384
8771
|
type: 'string',
|
|
8385
8772
|
},
|
|
8386
8773
|
occurred_at: {
|
|
8387
|
-
description: '
|
|
8774
|
+
description: 'Date and time at which the event occurred.',
|
|
8388
8775
|
format: 'date-time',
|
|
8389
8776
|
type: 'string',
|
|
8390
8777
|
},
|
|
@@ -8409,7 +8796,7 @@ export default {
|
|
|
8409
8796
|
},
|
|
8410
8797
|
{
|
|
8411
8798
|
description:
|
|
8412
|
-
'A device detected that it was tampered with, for example, opened or moved.',
|
|
8799
|
+
'A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved.',
|
|
8413
8800
|
properties: {
|
|
8414
8801
|
connected_account_id: {
|
|
8415
8802
|
description:
|
|
@@ -8418,7 +8805,7 @@ export default {
|
|
|
8418
8805
|
type: 'string',
|
|
8419
8806
|
},
|
|
8420
8807
|
created_at: {
|
|
8421
|
-
description: '
|
|
8808
|
+
description: 'Date and time at which the event was created.',
|
|
8422
8809
|
format: 'date-time',
|
|
8423
8810
|
type: 'string',
|
|
8424
8811
|
},
|
|
@@ -8434,7 +8821,7 @@ export default {
|
|
|
8434
8821
|
},
|
|
8435
8822
|
event_type: { enum: ['device.tampered'], type: 'string' },
|
|
8436
8823
|
occurred_at: {
|
|
8437
|
-
description: '
|
|
8824
|
+
description: 'Date and time at which the event occurred.',
|
|
8438
8825
|
format: 'date-time',
|
|
8439
8826
|
type: 'string',
|
|
8440
8827
|
},
|
|
@@ -8458,7 +8845,7 @@ export default {
|
|
|
8458
8845
|
},
|
|
8459
8846
|
{
|
|
8460
8847
|
description:
|
|
8461
|
-
'A device battery level dropped below the low threshold.',
|
|
8848
|
+
'A [device](https://docs.seam.co/latest/core-concepts/devices) battery level dropped below the low threshold.',
|
|
8462
8849
|
properties: {
|
|
8463
8850
|
battery_level: {
|
|
8464
8851
|
description:
|
|
@@ -8475,7 +8862,7 @@ export default {
|
|
|
8475
8862
|
type: 'string',
|
|
8476
8863
|
},
|
|
8477
8864
|
created_at: {
|
|
8478
|
-
description: '
|
|
8865
|
+
description: 'Date and time at which the event was created.',
|
|
8479
8866
|
format: 'date-time',
|
|
8480
8867
|
type: 'string',
|
|
8481
8868
|
},
|
|
@@ -8491,7 +8878,7 @@ export default {
|
|
|
8491
8878
|
},
|
|
8492
8879
|
event_type: { enum: ['device.low_battery'], type: 'string' },
|
|
8493
8880
|
occurred_at: {
|
|
8494
|
-
description: '
|
|
8881
|
+
description: 'Date and time at which the event occurred.',
|
|
8495
8882
|
format: 'date-time',
|
|
8496
8883
|
type: 'string',
|
|
8497
8884
|
},
|
|
@@ -8516,7 +8903,7 @@ export default {
|
|
|
8516
8903
|
},
|
|
8517
8904
|
{
|
|
8518
8905
|
description:
|
|
8519
|
-
'A device battery status changed since the last `battery_status_changed` event.',
|
|
8906
|
+
'A [device](https://docs.seam.co/latest/core-concepts/devices) battery status changed since the last `battery_status_changed` event.',
|
|
8520
8907
|
properties: {
|
|
8521
8908
|
battery_level: {
|
|
8522
8909
|
description:
|
|
@@ -8539,7 +8926,7 @@ export default {
|
|
|
8539
8926
|
type: 'string',
|
|
8540
8927
|
},
|
|
8541
8928
|
created_at: {
|
|
8542
|
-
description: '
|
|
8929
|
+
description: 'Date and time at which the event was created.',
|
|
8543
8930
|
format: 'date-time',
|
|
8544
8931
|
type: 'string',
|
|
8545
8932
|
},
|
|
@@ -8558,7 +8945,7 @@ export default {
|
|
|
8558
8945
|
type: 'string',
|
|
8559
8946
|
},
|
|
8560
8947
|
occurred_at: {
|
|
8561
|
-
description: '
|
|
8948
|
+
description: 'Date and time at which the event occurred.',
|
|
8562
8949
|
format: 'date-time',
|
|
8563
8950
|
type: 'string',
|
|
8564
8951
|
},
|
|
@@ -8584,7 +8971,7 @@ export default {
|
|
|
8584
8971
|
},
|
|
8585
8972
|
{
|
|
8586
8973
|
description:
|
|
8587
|
-
'A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8974
|
+
'A [device](https://docs.seam.co/latest/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8588
8975
|
properties: {
|
|
8589
8976
|
connected_account_id: {
|
|
8590
8977
|
description:
|
|
@@ -8593,7 +8980,7 @@ export default {
|
|
|
8593
8980
|
type: 'string',
|
|
8594
8981
|
},
|
|
8595
8982
|
created_at: {
|
|
8596
|
-
description: '
|
|
8983
|
+
description: 'Date and time at which the event was created.',
|
|
8597
8984
|
format: 'date-time',
|
|
8598
8985
|
type: 'string',
|
|
8599
8986
|
},
|
|
@@ -8609,7 +8996,7 @@ export default {
|
|
|
8609
8996
|
},
|
|
8610
8997
|
event_type: { enum: ['device.removed'], type: 'string' },
|
|
8611
8998
|
occurred_at: {
|
|
8612
|
-
description: '
|
|
8999
|
+
description: 'Date and time at which the event occurred.',
|
|
8613
9000
|
format: 'date-time',
|
|
8614
9001
|
type: 'string',
|
|
8615
9002
|
},
|
|
@@ -8633,7 +9020,7 @@ export default {
|
|
|
8633
9020
|
},
|
|
8634
9021
|
{
|
|
8635
9022
|
description:
|
|
8636
|
-
'A device
|
|
9023
|
+
'A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted.',
|
|
8637
9024
|
properties: {
|
|
8638
9025
|
connected_account_id: {
|
|
8639
9026
|
description:
|
|
@@ -8642,7 +9029,7 @@ export default {
|
|
|
8642
9029
|
type: 'string',
|
|
8643
9030
|
},
|
|
8644
9031
|
created_at: {
|
|
8645
|
-
description: '
|
|
9032
|
+
description: 'Date and time at which the event was created.',
|
|
8646
9033
|
format: 'date-time',
|
|
8647
9034
|
type: 'string',
|
|
8648
9035
|
},
|
|
@@ -8658,7 +9045,7 @@ export default {
|
|
|
8658
9045
|
},
|
|
8659
9046
|
event_type: { enum: ['device.deleted'], type: 'string' },
|
|
8660
9047
|
occurred_at: {
|
|
8661
|
-
description: '
|
|
9048
|
+
description: 'Date and time at which the event occurred.',
|
|
8662
9049
|
format: 'date-time',
|
|
8663
9050
|
type: 'string',
|
|
8664
9051
|
},
|
|
@@ -8682,7 +9069,7 @@ export default {
|
|
|
8682
9069
|
},
|
|
8683
9070
|
{
|
|
8684
9071
|
description:
|
|
8685
|
-
'Seam detected that a device is using a third-party integration that will interfere with Seam device management.',
|
|
9072
|
+
'Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is using a third-party integration that will interfere with Seam device management.',
|
|
8686
9073
|
properties: {
|
|
8687
9074
|
connected_account_id: {
|
|
8688
9075
|
description:
|
|
@@ -8691,7 +9078,7 @@ export default {
|
|
|
8691
9078
|
type: 'string',
|
|
8692
9079
|
},
|
|
8693
9080
|
created_at: {
|
|
8694
|
-
description: '
|
|
9081
|
+
description: 'Date and time at which the event was created.',
|
|
8695
9082
|
format: 'date-time',
|
|
8696
9083
|
type: 'string',
|
|
8697
9084
|
},
|
|
@@ -8710,7 +9097,7 @@ export default {
|
|
|
8710
9097
|
type: 'string',
|
|
8711
9098
|
},
|
|
8712
9099
|
occurred_at: {
|
|
8713
|
-
description: '
|
|
9100
|
+
description: 'Date and time at which the event occurred.',
|
|
8714
9101
|
format: 'date-time',
|
|
8715
9102
|
type: 'string',
|
|
8716
9103
|
},
|
|
@@ -8734,7 +9121,7 @@ export default {
|
|
|
8734
9121
|
},
|
|
8735
9122
|
{
|
|
8736
9123
|
description:
|
|
8737
|
-
'Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management.',
|
|
9124
|
+
'Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is no longer using a third-party integration that was interfering with Seam device management.',
|
|
8738
9125
|
properties: {
|
|
8739
9126
|
connected_account_id: {
|
|
8740
9127
|
description:
|
|
@@ -8743,7 +9130,7 @@ export default {
|
|
|
8743
9130
|
type: 'string',
|
|
8744
9131
|
},
|
|
8745
9132
|
created_at: {
|
|
8746
|
-
description: '
|
|
9133
|
+
description: 'Date and time at which the event was created.',
|
|
8747
9134
|
format: 'date-time',
|
|
8748
9135
|
type: 'string',
|
|
8749
9136
|
},
|
|
@@ -8762,7 +9149,7 @@ export default {
|
|
|
8762
9149
|
type: 'string',
|
|
8763
9150
|
},
|
|
8764
9151
|
occurred_at: {
|
|
8765
|
-
description: '
|
|
9152
|
+
description: 'Date and time at which the event occurred.',
|
|
8766
9153
|
format: 'date-time',
|
|
8767
9154
|
type: 'string',
|
|
8768
9155
|
},
|
|
@@ -8785,7 +9172,8 @@ export default {
|
|
|
8785
9172
|
type: 'object',
|
|
8786
9173
|
},
|
|
8787
9174
|
{
|
|
8788
|
-
description:
|
|
9175
|
+
description:
|
|
9176
|
+
'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode.',
|
|
8789
9177
|
properties: {
|
|
8790
9178
|
connected_account_id: {
|
|
8791
9179
|
description:
|
|
@@ -8794,7 +9182,7 @@ export default {
|
|
|
8794
9182
|
type: 'string',
|
|
8795
9183
|
},
|
|
8796
9184
|
created_at: {
|
|
8797
|
-
description: '
|
|
9185
|
+
description: 'Date and time at which the event was created.',
|
|
8798
9186
|
format: 'date-time',
|
|
8799
9187
|
type: 'string',
|
|
8800
9188
|
},
|
|
@@ -8813,7 +9201,7 @@ export default {
|
|
|
8813
9201
|
type: 'string',
|
|
8814
9202
|
},
|
|
8815
9203
|
occurred_at: {
|
|
8816
|
-
description: '
|
|
9204
|
+
description: 'Date and time at which the event occurred.',
|
|
8817
9205
|
format: 'date-time',
|
|
8818
9206
|
type: 'string',
|
|
8819
9207
|
},
|
|
@@ -8836,7 +9224,8 @@ export default {
|
|
|
8836
9224
|
type: 'object',
|
|
8837
9225
|
},
|
|
8838
9226
|
{
|
|
8839
|
-
description:
|
|
9227
|
+
description:
|
|
9228
|
+
'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode.',
|
|
8840
9229
|
properties: {
|
|
8841
9230
|
connected_account_id: {
|
|
8842
9231
|
description:
|
|
@@ -8845,7 +9234,7 @@ export default {
|
|
|
8845
9234
|
type: 'string',
|
|
8846
9235
|
},
|
|
8847
9236
|
created_at: {
|
|
8848
|
-
description: '
|
|
9237
|
+
description: 'Date and time at which the event was created.',
|
|
8849
9238
|
format: 'date-time',
|
|
8850
9239
|
type: 'string',
|
|
8851
9240
|
},
|
|
@@ -8864,7 +9253,7 @@ export default {
|
|
|
8864
9253
|
type: 'string',
|
|
8865
9254
|
},
|
|
8866
9255
|
occurred_at: {
|
|
8867
|
-
description: '
|
|
9256
|
+
description: 'Date and time at which the event occurred.',
|
|
8868
9257
|
format: 'date-time',
|
|
8869
9258
|
type: 'string',
|
|
8870
9259
|
},
|
|
@@ -8887,7 +9276,8 @@ export default {
|
|
|
8887
9276
|
type: 'object',
|
|
8888
9277
|
},
|
|
8889
9278
|
{
|
|
8890
|
-
description:
|
|
9279
|
+
description:
|
|
9280
|
+
'Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection.',
|
|
8891
9281
|
properties: {
|
|
8892
9282
|
connected_account_id: {
|
|
8893
9283
|
description:
|
|
@@ -8896,7 +9286,7 @@ export default {
|
|
|
8896
9286
|
type: 'string',
|
|
8897
9287
|
},
|
|
8898
9288
|
created_at: {
|
|
8899
|
-
description: '
|
|
9289
|
+
description: 'Date and time at which the event was created.',
|
|
8900
9290
|
format: 'date-time',
|
|
8901
9291
|
type: 'string',
|
|
8902
9292
|
},
|
|
@@ -8915,7 +9305,7 @@ export default {
|
|
|
8915
9305
|
type: 'string',
|
|
8916
9306
|
},
|
|
8917
9307
|
occurred_at: {
|
|
8918
|
-
description: '
|
|
9308
|
+
description: 'Date and time at which the event occurred.',
|
|
8919
9309
|
format: 'date-time',
|
|
8920
9310
|
type: 'string',
|
|
8921
9311
|
},
|
|
@@ -8939,7 +9329,7 @@ export default {
|
|
|
8939
9329
|
},
|
|
8940
9330
|
{
|
|
8941
9331
|
description:
|
|
8942
|
-
'Seam detected that a previously-flaky device connection stabilized.',
|
|
9332
|
+
'Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized.',
|
|
8943
9333
|
properties: {
|
|
8944
9334
|
connected_account_id: {
|
|
8945
9335
|
description:
|
|
@@ -8948,7 +9338,7 @@ export default {
|
|
|
8948
9338
|
type: 'string',
|
|
8949
9339
|
},
|
|
8950
9340
|
created_at: {
|
|
8951
|
-
description: '
|
|
9341
|
+
description: 'Date and time at which the event was created.',
|
|
8952
9342
|
format: 'date-time',
|
|
8953
9343
|
type: 'string',
|
|
8954
9344
|
},
|
|
@@ -8967,7 +9357,7 @@ export default {
|
|
|
8967
9357
|
type: 'string',
|
|
8968
9358
|
},
|
|
8969
9359
|
occurred_at: {
|
|
8970
|
-
description: '
|
|
9360
|
+
description: 'Date and time at which the event occurred.',
|
|
8971
9361
|
format: 'date-time',
|
|
8972
9362
|
type: 'string',
|
|
8973
9363
|
},
|
|
@@ -8991,7 +9381,7 @@ export default {
|
|
|
8991
9381
|
},
|
|
8992
9382
|
{
|
|
8993
9383
|
description:
|
|
8994
|
-
'A third-party subscription is required to use all device features.',
|
|
9384
|
+
'A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
|
|
8995
9385
|
properties: {
|
|
8996
9386
|
connected_account_id: {
|
|
8997
9387
|
description:
|
|
@@ -9000,7 +9390,7 @@ export default {
|
|
|
9000
9390
|
type: 'string',
|
|
9001
9391
|
},
|
|
9002
9392
|
created_at: {
|
|
9003
|
-
description: '
|
|
9393
|
+
description: 'Date and time at which the event was created.',
|
|
9004
9394
|
format: 'date-time',
|
|
9005
9395
|
type: 'string',
|
|
9006
9396
|
},
|
|
@@ -9019,7 +9409,7 @@ export default {
|
|
|
9019
9409
|
type: 'string',
|
|
9020
9410
|
},
|
|
9021
9411
|
occurred_at: {
|
|
9022
|
-
description: '
|
|
9412
|
+
description: 'Date and time at which the event occurred.',
|
|
9023
9413
|
format: 'date-time',
|
|
9024
9414
|
type: 'string',
|
|
9025
9415
|
},
|
|
@@ -9043,7 +9433,7 @@ export default {
|
|
|
9043
9433
|
},
|
|
9044
9434
|
{
|
|
9045
9435
|
description:
|
|
9046
|
-
'A third-party subscription is active or no longer required to use all device features.',
|
|
9436
|
+
'A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
|
|
9047
9437
|
properties: {
|
|
9048
9438
|
connected_account_id: {
|
|
9049
9439
|
description:
|
|
@@ -9052,7 +9442,7 @@ export default {
|
|
|
9052
9442
|
type: 'string',
|
|
9053
9443
|
},
|
|
9054
9444
|
created_at: {
|
|
9055
|
-
description: '
|
|
9445
|
+
description: 'Date and time at which the event was created.',
|
|
9056
9446
|
format: 'date-time',
|
|
9057
9447
|
type: 'string',
|
|
9058
9448
|
},
|
|
@@ -9071,7 +9461,7 @@ export default {
|
|
|
9071
9461
|
type: 'string',
|
|
9072
9462
|
},
|
|
9073
9463
|
occurred_at: {
|
|
9074
|
-
description: '
|
|
9464
|
+
description: 'Date and time at which the event occurred.',
|
|
9075
9465
|
format: 'date-time',
|
|
9076
9466
|
type: 'string',
|
|
9077
9467
|
},
|
|
@@ -9094,7 +9484,8 @@ export default {
|
|
|
9094
9484
|
type: 'object',
|
|
9095
9485
|
},
|
|
9096
9486
|
{
|
|
9097
|
-
description:
|
|
9487
|
+
description:
|
|
9488
|
+
'An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
9098
9489
|
properties: {
|
|
9099
9490
|
connected_account_id: {
|
|
9100
9491
|
description:
|
|
@@ -9103,7 +9494,7 @@ export default {
|
|
|
9103
9494
|
type: 'string',
|
|
9104
9495
|
},
|
|
9105
9496
|
created_at: {
|
|
9106
|
-
description: '
|
|
9497
|
+
description: 'Date and time at which the event was created.',
|
|
9107
9498
|
format: 'date-time',
|
|
9108
9499
|
type: 'string',
|
|
9109
9500
|
},
|
|
@@ -9122,7 +9513,7 @@ export default {
|
|
|
9122
9513
|
type: 'string',
|
|
9123
9514
|
},
|
|
9124
9515
|
occurred_at: {
|
|
9125
|
-
description: '
|
|
9516
|
+
description: 'Date and time at which the event occurred.',
|
|
9126
9517
|
format: 'date-time',
|
|
9127
9518
|
type: 'string',
|
|
9128
9519
|
},
|
|
@@ -9145,7 +9536,8 @@ export default {
|
|
|
9145
9536
|
type: 'object',
|
|
9146
9537
|
},
|
|
9147
9538
|
{
|
|
9148
|
-
description:
|
|
9539
|
+
description:
|
|
9540
|
+
'An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
9149
9541
|
properties: {
|
|
9150
9542
|
connected_account_id: {
|
|
9151
9543
|
description:
|
|
@@ -9154,7 +9546,7 @@ export default {
|
|
|
9154
9546
|
type: 'string',
|
|
9155
9547
|
},
|
|
9156
9548
|
created_at: {
|
|
9157
|
-
description: '
|
|
9549
|
+
description: 'Date and time at which the event was created.',
|
|
9158
9550
|
format: 'date-time',
|
|
9159
9551
|
type: 'string',
|
|
9160
9552
|
},
|
|
@@ -9173,7 +9565,7 @@ export default {
|
|
|
9173
9565
|
type: 'string',
|
|
9174
9566
|
},
|
|
9175
9567
|
occurred_at: {
|
|
9176
|
-
description: '
|
|
9568
|
+
description: 'Date and time at which the event occurred.',
|
|
9177
9569
|
format: 'date-time',
|
|
9178
9570
|
type: 'string',
|
|
9179
9571
|
},
|
|
@@ -9206,7 +9598,7 @@ export default {
|
|
|
9206
9598
|
type: 'string',
|
|
9207
9599
|
},
|
|
9208
9600
|
created_at: {
|
|
9209
|
-
description: '
|
|
9601
|
+
description: 'Date and time at which the event was created.',
|
|
9210
9602
|
format: 'date-time',
|
|
9211
9603
|
type: 'string',
|
|
9212
9604
|
},
|
|
@@ -9228,7 +9620,6 @@ export default {
|
|
|
9228
9620
|
additionalProperties: {},
|
|
9229
9621
|
description: 'Metadata from Minut.',
|
|
9230
9622
|
type: 'object',
|
|
9231
|
-
'x-title': 'Minut Metadata',
|
|
9232
9623
|
},
|
|
9233
9624
|
noise_level_decibels: {
|
|
9234
9625
|
description: 'Detected noise level in decibels.',
|
|
@@ -9256,10 +9647,9 @@ export default {
|
|
|
9256
9647
|
additionalProperties: {},
|
|
9257
9648
|
description: 'Metadata from Noiseaware.',
|
|
9258
9649
|
type: 'object',
|
|
9259
|
-
'x-title': 'Noiseaware Metadata',
|
|
9260
9650
|
},
|
|
9261
9651
|
occurred_at: {
|
|
9262
|
-
description: '
|
|
9652
|
+
description: 'Date and time at which the event occurred.',
|
|
9263
9653
|
format: 'date-time',
|
|
9264
9654
|
type: 'string',
|
|
9265
9655
|
},
|
|
@@ -9282,7 +9672,8 @@ export default {
|
|
|
9282
9672
|
type: 'object',
|
|
9283
9673
|
},
|
|
9284
9674
|
{
|
|
9285
|
-
description:
|
|
9675
|
+
description:
|
|
9676
|
+
'A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was locked.',
|
|
9286
9677
|
properties: {
|
|
9287
9678
|
access_code_id: {
|
|
9288
9679
|
description:
|
|
@@ -9303,7 +9694,7 @@ export default {
|
|
|
9303
9694
|
type: 'string',
|
|
9304
9695
|
},
|
|
9305
9696
|
created_at: {
|
|
9306
|
-
description: '
|
|
9697
|
+
description: 'Date and time at which the event was created.',
|
|
9307
9698
|
format: 'date-time',
|
|
9308
9699
|
type: 'string',
|
|
9309
9700
|
},
|
|
@@ -9320,12 +9711,12 @@ export default {
|
|
|
9320
9711
|
event_type: { enum: ['lock.locked'], type: 'string' },
|
|
9321
9712
|
method: {
|
|
9322
9713
|
description:
|
|
9323
|
-
'Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
9714
|
+
'Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
9324
9715
|
enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
|
|
9325
9716
|
type: 'string',
|
|
9326
9717
|
},
|
|
9327
9718
|
occurred_at: {
|
|
9328
|
-
description: '
|
|
9719
|
+
description: 'Date and time at which the event occurred.',
|
|
9329
9720
|
format: 'date-time',
|
|
9330
9721
|
type: 'string',
|
|
9331
9722
|
},
|
|
@@ -9349,7 +9740,8 @@ export default {
|
|
|
9349
9740
|
type: 'object',
|
|
9350
9741
|
},
|
|
9351
9742
|
{
|
|
9352
|
-
description:
|
|
9743
|
+
description:
|
|
9744
|
+
'A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked.',
|
|
9353
9745
|
properties: {
|
|
9354
9746
|
access_code_id: {
|
|
9355
9747
|
description:
|
|
@@ -9370,7 +9762,7 @@ export default {
|
|
|
9370
9762
|
type: 'string',
|
|
9371
9763
|
},
|
|
9372
9764
|
created_at: {
|
|
9373
|
-
description: '
|
|
9765
|
+
description: 'Date and time at which the event was created.',
|
|
9374
9766
|
format: 'date-time',
|
|
9375
9767
|
type: 'string',
|
|
9376
9768
|
},
|
|
@@ -9387,12 +9779,12 @@ export default {
|
|
|
9387
9779
|
event_type: { enum: ['lock.unlocked'], type: 'string' },
|
|
9388
9780
|
method: {
|
|
9389
9781
|
description:
|
|
9390
|
-
'Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
9782
|
+
'Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
9391
9783
|
enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
|
|
9392
9784
|
type: 'string',
|
|
9393
9785
|
},
|
|
9394
9786
|
occurred_at: {
|
|
9395
|
-
description: '
|
|
9787
|
+
description: 'Date and time at which the event occurred.',
|
|
9396
9788
|
format: 'date-time',
|
|
9397
9789
|
type: 'string',
|
|
9398
9790
|
},
|
|
@@ -9417,7 +9809,7 @@ export default {
|
|
|
9417
9809
|
},
|
|
9418
9810
|
{
|
|
9419
9811
|
description:
|
|
9420
|
-
'The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.',
|
|
9812
|
+
'The [lock](https://docs.seam.co/latest/capability-guides/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device.',
|
|
9421
9813
|
properties: {
|
|
9422
9814
|
access_code_id: {
|
|
9423
9815
|
description:
|
|
@@ -9432,7 +9824,7 @@ export default {
|
|
|
9432
9824
|
type: 'string',
|
|
9433
9825
|
},
|
|
9434
9826
|
created_at: {
|
|
9435
|
-
description: '
|
|
9827
|
+
description: 'Date and time at which the event was created.',
|
|
9436
9828
|
format: 'date-time',
|
|
9437
9829
|
type: 'string',
|
|
9438
9830
|
},
|
|
@@ -9448,7 +9840,7 @@ export default {
|
|
|
9448
9840
|
},
|
|
9449
9841
|
event_type: { enum: ['lock.access_denied'], type: 'string' },
|
|
9450
9842
|
occurred_at: {
|
|
9451
|
-
description: '
|
|
9843
|
+
description: 'Date and time at which the event occurred.',
|
|
9452
9844
|
format: 'date-time',
|
|
9453
9845
|
type: 'string',
|
|
9454
9846
|
},
|
|
@@ -9486,7 +9878,7 @@ export default {
|
|
|
9486
9878
|
type: 'string',
|
|
9487
9879
|
},
|
|
9488
9880
|
created_at: {
|
|
9489
|
-
description: '
|
|
9881
|
+
description: 'Date and time at which the event was created.',
|
|
9490
9882
|
format: 'date-time',
|
|
9491
9883
|
type: 'string',
|
|
9492
9884
|
},
|
|
@@ -9506,11 +9898,11 @@ export default {
|
|
|
9506
9898
|
},
|
|
9507
9899
|
is_fallback_climate_preset: {
|
|
9508
9900
|
description:
|
|
9509
|
-
'Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat.',
|
|
9901
|
+
'Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9510
9902
|
type: 'boolean',
|
|
9511
9903
|
},
|
|
9512
9904
|
occurred_at: {
|
|
9513
|
-
description: '
|
|
9905
|
+
description: 'Date and time at which the event occurred.',
|
|
9514
9906
|
format: 'date-time',
|
|
9515
9907
|
type: 'string',
|
|
9516
9908
|
},
|
|
@@ -9543,7 +9935,8 @@ export default {
|
|
|
9543
9935
|
type: 'object',
|
|
9544
9936
|
},
|
|
9545
9937
|
{
|
|
9546
|
-
description:
|
|
9938
|
+
description:
|
|
9939
|
+
'A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually.',
|
|
9547
9940
|
properties: {
|
|
9548
9941
|
connected_account_id: {
|
|
9549
9942
|
description:
|
|
@@ -9564,7 +9957,7 @@ export default {
|
|
|
9564
9957
|
type: 'number',
|
|
9565
9958
|
},
|
|
9566
9959
|
created_at: {
|
|
9567
|
-
description: '
|
|
9960
|
+
description: 'Date and time at which the event was created.',
|
|
9568
9961
|
format: 'date-time',
|
|
9569
9962
|
type: 'string',
|
|
9570
9963
|
},
|
|
@@ -9608,12 +10001,12 @@ export default {
|
|
|
9608
10001
|
},
|
|
9609
10002
|
method: {
|
|
9610
10003
|
description:
|
|
9611
|
-
'Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat.',
|
|
10004
|
+
'Method used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9612
10005
|
enum: ['seam', 'external'],
|
|
9613
10006
|
type: 'string',
|
|
9614
10007
|
},
|
|
9615
10008
|
occurred_at: {
|
|
9616
|
-
description: '
|
|
10009
|
+
description: 'Date and time at which the event occurred.',
|
|
9617
10010
|
format: 'date-time',
|
|
9618
10011
|
type: 'string',
|
|
9619
10012
|
},
|
|
@@ -9638,7 +10031,7 @@ export default {
|
|
|
9638
10031
|
},
|
|
9639
10032
|
{
|
|
9640
10033
|
description:
|
|
9641
|
-
"A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
10034
|
+
"A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
9642
10035
|
properties: {
|
|
9643
10036
|
connected_account_id: {
|
|
9644
10037
|
description:
|
|
@@ -9647,7 +10040,7 @@ export default {
|
|
|
9647
10040
|
type: 'string',
|
|
9648
10041
|
},
|
|
9649
10042
|
created_at: {
|
|
9650
|
-
description: '
|
|
10043
|
+
description: 'Date and time at which the event was created.',
|
|
9651
10044
|
format: 'date-time',
|
|
9652
10045
|
type: 'string',
|
|
9653
10046
|
},
|
|
@@ -9680,17 +10073,19 @@ export default {
|
|
|
9680
10073
|
type: 'number',
|
|
9681
10074
|
},
|
|
9682
10075
|
occurred_at: {
|
|
9683
|
-
description: '
|
|
10076
|
+
description: 'Date and time at which the event occurred.',
|
|
9684
10077
|
format: 'date-time',
|
|
9685
10078
|
type: 'string',
|
|
9686
10079
|
},
|
|
9687
10080
|
temperature_celsius: {
|
|
9688
|
-
description:
|
|
10081
|
+
description:
|
|
10082
|
+
'Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9689
10083
|
format: 'float',
|
|
9690
10084
|
type: 'number',
|
|
9691
10085
|
},
|
|
9692
10086
|
temperature_fahrenheit: {
|
|
9693
|
-
description:
|
|
10087
|
+
description:
|
|
10088
|
+
'Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9694
10089
|
format: 'float',
|
|
9695
10090
|
type: 'number',
|
|
9696
10091
|
},
|
|
@@ -9734,7 +10129,7 @@ export default {
|
|
|
9734
10129
|
},
|
|
9735
10130
|
{
|
|
9736
10131
|
description:
|
|
9737
|
-
"A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
10132
|
+
"A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
9738
10133
|
properties: {
|
|
9739
10134
|
connected_account_id: {
|
|
9740
10135
|
description:
|
|
@@ -9743,7 +10138,7 @@ export default {
|
|
|
9743
10138
|
type: 'string',
|
|
9744
10139
|
},
|
|
9745
10140
|
created_at: {
|
|
9746
|
-
description: '
|
|
10141
|
+
description: 'Date and time at which the event was created.',
|
|
9747
10142
|
format: 'date-time',
|
|
9748
10143
|
type: 'string',
|
|
9749
10144
|
},
|
|
@@ -9776,17 +10171,19 @@ export default {
|
|
|
9776
10171
|
type: 'number',
|
|
9777
10172
|
},
|
|
9778
10173
|
occurred_at: {
|
|
9779
|
-
description: '
|
|
10174
|
+
description: 'Date and time at which the event occurred.',
|
|
9780
10175
|
format: 'date-time',
|
|
9781
10176
|
type: 'string',
|
|
9782
10177
|
},
|
|
9783
10178
|
temperature_celsius: {
|
|
9784
|
-
description:
|
|
10179
|
+
description:
|
|
10180
|
+
'Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9785
10181
|
format: 'float',
|
|
9786
10182
|
type: 'number',
|
|
9787
10183
|
},
|
|
9788
10184
|
temperature_fahrenheit: {
|
|
9789
|
-
description:
|
|
10185
|
+
description:
|
|
10186
|
+
'Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
|
|
9790
10187
|
format: 'float',
|
|
9791
10188
|
type: 'number',
|
|
9792
10189
|
},
|
|
@@ -9829,18 +10226,19 @@ export default {
|
|
|
9829
10226
|
type: 'object',
|
|
9830
10227
|
},
|
|
9831
10228
|
{
|
|
9832
|
-
description:
|
|
10229
|
+
description:
|
|
10230
|
+
'An [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) was deleted.',
|
|
9833
10231
|
properties: {
|
|
9834
10232
|
created_at: {
|
|
9835
|
-
description: '
|
|
10233
|
+
description: 'Date and time at which the event was created.',
|
|
9836
10234
|
format: 'date-time',
|
|
9837
10235
|
type: 'string',
|
|
9838
10236
|
},
|
|
9839
10237
|
enrollment_automation_id: {
|
|
9840
|
-
description:
|
|
10238
|
+
description:
|
|
10239
|
+
'ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut).',
|
|
9841
10240
|
format: 'uuid',
|
|
9842
10241
|
type: 'string',
|
|
9843
|
-
'x-title': 'Enrollment Automation ID',
|
|
9844
10242
|
},
|
|
9845
10243
|
event_id: {
|
|
9846
10244
|
description: 'ID of the event.',
|
|
@@ -9852,7 +10250,7 @@ export default {
|
|
|
9852
10250
|
type: 'string',
|
|
9853
10251
|
},
|
|
9854
10252
|
occurred_at: {
|
|
9855
|
-
description: '
|
|
10253
|
+
description: 'Date and time at which the event occurred.',
|
|
9856
10254
|
format: 'date-time',
|
|
9857
10255
|
type: 'string',
|
|
9858
10256
|
},
|
|
@@ -9877,15 +10275,15 @@ export default {
|
|
|
9877
10275
|
description: 'A phone device was deactivated.',
|
|
9878
10276
|
properties: {
|
|
9879
10277
|
created_at: {
|
|
9880
|
-
description: '
|
|
10278
|
+
description: 'Date and time at which the event was created.',
|
|
9881
10279
|
format: 'date-time',
|
|
9882
10280
|
type: 'string',
|
|
9883
10281
|
},
|
|
9884
10282
|
device_id: {
|
|
9885
|
-
description:
|
|
10283
|
+
description:
|
|
10284
|
+
'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
9886
10285
|
format: 'uuid',
|
|
9887
10286
|
type: 'string',
|
|
9888
|
-
'x-title': 'Device ID',
|
|
9889
10287
|
},
|
|
9890
10288
|
event_id: {
|
|
9891
10289
|
description: 'ID of the event.',
|
|
@@ -9894,7 +10292,7 @@ export default {
|
|
|
9894
10292
|
},
|
|
9895
10293
|
event_type: { enum: ['phone.deactivated'], type: 'string' },
|
|
9896
10294
|
occurred_at: {
|
|
9897
|
-
description: '
|
|
10295
|
+
description: 'Date and time at which the event occurred.',
|
|
9898
10296
|
format: 'date-time',
|
|
9899
10297
|
type: 'string',
|
|
9900
10298
|
},
|
|
@@ -10005,13 +10403,205 @@ export default {
|
|
|
10005
10403
|
items: {
|
|
10006
10404
|
oneOf: [
|
|
10007
10405
|
{
|
|
10008
|
-
|
|
10009
|
-
|
|
10010
|
-
|
|
10011
|
-
|
|
10012
|
-
|
|
10013
|
-
|
|
10014
|
-
|
|
10406
|
+
description: 'Error associated with the `device`.',
|
|
10407
|
+
oneOf: [
|
|
10408
|
+
{
|
|
10409
|
+
description: 'Device is offline',
|
|
10410
|
+
properties: {
|
|
10411
|
+
error_code: {
|
|
10412
|
+
description:
|
|
10413
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10414
|
+
enum: ['device_offline'],
|
|
10415
|
+
type: 'string',
|
|
10416
|
+
},
|
|
10417
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10418
|
+
message: { type: 'string' },
|
|
10419
|
+
},
|
|
10420
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10421
|
+
type: 'object',
|
|
10422
|
+
},
|
|
10423
|
+
{
|
|
10424
|
+
description: 'Device has been removed',
|
|
10425
|
+
properties: {
|
|
10426
|
+
error_code: {
|
|
10427
|
+
description:
|
|
10428
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10429
|
+
enum: ['device_removed'],
|
|
10430
|
+
type: 'string',
|
|
10431
|
+
},
|
|
10432
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10433
|
+
message: { type: 'string' },
|
|
10434
|
+
},
|
|
10435
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10436
|
+
type: 'object',
|
|
10437
|
+
},
|
|
10438
|
+
{
|
|
10439
|
+
description: 'Account is disconnected',
|
|
10440
|
+
properties: {
|
|
10441
|
+
error_code: {
|
|
10442
|
+
description:
|
|
10443
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10444
|
+
enum: ['account_disconnected'],
|
|
10445
|
+
type: 'string',
|
|
10446
|
+
},
|
|
10447
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10448
|
+
message: { type: 'string' },
|
|
10449
|
+
},
|
|
10450
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10451
|
+
type: 'object',
|
|
10452
|
+
},
|
|
10453
|
+
{
|
|
10454
|
+
description: 'Hub is disconnected',
|
|
10455
|
+
properties: {
|
|
10456
|
+
error_code: {
|
|
10457
|
+
description:
|
|
10458
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10459
|
+
enum: ['hub_disconnected'],
|
|
10460
|
+
type: 'string',
|
|
10461
|
+
},
|
|
10462
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10463
|
+
message: { type: 'string' },
|
|
10464
|
+
},
|
|
10465
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10466
|
+
type: 'object',
|
|
10467
|
+
},
|
|
10468
|
+
{
|
|
10469
|
+
description: 'Device is disconnected',
|
|
10470
|
+
properties: {
|
|
10471
|
+
error_code: {
|
|
10472
|
+
description:
|
|
10473
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10474
|
+
enum: ['device_disconnected'],
|
|
10475
|
+
type: 'string',
|
|
10476
|
+
},
|
|
10477
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10478
|
+
message: { type: 'string' },
|
|
10479
|
+
},
|
|
10480
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10481
|
+
type: 'object',
|
|
10482
|
+
},
|
|
10483
|
+
{
|
|
10484
|
+
description: 'The backup access code pool is empty.',
|
|
10485
|
+
properties: {
|
|
10486
|
+
error_code: {
|
|
10487
|
+
description:
|
|
10488
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10489
|
+
enum: ['empty_backup_access_code_pool'],
|
|
10490
|
+
type: 'string',
|
|
10491
|
+
},
|
|
10492
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10493
|
+
message: { type: 'string' },
|
|
10494
|
+
},
|
|
10495
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10496
|
+
type: 'object',
|
|
10497
|
+
},
|
|
10498
|
+
{
|
|
10499
|
+
description:
|
|
10500
|
+
'User is not authorized to use the August Lock.',
|
|
10501
|
+
properties: {
|
|
10502
|
+
error_code: {
|
|
10503
|
+
description:
|
|
10504
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10505
|
+
enum: ['august_lock_not_authorized'],
|
|
10506
|
+
type: 'string',
|
|
10507
|
+
},
|
|
10508
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10509
|
+
message: { type: 'string' },
|
|
10510
|
+
},
|
|
10511
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10512
|
+
type: 'object',
|
|
10513
|
+
},
|
|
10514
|
+
{
|
|
10515
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
10516
|
+
properties: {
|
|
10517
|
+
error_code: {
|
|
10518
|
+
description:
|
|
10519
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10520
|
+
enum: ['august_lock_missing_bridge'],
|
|
10521
|
+
type: 'string',
|
|
10522
|
+
},
|
|
10523
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10524
|
+
message: { type: 'string' },
|
|
10525
|
+
},
|
|
10526
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10527
|
+
type: 'object',
|
|
10528
|
+
},
|
|
10529
|
+
{
|
|
10530
|
+
description: 'Salto site user limit reached.',
|
|
10531
|
+
properties: {
|
|
10532
|
+
error_code: {
|
|
10533
|
+
description:
|
|
10534
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10535
|
+
enum: ['salto_site_user_limit_reached'],
|
|
10536
|
+
type: 'string',
|
|
10537
|
+
},
|
|
10538
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10539
|
+
message: { type: 'string' },
|
|
10540
|
+
},
|
|
10541
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10542
|
+
type: 'object',
|
|
10543
|
+
},
|
|
10544
|
+
{
|
|
10545
|
+
description: 'Lock is not paired with a Gateway.',
|
|
10546
|
+
properties: {
|
|
10547
|
+
error_code: {
|
|
10548
|
+
description:
|
|
10549
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10550
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
10551
|
+
type: 'string',
|
|
10552
|
+
},
|
|
10553
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10554
|
+
message: { type: 'string' },
|
|
10555
|
+
},
|
|
10556
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10557
|
+
type: 'object',
|
|
10558
|
+
},
|
|
10559
|
+
{
|
|
10560
|
+
description: 'Missing device credentials.',
|
|
10561
|
+
properties: {
|
|
10562
|
+
error_code: {
|
|
10563
|
+
description:
|
|
10564
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10565
|
+
enum: ['missing_device_credentials'],
|
|
10566
|
+
type: 'string',
|
|
10567
|
+
},
|
|
10568
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10569
|
+
message: { type: 'string' },
|
|
10570
|
+
},
|
|
10571
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10572
|
+
type: 'object',
|
|
10573
|
+
},
|
|
10574
|
+
{
|
|
10575
|
+
description: 'The auxiliary heat is running.',
|
|
10576
|
+
properties: {
|
|
10577
|
+
error_code: {
|
|
10578
|
+
description:
|
|
10579
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10580
|
+
enum: ['auxiliary_heat_running'],
|
|
10581
|
+
type: 'string',
|
|
10582
|
+
},
|
|
10583
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10584
|
+
message: { type: 'string' },
|
|
10585
|
+
},
|
|
10586
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10587
|
+
type: 'object',
|
|
10588
|
+
},
|
|
10589
|
+
{
|
|
10590
|
+
description: 'Subscription required to connect.',
|
|
10591
|
+
properties: {
|
|
10592
|
+
error_code: {
|
|
10593
|
+
description:
|
|
10594
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10595
|
+
enum: ['subscription_required'],
|
|
10596
|
+
type: 'string',
|
|
10597
|
+
},
|
|
10598
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10599
|
+
message: { type: 'string' },
|
|
10600
|
+
},
|
|
10601
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10602
|
+
type: 'object',
|
|
10603
|
+
},
|
|
10604
|
+
],
|
|
10015
10605
|
},
|
|
10016
10606
|
{
|
|
10017
10607
|
properties: {
|
|
@@ -10252,13 +10842,205 @@ export default {
|
|
|
10252
10842
|
type: 'object',
|
|
10253
10843
|
},
|
|
10254
10844
|
{
|
|
10255
|
-
|
|
10256
|
-
|
|
10257
|
-
|
|
10258
|
-
|
|
10259
|
-
|
|
10260
|
-
|
|
10261
|
-
|
|
10845
|
+
description: 'Error associated with the `device`.',
|
|
10846
|
+
oneOf: [
|
|
10847
|
+
{
|
|
10848
|
+
description: 'Device is offline',
|
|
10849
|
+
properties: {
|
|
10850
|
+
error_code: {
|
|
10851
|
+
description:
|
|
10852
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10853
|
+
enum: ['device_offline'],
|
|
10854
|
+
type: 'string',
|
|
10855
|
+
},
|
|
10856
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10857
|
+
message: { type: 'string' },
|
|
10858
|
+
},
|
|
10859
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10860
|
+
type: 'object',
|
|
10861
|
+
},
|
|
10862
|
+
{
|
|
10863
|
+
description: 'Device has been removed',
|
|
10864
|
+
properties: {
|
|
10865
|
+
error_code: {
|
|
10866
|
+
description:
|
|
10867
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10868
|
+
enum: ['device_removed'],
|
|
10869
|
+
type: 'string',
|
|
10870
|
+
},
|
|
10871
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10872
|
+
message: { type: 'string' },
|
|
10873
|
+
},
|
|
10874
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10875
|
+
type: 'object',
|
|
10876
|
+
},
|
|
10877
|
+
{
|
|
10878
|
+
description: 'Account is disconnected',
|
|
10879
|
+
properties: {
|
|
10880
|
+
error_code: {
|
|
10881
|
+
description:
|
|
10882
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10883
|
+
enum: ['account_disconnected'],
|
|
10884
|
+
type: 'string',
|
|
10885
|
+
},
|
|
10886
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10887
|
+
message: { type: 'string' },
|
|
10888
|
+
},
|
|
10889
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10890
|
+
type: 'object',
|
|
10891
|
+
},
|
|
10892
|
+
{
|
|
10893
|
+
description: 'Hub is disconnected',
|
|
10894
|
+
properties: {
|
|
10895
|
+
error_code: {
|
|
10896
|
+
description:
|
|
10897
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10898
|
+
enum: ['hub_disconnected'],
|
|
10899
|
+
type: 'string',
|
|
10900
|
+
},
|
|
10901
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10902
|
+
message: { type: 'string' },
|
|
10903
|
+
},
|
|
10904
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10905
|
+
type: 'object',
|
|
10906
|
+
},
|
|
10907
|
+
{
|
|
10908
|
+
description: 'Device is disconnected',
|
|
10909
|
+
properties: {
|
|
10910
|
+
error_code: {
|
|
10911
|
+
description:
|
|
10912
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10913
|
+
enum: ['device_disconnected'],
|
|
10914
|
+
type: 'string',
|
|
10915
|
+
},
|
|
10916
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10917
|
+
message: { type: 'string' },
|
|
10918
|
+
},
|
|
10919
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10920
|
+
type: 'object',
|
|
10921
|
+
},
|
|
10922
|
+
{
|
|
10923
|
+
description: 'The backup access code pool is empty.',
|
|
10924
|
+
properties: {
|
|
10925
|
+
error_code: {
|
|
10926
|
+
description:
|
|
10927
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10928
|
+
enum: ['empty_backup_access_code_pool'],
|
|
10929
|
+
type: 'string',
|
|
10930
|
+
},
|
|
10931
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10932
|
+
message: { type: 'string' },
|
|
10933
|
+
},
|
|
10934
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10935
|
+
type: 'object',
|
|
10936
|
+
},
|
|
10937
|
+
{
|
|
10938
|
+
description:
|
|
10939
|
+
'User is not authorized to use the August Lock.',
|
|
10940
|
+
properties: {
|
|
10941
|
+
error_code: {
|
|
10942
|
+
description:
|
|
10943
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10944
|
+
enum: ['august_lock_not_authorized'],
|
|
10945
|
+
type: 'string',
|
|
10946
|
+
},
|
|
10947
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10948
|
+
message: { type: 'string' },
|
|
10949
|
+
},
|
|
10950
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10951
|
+
type: 'object',
|
|
10952
|
+
},
|
|
10953
|
+
{
|
|
10954
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
10955
|
+
properties: {
|
|
10956
|
+
error_code: {
|
|
10957
|
+
description:
|
|
10958
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10959
|
+
enum: ['august_lock_missing_bridge'],
|
|
10960
|
+
type: 'string',
|
|
10961
|
+
},
|
|
10962
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10963
|
+
message: { type: 'string' },
|
|
10964
|
+
},
|
|
10965
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10966
|
+
type: 'object',
|
|
10967
|
+
},
|
|
10968
|
+
{
|
|
10969
|
+
description: 'Salto site user limit reached.',
|
|
10970
|
+
properties: {
|
|
10971
|
+
error_code: {
|
|
10972
|
+
description:
|
|
10973
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10974
|
+
enum: ['salto_site_user_limit_reached'],
|
|
10975
|
+
type: 'string',
|
|
10976
|
+
},
|
|
10977
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10978
|
+
message: { type: 'string' },
|
|
10979
|
+
},
|
|
10980
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10981
|
+
type: 'object',
|
|
10982
|
+
},
|
|
10983
|
+
{
|
|
10984
|
+
description: 'Lock is not paired with a Gateway.',
|
|
10985
|
+
properties: {
|
|
10986
|
+
error_code: {
|
|
10987
|
+
description:
|
|
10988
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
10989
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
10990
|
+
type: 'string',
|
|
10991
|
+
},
|
|
10992
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
10993
|
+
message: { type: 'string' },
|
|
10994
|
+
},
|
|
10995
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
10996
|
+
type: 'object',
|
|
10997
|
+
},
|
|
10998
|
+
{
|
|
10999
|
+
description: 'Missing device credentials.',
|
|
11000
|
+
properties: {
|
|
11001
|
+
error_code: {
|
|
11002
|
+
description:
|
|
11003
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11004
|
+
enum: ['missing_device_credentials'],
|
|
11005
|
+
type: 'string',
|
|
11006
|
+
},
|
|
11007
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11008
|
+
message: { type: 'string' },
|
|
11009
|
+
},
|
|
11010
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11011
|
+
type: 'object',
|
|
11012
|
+
},
|
|
11013
|
+
{
|
|
11014
|
+
description: 'The auxiliary heat is running.',
|
|
11015
|
+
properties: {
|
|
11016
|
+
error_code: {
|
|
11017
|
+
description:
|
|
11018
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11019
|
+
enum: ['auxiliary_heat_running'],
|
|
11020
|
+
type: 'string',
|
|
11021
|
+
},
|
|
11022
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11023
|
+
message: { type: 'string' },
|
|
11024
|
+
},
|
|
11025
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11026
|
+
type: 'object',
|
|
11027
|
+
},
|
|
11028
|
+
{
|
|
11029
|
+
description: 'Subscription required to connect.',
|
|
11030
|
+
properties: {
|
|
11031
|
+
error_code: {
|
|
11032
|
+
description:
|
|
11033
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11034
|
+
enum: ['subscription_required'],
|
|
11035
|
+
type: 'string',
|
|
11036
|
+
},
|
|
11037
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11038
|
+
message: { type: 'string' },
|
|
11039
|
+
},
|
|
11040
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11041
|
+
type: 'object',
|
|
11042
|
+
},
|
|
11043
|
+
],
|
|
10262
11044
|
},
|
|
10263
11045
|
{
|
|
10264
11046
|
properties: {
|
|
@@ -10432,13 +11214,205 @@ export default {
|
|
|
10432
11214
|
items: {
|
|
10433
11215
|
oneOf: [
|
|
10434
11216
|
{
|
|
10435
|
-
|
|
10436
|
-
|
|
10437
|
-
|
|
10438
|
-
|
|
10439
|
-
|
|
10440
|
-
|
|
10441
|
-
|
|
11217
|
+
description: 'Error associated with the `device`.',
|
|
11218
|
+
oneOf: [
|
|
11219
|
+
{
|
|
11220
|
+
description: 'Device is offline',
|
|
11221
|
+
properties: {
|
|
11222
|
+
error_code: {
|
|
11223
|
+
description:
|
|
11224
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11225
|
+
enum: ['device_offline'],
|
|
11226
|
+
type: 'string',
|
|
11227
|
+
},
|
|
11228
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11229
|
+
message: { type: 'string' },
|
|
11230
|
+
},
|
|
11231
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11232
|
+
type: 'object',
|
|
11233
|
+
},
|
|
11234
|
+
{
|
|
11235
|
+
description: 'Device has been removed',
|
|
11236
|
+
properties: {
|
|
11237
|
+
error_code: {
|
|
11238
|
+
description:
|
|
11239
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11240
|
+
enum: ['device_removed'],
|
|
11241
|
+
type: 'string',
|
|
11242
|
+
},
|
|
11243
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11244
|
+
message: { type: 'string' },
|
|
11245
|
+
},
|
|
11246
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11247
|
+
type: 'object',
|
|
11248
|
+
},
|
|
11249
|
+
{
|
|
11250
|
+
description: 'Account is disconnected',
|
|
11251
|
+
properties: {
|
|
11252
|
+
error_code: {
|
|
11253
|
+
description:
|
|
11254
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11255
|
+
enum: ['account_disconnected'],
|
|
11256
|
+
type: 'string',
|
|
11257
|
+
},
|
|
11258
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11259
|
+
message: { type: 'string' },
|
|
11260
|
+
},
|
|
11261
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11262
|
+
type: 'object',
|
|
11263
|
+
},
|
|
11264
|
+
{
|
|
11265
|
+
description: 'Hub is disconnected',
|
|
11266
|
+
properties: {
|
|
11267
|
+
error_code: {
|
|
11268
|
+
description:
|
|
11269
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11270
|
+
enum: ['hub_disconnected'],
|
|
11271
|
+
type: 'string',
|
|
11272
|
+
},
|
|
11273
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11274
|
+
message: { type: 'string' },
|
|
11275
|
+
},
|
|
11276
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11277
|
+
type: 'object',
|
|
11278
|
+
},
|
|
11279
|
+
{
|
|
11280
|
+
description: 'Device is disconnected',
|
|
11281
|
+
properties: {
|
|
11282
|
+
error_code: {
|
|
11283
|
+
description:
|
|
11284
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11285
|
+
enum: ['device_disconnected'],
|
|
11286
|
+
type: 'string',
|
|
11287
|
+
},
|
|
11288
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11289
|
+
message: { type: 'string' },
|
|
11290
|
+
},
|
|
11291
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11292
|
+
type: 'object',
|
|
11293
|
+
},
|
|
11294
|
+
{
|
|
11295
|
+
description: 'The backup access code pool is empty.',
|
|
11296
|
+
properties: {
|
|
11297
|
+
error_code: {
|
|
11298
|
+
description:
|
|
11299
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11300
|
+
enum: ['empty_backup_access_code_pool'],
|
|
11301
|
+
type: 'string',
|
|
11302
|
+
},
|
|
11303
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11304
|
+
message: { type: 'string' },
|
|
11305
|
+
},
|
|
11306
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11307
|
+
type: 'object',
|
|
11308
|
+
},
|
|
11309
|
+
{
|
|
11310
|
+
description:
|
|
11311
|
+
'User is not authorized to use the August Lock.',
|
|
11312
|
+
properties: {
|
|
11313
|
+
error_code: {
|
|
11314
|
+
description:
|
|
11315
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11316
|
+
enum: ['august_lock_not_authorized'],
|
|
11317
|
+
type: 'string',
|
|
11318
|
+
},
|
|
11319
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11320
|
+
message: { type: 'string' },
|
|
11321
|
+
},
|
|
11322
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11323
|
+
type: 'object',
|
|
11324
|
+
},
|
|
11325
|
+
{
|
|
11326
|
+
description: 'Lock is not connected to the Seam Bridge.',
|
|
11327
|
+
properties: {
|
|
11328
|
+
error_code: {
|
|
11329
|
+
description:
|
|
11330
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11331
|
+
enum: ['august_lock_missing_bridge'],
|
|
11332
|
+
type: 'string',
|
|
11333
|
+
},
|
|
11334
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11335
|
+
message: { type: 'string' },
|
|
11336
|
+
},
|
|
11337
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11338
|
+
type: 'object',
|
|
11339
|
+
},
|
|
11340
|
+
{
|
|
11341
|
+
description: 'Salto site user limit reached.',
|
|
11342
|
+
properties: {
|
|
11343
|
+
error_code: {
|
|
11344
|
+
description:
|
|
11345
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11346
|
+
enum: ['salto_site_user_limit_reached'],
|
|
11347
|
+
type: 'string',
|
|
11348
|
+
},
|
|
11349
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11350
|
+
message: { type: 'string' },
|
|
11351
|
+
},
|
|
11352
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11353
|
+
type: 'object',
|
|
11354
|
+
},
|
|
11355
|
+
{
|
|
11356
|
+
description: 'Lock is not paired with a Gateway.',
|
|
11357
|
+
properties: {
|
|
11358
|
+
error_code: {
|
|
11359
|
+
description:
|
|
11360
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11361
|
+
enum: ['ttlock_lock_not_paired_to_gateway'],
|
|
11362
|
+
type: 'string',
|
|
11363
|
+
},
|
|
11364
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11365
|
+
message: { type: 'string' },
|
|
11366
|
+
},
|
|
11367
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11368
|
+
type: 'object',
|
|
11369
|
+
},
|
|
11370
|
+
{
|
|
11371
|
+
description: 'Missing device credentials.',
|
|
11372
|
+
properties: {
|
|
11373
|
+
error_code: {
|
|
11374
|
+
description:
|
|
11375
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11376
|
+
enum: ['missing_device_credentials'],
|
|
11377
|
+
type: 'string',
|
|
11378
|
+
},
|
|
11379
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11380
|
+
message: { type: 'string' },
|
|
11381
|
+
},
|
|
11382
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11383
|
+
type: 'object',
|
|
11384
|
+
},
|
|
11385
|
+
{
|
|
11386
|
+
description: 'The auxiliary heat is running.',
|
|
11387
|
+
properties: {
|
|
11388
|
+
error_code: {
|
|
11389
|
+
description:
|
|
11390
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11391
|
+
enum: ['auxiliary_heat_running'],
|
|
11392
|
+
type: 'string',
|
|
11393
|
+
},
|
|
11394
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11395
|
+
message: { type: 'string' },
|
|
11396
|
+
},
|
|
11397
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11398
|
+
type: 'object',
|
|
11399
|
+
},
|
|
11400
|
+
{
|
|
11401
|
+
description: 'Subscription required to connect.',
|
|
11402
|
+
properties: {
|
|
11403
|
+
error_code: {
|
|
11404
|
+
description:
|
|
11405
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
11406
|
+
enum: ['subscription_required'],
|
|
11407
|
+
type: 'string',
|
|
11408
|
+
},
|
|
11409
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
11410
|
+
message: { type: 'string' },
|
|
11411
|
+
},
|
|
11412
|
+
required: ['message', 'is_device_error', 'error_code'],
|
|
11413
|
+
type: 'object',
|
|
11414
|
+
},
|
|
11415
|
+
],
|
|
10442
11416
|
},
|
|
10443
11417
|
{
|
|
10444
11418
|
properties: {
|