@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
|
@@ -986,11 +986,86 @@ export interface Routes {
|
|
|
986
986
|
is_access_code_error: true
|
|
987
987
|
error_code: string
|
|
988
988
|
}
|
|
989
|
-
|
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
989
|
+
| (
|
|
990
|
+
| {
|
|
991
|
+
message: string
|
|
992
|
+
is_device_error: true
|
|
993
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
994
|
+
error_code: 'device_offline'
|
|
995
|
+
}
|
|
996
|
+
| {
|
|
997
|
+
message: string
|
|
998
|
+
is_device_error: true
|
|
999
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1000
|
+
error_code: 'device_removed'
|
|
1001
|
+
}
|
|
1002
|
+
| {
|
|
1003
|
+
message: string
|
|
1004
|
+
is_device_error: true
|
|
1005
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1006
|
+
error_code: 'account_disconnected'
|
|
1007
|
+
}
|
|
1008
|
+
| {
|
|
1009
|
+
message: string
|
|
1010
|
+
is_device_error: true
|
|
1011
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1012
|
+
error_code: 'hub_disconnected'
|
|
1013
|
+
}
|
|
1014
|
+
| {
|
|
1015
|
+
message: string
|
|
1016
|
+
is_device_error: true
|
|
1017
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1018
|
+
error_code: 'device_disconnected'
|
|
1019
|
+
}
|
|
1020
|
+
| {
|
|
1021
|
+
message: string
|
|
1022
|
+
is_device_error: true
|
|
1023
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1024
|
+
error_code: 'empty_backup_access_code_pool'
|
|
1025
|
+
}
|
|
1026
|
+
| {
|
|
1027
|
+
message: string
|
|
1028
|
+
is_device_error: true
|
|
1029
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1030
|
+
error_code: 'august_lock_not_authorized'
|
|
1031
|
+
}
|
|
1032
|
+
| {
|
|
1033
|
+
message: string
|
|
1034
|
+
is_device_error: true
|
|
1035
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1036
|
+
error_code: 'august_lock_missing_bridge'
|
|
1037
|
+
}
|
|
1038
|
+
| {
|
|
1039
|
+
message: string
|
|
1040
|
+
is_device_error: true
|
|
1041
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1042
|
+
error_code: 'salto_site_user_limit_reached'
|
|
1043
|
+
}
|
|
1044
|
+
| {
|
|
1045
|
+
message: string
|
|
1046
|
+
is_device_error: true
|
|
1047
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1048
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
1049
|
+
}
|
|
1050
|
+
| {
|
|
1051
|
+
message: string
|
|
1052
|
+
is_device_error: true
|
|
1053
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1054
|
+
error_code: 'missing_device_credentials'
|
|
1055
|
+
}
|
|
1056
|
+
| {
|
|
1057
|
+
message: string
|
|
1058
|
+
is_device_error: true
|
|
1059
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1060
|
+
error_code: 'auxiliary_heat_running'
|
|
1061
|
+
}
|
|
1062
|
+
| {
|
|
1063
|
+
message: string
|
|
1064
|
+
is_device_error: true
|
|
1065
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1066
|
+
error_code: 'subscription_required'
|
|
1067
|
+
}
|
|
1068
|
+
)
|
|
994
1069
|
| {
|
|
995
1070
|
message: string
|
|
996
1071
|
is_connected_account_error: true
|
|
@@ -1078,11 +1153,86 @@ export interface Routes {
|
|
|
1078
1153
|
is_access_code_error: true
|
|
1079
1154
|
error_code: string
|
|
1080
1155
|
}
|
|
1081
|
-
|
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1156
|
+
| (
|
|
1157
|
+
| {
|
|
1158
|
+
message: string
|
|
1159
|
+
is_device_error: true
|
|
1160
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1161
|
+
error_code: 'device_offline'
|
|
1162
|
+
}
|
|
1163
|
+
| {
|
|
1164
|
+
message: string
|
|
1165
|
+
is_device_error: true
|
|
1166
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1167
|
+
error_code: 'device_removed'
|
|
1168
|
+
}
|
|
1169
|
+
| {
|
|
1170
|
+
message: string
|
|
1171
|
+
is_device_error: true
|
|
1172
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1173
|
+
error_code: 'account_disconnected'
|
|
1174
|
+
}
|
|
1175
|
+
| {
|
|
1176
|
+
message: string
|
|
1177
|
+
is_device_error: true
|
|
1178
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1179
|
+
error_code: 'hub_disconnected'
|
|
1180
|
+
}
|
|
1181
|
+
| {
|
|
1182
|
+
message: string
|
|
1183
|
+
is_device_error: true
|
|
1184
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1185
|
+
error_code: 'device_disconnected'
|
|
1186
|
+
}
|
|
1187
|
+
| {
|
|
1188
|
+
message: string
|
|
1189
|
+
is_device_error: true
|
|
1190
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1191
|
+
error_code: 'empty_backup_access_code_pool'
|
|
1192
|
+
}
|
|
1193
|
+
| {
|
|
1194
|
+
message: string
|
|
1195
|
+
is_device_error: true
|
|
1196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1197
|
+
error_code: 'august_lock_not_authorized'
|
|
1198
|
+
}
|
|
1199
|
+
| {
|
|
1200
|
+
message: string
|
|
1201
|
+
is_device_error: true
|
|
1202
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1203
|
+
error_code: 'august_lock_missing_bridge'
|
|
1204
|
+
}
|
|
1205
|
+
| {
|
|
1206
|
+
message: string
|
|
1207
|
+
is_device_error: true
|
|
1208
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1209
|
+
error_code: 'salto_site_user_limit_reached'
|
|
1210
|
+
}
|
|
1211
|
+
| {
|
|
1212
|
+
message: string
|
|
1213
|
+
is_device_error: true
|
|
1214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1215
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
1216
|
+
}
|
|
1217
|
+
| {
|
|
1218
|
+
message: string
|
|
1219
|
+
is_device_error: true
|
|
1220
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1221
|
+
error_code: 'missing_device_credentials'
|
|
1222
|
+
}
|
|
1223
|
+
| {
|
|
1224
|
+
message: string
|
|
1225
|
+
is_device_error: true
|
|
1226
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1227
|
+
error_code: 'auxiliary_heat_running'
|
|
1228
|
+
}
|
|
1229
|
+
| {
|
|
1230
|
+
message: string
|
|
1231
|
+
is_device_error: true
|
|
1232
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1233
|
+
error_code: 'subscription_required'
|
|
1234
|
+
}
|
|
1235
|
+
)
|
|
1086
1236
|
| {
|
|
1087
1237
|
message: string
|
|
1088
1238
|
is_connected_account_error: true
|
|
@@ -2122,11 +2272,86 @@ export interface Routes {
|
|
|
2122
2272
|
is_access_code_error: true
|
|
2123
2273
|
error_code: string
|
|
2124
2274
|
}
|
|
2125
|
-
|
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2275
|
+
| (
|
|
2276
|
+
| {
|
|
2277
|
+
message: string
|
|
2278
|
+
is_device_error: true
|
|
2279
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2280
|
+
error_code: 'device_offline'
|
|
2281
|
+
}
|
|
2282
|
+
| {
|
|
2283
|
+
message: string
|
|
2284
|
+
is_device_error: true
|
|
2285
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2286
|
+
error_code: 'device_removed'
|
|
2287
|
+
}
|
|
2288
|
+
| {
|
|
2289
|
+
message: string
|
|
2290
|
+
is_device_error: true
|
|
2291
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2292
|
+
error_code: 'account_disconnected'
|
|
2293
|
+
}
|
|
2294
|
+
| {
|
|
2295
|
+
message: string
|
|
2296
|
+
is_device_error: true
|
|
2297
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2298
|
+
error_code: 'hub_disconnected'
|
|
2299
|
+
}
|
|
2300
|
+
| {
|
|
2301
|
+
message: string
|
|
2302
|
+
is_device_error: true
|
|
2303
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2304
|
+
error_code: 'device_disconnected'
|
|
2305
|
+
}
|
|
2306
|
+
| {
|
|
2307
|
+
message: string
|
|
2308
|
+
is_device_error: true
|
|
2309
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2310
|
+
error_code: 'empty_backup_access_code_pool'
|
|
2311
|
+
}
|
|
2312
|
+
| {
|
|
2313
|
+
message: string
|
|
2314
|
+
is_device_error: true
|
|
2315
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2316
|
+
error_code: 'august_lock_not_authorized'
|
|
2317
|
+
}
|
|
2318
|
+
| {
|
|
2319
|
+
message: string
|
|
2320
|
+
is_device_error: true
|
|
2321
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2322
|
+
error_code: 'august_lock_missing_bridge'
|
|
2323
|
+
}
|
|
2324
|
+
| {
|
|
2325
|
+
message: string
|
|
2326
|
+
is_device_error: true
|
|
2327
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2328
|
+
error_code: 'salto_site_user_limit_reached'
|
|
2329
|
+
}
|
|
2330
|
+
| {
|
|
2331
|
+
message: string
|
|
2332
|
+
is_device_error: true
|
|
2333
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2334
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2335
|
+
}
|
|
2336
|
+
| {
|
|
2337
|
+
message: string
|
|
2338
|
+
is_device_error: true
|
|
2339
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2340
|
+
error_code: 'missing_device_credentials'
|
|
2341
|
+
}
|
|
2342
|
+
| {
|
|
2343
|
+
message: string
|
|
2344
|
+
is_device_error: true
|
|
2345
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2346
|
+
error_code: 'auxiliary_heat_running'
|
|
2347
|
+
}
|
|
2348
|
+
| {
|
|
2349
|
+
message: string
|
|
2350
|
+
is_device_error: true
|
|
2351
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2352
|
+
error_code: 'subscription_required'
|
|
2353
|
+
}
|
|
2354
|
+
)
|
|
2130
2355
|
| {
|
|
2131
2356
|
message: string
|
|
2132
2357
|
is_connected_account_error: true
|
|
@@ -2201,11 +2426,86 @@ export interface Routes {
|
|
|
2201
2426
|
is_access_code_error: true
|
|
2202
2427
|
error_code: string
|
|
2203
2428
|
}
|
|
2204
|
-
|
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2429
|
+
| (
|
|
2430
|
+
| {
|
|
2431
|
+
message: string
|
|
2432
|
+
is_device_error: true
|
|
2433
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2434
|
+
error_code: 'device_offline'
|
|
2435
|
+
}
|
|
2436
|
+
| {
|
|
2437
|
+
message: string
|
|
2438
|
+
is_device_error: true
|
|
2439
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2440
|
+
error_code: 'device_removed'
|
|
2441
|
+
}
|
|
2442
|
+
| {
|
|
2443
|
+
message: string
|
|
2444
|
+
is_device_error: true
|
|
2445
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2446
|
+
error_code: 'account_disconnected'
|
|
2447
|
+
}
|
|
2448
|
+
| {
|
|
2449
|
+
message: string
|
|
2450
|
+
is_device_error: true
|
|
2451
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2452
|
+
error_code: 'hub_disconnected'
|
|
2453
|
+
}
|
|
2454
|
+
| {
|
|
2455
|
+
message: string
|
|
2456
|
+
is_device_error: true
|
|
2457
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2458
|
+
error_code: 'device_disconnected'
|
|
2459
|
+
}
|
|
2460
|
+
| {
|
|
2461
|
+
message: string
|
|
2462
|
+
is_device_error: true
|
|
2463
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2464
|
+
error_code: 'empty_backup_access_code_pool'
|
|
2465
|
+
}
|
|
2466
|
+
| {
|
|
2467
|
+
message: string
|
|
2468
|
+
is_device_error: true
|
|
2469
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2470
|
+
error_code: 'august_lock_not_authorized'
|
|
2471
|
+
}
|
|
2472
|
+
| {
|
|
2473
|
+
message: string
|
|
2474
|
+
is_device_error: true
|
|
2475
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2476
|
+
error_code: 'august_lock_missing_bridge'
|
|
2477
|
+
}
|
|
2478
|
+
| {
|
|
2479
|
+
message: string
|
|
2480
|
+
is_device_error: true
|
|
2481
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2482
|
+
error_code: 'salto_site_user_limit_reached'
|
|
2483
|
+
}
|
|
2484
|
+
| {
|
|
2485
|
+
message: string
|
|
2486
|
+
is_device_error: true
|
|
2487
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2488
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2489
|
+
}
|
|
2490
|
+
| {
|
|
2491
|
+
message: string
|
|
2492
|
+
is_device_error: true
|
|
2493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2494
|
+
error_code: 'missing_device_credentials'
|
|
2495
|
+
}
|
|
2496
|
+
| {
|
|
2497
|
+
message: string
|
|
2498
|
+
is_device_error: true
|
|
2499
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2500
|
+
error_code: 'auxiliary_heat_running'
|
|
2501
|
+
}
|
|
2502
|
+
| {
|
|
2503
|
+
message: string
|
|
2504
|
+
is_device_error: true
|
|
2505
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2506
|
+
error_code: 'subscription_required'
|
|
2507
|
+
}
|
|
2508
|
+
)
|
|
2209
2509
|
| {
|
|
2210
2510
|
message: string
|
|
2211
2511
|
is_connected_account_error: true
|
|
@@ -2278,11 +2578,86 @@ export interface Routes {
|
|
|
2278
2578
|
is_access_code_error: true
|
|
2279
2579
|
error_code: string
|
|
2280
2580
|
}
|
|
2281
|
-
|
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2581
|
+
| (
|
|
2582
|
+
| {
|
|
2583
|
+
message: string
|
|
2584
|
+
is_device_error: true
|
|
2585
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2586
|
+
error_code: 'device_offline'
|
|
2587
|
+
}
|
|
2588
|
+
| {
|
|
2589
|
+
message: string
|
|
2590
|
+
is_device_error: true
|
|
2591
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2592
|
+
error_code: 'device_removed'
|
|
2593
|
+
}
|
|
2594
|
+
| {
|
|
2595
|
+
message: string
|
|
2596
|
+
is_device_error: true
|
|
2597
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2598
|
+
error_code: 'account_disconnected'
|
|
2599
|
+
}
|
|
2600
|
+
| {
|
|
2601
|
+
message: string
|
|
2602
|
+
is_device_error: true
|
|
2603
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2604
|
+
error_code: 'hub_disconnected'
|
|
2605
|
+
}
|
|
2606
|
+
| {
|
|
2607
|
+
message: string
|
|
2608
|
+
is_device_error: true
|
|
2609
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2610
|
+
error_code: 'device_disconnected'
|
|
2611
|
+
}
|
|
2612
|
+
| {
|
|
2613
|
+
message: string
|
|
2614
|
+
is_device_error: true
|
|
2615
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2616
|
+
error_code: 'empty_backup_access_code_pool'
|
|
2617
|
+
}
|
|
2618
|
+
| {
|
|
2619
|
+
message: string
|
|
2620
|
+
is_device_error: true
|
|
2621
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2622
|
+
error_code: 'august_lock_not_authorized'
|
|
2623
|
+
}
|
|
2624
|
+
| {
|
|
2625
|
+
message: string
|
|
2626
|
+
is_device_error: true
|
|
2627
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2628
|
+
error_code: 'august_lock_missing_bridge'
|
|
2629
|
+
}
|
|
2630
|
+
| {
|
|
2631
|
+
message: string
|
|
2632
|
+
is_device_error: true
|
|
2633
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2634
|
+
error_code: 'salto_site_user_limit_reached'
|
|
2635
|
+
}
|
|
2636
|
+
| {
|
|
2637
|
+
message: string
|
|
2638
|
+
is_device_error: true
|
|
2639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2640
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2641
|
+
}
|
|
2642
|
+
| {
|
|
2643
|
+
message: string
|
|
2644
|
+
is_device_error: true
|
|
2645
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2646
|
+
error_code: 'missing_device_credentials'
|
|
2647
|
+
}
|
|
2648
|
+
| {
|
|
2649
|
+
message: string
|
|
2650
|
+
is_device_error: true
|
|
2651
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2652
|
+
error_code: 'auxiliary_heat_running'
|
|
2653
|
+
}
|
|
2654
|
+
| {
|
|
2655
|
+
message: string
|
|
2656
|
+
is_device_error: true
|
|
2657
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2658
|
+
error_code: 'subscription_required'
|
|
2659
|
+
}
|
|
2660
|
+
)
|
|
2286
2661
|
| {
|
|
2287
2662
|
message: string
|
|
2288
2663
|
is_connected_account_error: true
|
|
@@ -2343,11 +2718,86 @@ export interface Routes {
|
|
|
2343
2718
|
is_access_code_error: true
|
|
2344
2719
|
error_code: string
|
|
2345
2720
|
}
|
|
2346
|
-
|
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2721
|
+
| (
|
|
2722
|
+
| {
|
|
2723
|
+
message: string
|
|
2724
|
+
is_device_error: true
|
|
2725
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2726
|
+
error_code: 'device_offline'
|
|
2727
|
+
}
|
|
2728
|
+
| {
|
|
2729
|
+
message: string
|
|
2730
|
+
is_device_error: true
|
|
2731
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2732
|
+
error_code: 'device_removed'
|
|
2733
|
+
}
|
|
2734
|
+
| {
|
|
2735
|
+
message: string
|
|
2736
|
+
is_device_error: true
|
|
2737
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2738
|
+
error_code: 'account_disconnected'
|
|
2739
|
+
}
|
|
2740
|
+
| {
|
|
2741
|
+
message: string
|
|
2742
|
+
is_device_error: true
|
|
2743
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2744
|
+
error_code: 'hub_disconnected'
|
|
2745
|
+
}
|
|
2746
|
+
| {
|
|
2747
|
+
message: string
|
|
2748
|
+
is_device_error: true
|
|
2749
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2750
|
+
error_code: 'device_disconnected'
|
|
2751
|
+
}
|
|
2752
|
+
| {
|
|
2753
|
+
message: string
|
|
2754
|
+
is_device_error: true
|
|
2755
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2756
|
+
error_code: 'empty_backup_access_code_pool'
|
|
2757
|
+
}
|
|
2758
|
+
| {
|
|
2759
|
+
message: string
|
|
2760
|
+
is_device_error: true
|
|
2761
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2762
|
+
error_code: 'august_lock_not_authorized'
|
|
2763
|
+
}
|
|
2764
|
+
| {
|
|
2765
|
+
message: string
|
|
2766
|
+
is_device_error: true
|
|
2767
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2768
|
+
error_code: 'august_lock_missing_bridge'
|
|
2769
|
+
}
|
|
2770
|
+
| {
|
|
2771
|
+
message: string
|
|
2772
|
+
is_device_error: true
|
|
2773
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2774
|
+
error_code: 'salto_site_user_limit_reached'
|
|
2775
|
+
}
|
|
2776
|
+
| {
|
|
2777
|
+
message: string
|
|
2778
|
+
is_device_error: true
|
|
2779
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2780
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2781
|
+
}
|
|
2782
|
+
| {
|
|
2783
|
+
message: string
|
|
2784
|
+
is_device_error: true
|
|
2785
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2786
|
+
error_code: 'missing_device_credentials'
|
|
2787
|
+
}
|
|
2788
|
+
| {
|
|
2789
|
+
message: string
|
|
2790
|
+
is_device_error: true
|
|
2791
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2792
|
+
error_code: 'auxiliary_heat_running'
|
|
2793
|
+
}
|
|
2794
|
+
| {
|
|
2795
|
+
message: string
|
|
2796
|
+
is_device_error: true
|
|
2797
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2798
|
+
error_code: 'subscription_required'
|
|
2799
|
+
}
|
|
2800
|
+
)
|
|
2351
2801
|
| {
|
|
2352
2802
|
message: string
|
|
2353
2803
|
is_connected_account_error: true
|
|
@@ -2416,11 +2866,86 @@ export interface Routes {
|
|
|
2416
2866
|
is_access_code_error: true
|
|
2417
2867
|
error_code: string
|
|
2418
2868
|
}
|
|
2419
|
-
|
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2869
|
+
| (
|
|
2870
|
+
| {
|
|
2871
|
+
message: string
|
|
2872
|
+
is_device_error: true
|
|
2873
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2874
|
+
error_code: 'device_offline'
|
|
2875
|
+
}
|
|
2876
|
+
| {
|
|
2877
|
+
message: string
|
|
2878
|
+
is_device_error: true
|
|
2879
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2880
|
+
error_code: 'device_removed'
|
|
2881
|
+
}
|
|
2882
|
+
| {
|
|
2883
|
+
message: string
|
|
2884
|
+
is_device_error: true
|
|
2885
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2886
|
+
error_code: 'account_disconnected'
|
|
2887
|
+
}
|
|
2888
|
+
| {
|
|
2889
|
+
message: string
|
|
2890
|
+
is_device_error: true
|
|
2891
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2892
|
+
error_code: 'hub_disconnected'
|
|
2893
|
+
}
|
|
2894
|
+
| {
|
|
2895
|
+
message: string
|
|
2896
|
+
is_device_error: true
|
|
2897
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2898
|
+
error_code: 'device_disconnected'
|
|
2899
|
+
}
|
|
2900
|
+
| {
|
|
2901
|
+
message: string
|
|
2902
|
+
is_device_error: true
|
|
2903
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2904
|
+
error_code: 'empty_backup_access_code_pool'
|
|
2905
|
+
}
|
|
2906
|
+
| {
|
|
2907
|
+
message: string
|
|
2908
|
+
is_device_error: true
|
|
2909
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2910
|
+
error_code: 'august_lock_not_authorized'
|
|
2911
|
+
}
|
|
2912
|
+
| {
|
|
2913
|
+
message: string
|
|
2914
|
+
is_device_error: true
|
|
2915
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2916
|
+
error_code: 'august_lock_missing_bridge'
|
|
2917
|
+
}
|
|
2918
|
+
| {
|
|
2919
|
+
message: string
|
|
2920
|
+
is_device_error: true
|
|
2921
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2922
|
+
error_code: 'salto_site_user_limit_reached'
|
|
2923
|
+
}
|
|
2924
|
+
| {
|
|
2925
|
+
message: string
|
|
2926
|
+
is_device_error: true
|
|
2927
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2928
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2929
|
+
}
|
|
2930
|
+
| {
|
|
2931
|
+
message: string
|
|
2932
|
+
is_device_error: true
|
|
2933
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2934
|
+
error_code: 'missing_device_credentials'
|
|
2935
|
+
}
|
|
2936
|
+
| {
|
|
2937
|
+
message: string
|
|
2938
|
+
is_device_error: true
|
|
2939
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2940
|
+
error_code: 'auxiliary_heat_running'
|
|
2941
|
+
}
|
|
2942
|
+
| {
|
|
2943
|
+
message: string
|
|
2944
|
+
is_device_error: true
|
|
2945
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2946
|
+
error_code: 'subscription_required'
|
|
2947
|
+
}
|
|
2948
|
+
)
|
|
2424
2949
|
| {
|
|
2425
2950
|
message: string
|
|
2426
2951
|
is_connected_account_error: true
|
|
@@ -3436,11 +3961,86 @@ export interface Routes {
|
|
|
3436
3961
|
is_access_code_error: true
|
|
3437
3962
|
error_code: string
|
|
3438
3963
|
}
|
|
3439
|
-
|
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3964
|
+
| (
|
|
3965
|
+
| {
|
|
3966
|
+
message: string
|
|
3967
|
+
is_device_error: true
|
|
3968
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3969
|
+
error_code: 'device_offline'
|
|
3970
|
+
}
|
|
3971
|
+
| {
|
|
3972
|
+
message: string
|
|
3973
|
+
is_device_error: true
|
|
3974
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3975
|
+
error_code: 'device_removed'
|
|
3976
|
+
}
|
|
3977
|
+
| {
|
|
3978
|
+
message: string
|
|
3979
|
+
is_device_error: true
|
|
3980
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3981
|
+
error_code: 'account_disconnected'
|
|
3982
|
+
}
|
|
3983
|
+
| {
|
|
3984
|
+
message: string
|
|
3985
|
+
is_device_error: true
|
|
3986
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3987
|
+
error_code: 'hub_disconnected'
|
|
3988
|
+
}
|
|
3989
|
+
| {
|
|
3990
|
+
message: string
|
|
3991
|
+
is_device_error: true
|
|
3992
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3993
|
+
error_code: 'device_disconnected'
|
|
3994
|
+
}
|
|
3995
|
+
| {
|
|
3996
|
+
message: string
|
|
3997
|
+
is_device_error: true
|
|
3998
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3999
|
+
error_code: 'empty_backup_access_code_pool'
|
|
4000
|
+
}
|
|
4001
|
+
| {
|
|
4002
|
+
message: string
|
|
4003
|
+
is_device_error: true
|
|
4004
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4005
|
+
error_code: 'august_lock_not_authorized'
|
|
4006
|
+
}
|
|
4007
|
+
| {
|
|
4008
|
+
message: string
|
|
4009
|
+
is_device_error: true
|
|
4010
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4011
|
+
error_code: 'august_lock_missing_bridge'
|
|
4012
|
+
}
|
|
4013
|
+
| {
|
|
4014
|
+
message: string
|
|
4015
|
+
is_device_error: true
|
|
4016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4017
|
+
error_code: 'salto_site_user_limit_reached'
|
|
4018
|
+
}
|
|
4019
|
+
| {
|
|
4020
|
+
message: string
|
|
4021
|
+
is_device_error: true
|
|
4022
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4023
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
4024
|
+
}
|
|
4025
|
+
| {
|
|
4026
|
+
message: string
|
|
4027
|
+
is_device_error: true
|
|
4028
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4029
|
+
error_code: 'missing_device_credentials'
|
|
4030
|
+
}
|
|
4031
|
+
| {
|
|
4032
|
+
message: string
|
|
4033
|
+
is_device_error: true
|
|
4034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4035
|
+
error_code: 'auxiliary_heat_running'
|
|
4036
|
+
}
|
|
4037
|
+
| {
|
|
4038
|
+
message: string
|
|
4039
|
+
is_device_error: true
|
|
4040
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4041
|
+
error_code: 'subscription_required'
|
|
4042
|
+
}
|
|
4043
|
+
)
|
|
3444
4044
|
| {
|
|
3445
4045
|
message: string
|
|
3446
4046
|
is_connected_account_error: true
|
|
@@ -3492,11 +4092,86 @@ export interface Routes {
|
|
|
3492
4092
|
is_access_code_error: true
|
|
3493
4093
|
error_code: string
|
|
3494
4094
|
}
|
|
3495
|
-
|
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
4095
|
+
| (
|
|
4096
|
+
| {
|
|
4097
|
+
message: string
|
|
4098
|
+
is_device_error: true
|
|
4099
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4100
|
+
error_code: 'device_offline'
|
|
4101
|
+
}
|
|
4102
|
+
| {
|
|
4103
|
+
message: string
|
|
4104
|
+
is_device_error: true
|
|
4105
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4106
|
+
error_code: 'device_removed'
|
|
4107
|
+
}
|
|
4108
|
+
| {
|
|
4109
|
+
message: string
|
|
4110
|
+
is_device_error: true
|
|
4111
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4112
|
+
error_code: 'account_disconnected'
|
|
4113
|
+
}
|
|
4114
|
+
| {
|
|
4115
|
+
message: string
|
|
4116
|
+
is_device_error: true
|
|
4117
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4118
|
+
error_code: 'hub_disconnected'
|
|
4119
|
+
}
|
|
4120
|
+
| {
|
|
4121
|
+
message: string
|
|
4122
|
+
is_device_error: true
|
|
4123
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4124
|
+
error_code: 'device_disconnected'
|
|
4125
|
+
}
|
|
4126
|
+
| {
|
|
4127
|
+
message: string
|
|
4128
|
+
is_device_error: true
|
|
4129
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4130
|
+
error_code: 'empty_backup_access_code_pool'
|
|
4131
|
+
}
|
|
4132
|
+
| {
|
|
4133
|
+
message: string
|
|
4134
|
+
is_device_error: true
|
|
4135
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4136
|
+
error_code: 'august_lock_not_authorized'
|
|
4137
|
+
}
|
|
4138
|
+
| {
|
|
4139
|
+
message: string
|
|
4140
|
+
is_device_error: true
|
|
4141
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4142
|
+
error_code: 'august_lock_missing_bridge'
|
|
4143
|
+
}
|
|
4144
|
+
| {
|
|
4145
|
+
message: string
|
|
4146
|
+
is_device_error: true
|
|
4147
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4148
|
+
error_code: 'salto_site_user_limit_reached'
|
|
4149
|
+
}
|
|
4150
|
+
| {
|
|
4151
|
+
message: string
|
|
4152
|
+
is_device_error: true
|
|
4153
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4154
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
4155
|
+
}
|
|
4156
|
+
| {
|
|
4157
|
+
message: string
|
|
4158
|
+
is_device_error: true
|
|
4159
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4160
|
+
error_code: 'missing_device_credentials'
|
|
4161
|
+
}
|
|
4162
|
+
| {
|
|
4163
|
+
message: string
|
|
4164
|
+
is_device_error: true
|
|
4165
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4166
|
+
error_code: 'auxiliary_heat_running'
|
|
4167
|
+
}
|
|
4168
|
+
| {
|
|
4169
|
+
message: string
|
|
4170
|
+
is_device_error: true
|
|
4171
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4172
|
+
error_code: 'subscription_required'
|
|
4173
|
+
}
|
|
4174
|
+
)
|
|
3500
4175
|
| {
|
|
3501
4176
|
message: string
|
|
3502
4177
|
is_connected_account_error: true
|
|
@@ -13226,11 +13901,86 @@ export interface Routes {
|
|
|
13226
13901
|
workspace_id: string
|
|
13227
13902
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
13228
13903
|
errors: Array<
|
|
13229
|
-
|
|
|
13230
|
-
|
|
13231
|
-
|
|
13232
|
-
|
|
13233
|
-
|
|
13904
|
+
| (
|
|
13905
|
+
| {
|
|
13906
|
+
message: string
|
|
13907
|
+
is_device_error: true
|
|
13908
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13909
|
+
error_code: 'device_offline'
|
|
13910
|
+
}
|
|
13911
|
+
| {
|
|
13912
|
+
message: string
|
|
13913
|
+
is_device_error: true
|
|
13914
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13915
|
+
error_code: 'device_removed'
|
|
13916
|
+
}
|
|
13917
|
+
| {
|
|
13918
|
+
message: string
|
|
13919
|
+
is_device_error: true
|
|
13920
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13921
|
+
error_code: 'account_disconnected'
|
|
13922
|
+
}
|
|
13923
|
+
| {
|
|
13924
|
+
message: string
|
|
13925
|
+
is_device_error: true
|
|
13926
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13927
|
+
error_code: 'hub_disconnected'
|
|
13928
|
+
}
|
|
13929
|
+
| {
|
|
13930
|
+
message: string
|
|
13931
|
+
is_device_error: true
|
|
13932
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13933
|
+
error_code: 'device_disconnected'
|
|
13934
|
+
}
|
|
13935
|
+
| {
|
|
13936
|
+
message: string
|
|
13937
|
+
is_device_error: true
|
|
13938
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13939
|
+
error_code: 'empty_backup_access_code_pool'
|
|
13940
|
+
}
|
|
13941
|
+
| {
|
|
13942
|
+
message: string
|
|
13943
|
+
is_device_error: true
|
|
13944
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13945
|
+
error_code: 'august_lock_not_authorized'
|
|
13946
|
+
}
|
|
13947
|
+
| {
|
|
13948
|
+
message: string
|
|
13949
|
+
is_device_error: true
|
|
13950
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13951
|
+
error_code: 'august_lock_missing_bridge'
|
|
13952
|
+
}
|
|
13953
|
+
| {
|
|
13954
|
+
message: string
|
|
13955
|
+
is_device_error: true
|
|
13956
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13957
|
+
error_code: 'salto_site_user_limit_reached'
|
|
13958
|
+
}
|
|
13959
|
+
| {
|
|
13960
|
+
message: string
|
|
13961
|
+
is_device_error: true
|
|
13962
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13963
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
13964
|
+
}
|
|
13965
|
+
| {
|
|
13966
|
+
message: string
|
|
13967
|
+
is_device_error: true
|
|
13968
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13969
|
+
error_code: 'missing_device_credentials'
|
|
13970
|
+
}
|
|
13971
|
+
| {
|
|
13972
|
+
message: string
|
|
13973
|
+
is_device_error: true
|
|
13974
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13975
|
+
error_code: 'auxiliary_heat_running'
|
|
13976
|
+
}
|
|
13977
|
+
| {
|
|
13978
|
+
message: string
|
|
13979
|
+
is_device_error: true
|
|
13980
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13981
|
+
error_code: 'subscription_required'
|
|
13982
|
+
}
|
|
13983
|
+
)
|
|
13234
13984
|
| {
|
|
13235
13985
|
message: string
|
|
13236
13986
|
is_connected_account_error: true
|
|
@@ -14115,11 +14865,86 @@ export interface Routes {
|
|
|
14115
14865
|
workspace_id: string
|
|
14116
14866
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
14117
14867
|
errors: Array<
|
|
14118
|
-
|
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
|
|
14122
|
-
|
|
14868
|
+
| (
|
|
14869
|
+
| {
|
|
14870
|
+
message: string
|
|
14871
|
+
is_device_error: true
|
|
14872
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14873
|
+
error_code: 'device_offline'
|
|
14874
|
+
}
|
|
14875
|
+
| {
|
|
14876
|
+
message: string
|
|
14877
|
+
is_device_error: true
|
|
14878
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14879
|
+
error_code: 'device_removed'
|
|
14880
|
+
}
|
|
14881
|
+
| {
|
|
14882
|
+
message: string
|
|
14883
|
+
is_device_error: true
|
|
14884
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14885
|
+
error_code: 'account_disconnected'
|
|
14886
|
+
}
|
|
14887
|
+
| {
|
|
14888
|
+
message: string
|
|
14889
|
+
is_device_error: true
|
|
14890
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14891
|
+
error_code: 'hub_disconnected'
|
|
14892
|
+
}
|
|
14893
|
+
| {
|
|
14894
|
+
message: string
|
|
14895
|
+
is_device_error: true
|
|
14896
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14897
|
+
error_code: 'device_disconnected'
|
|
14898
|
+
}
|
|
14899
|
+
| {
|
|
14900
|
+
message: string
|
|
14901
|
+
is_device_error: true
|
|
14902
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14903
|
+
error_code: 'empty_backup_access_code_pool'
|
|
14904
|
+
}
|
|
14905
|
+
| {
|
|
14906
|
+
message: string
|
|
14907
|
+
is_device_error: true
|
|
14908
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14909
|
+
error_code: 'august_lock_not_authorized'
|
|
14910
|
+
}
|
|
14911
|
+
| {
|
|
14912
|
+
message: string
|
|
14913
|
+
is_device_error: true
|
|
14914
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14915
|
+
error_code: 'august_lock_missing_bridge'
|
|
14916
|
+
}
|
|
14917
|
+
| {
|
|
14918
|
+
message: string
|
|
14919
|
+
is_device_error: true
|
|
14920
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14921
|
+
error_code: 'salto_site_user_limit_reached'
|
|
14922
|
+
}
|
|
14923
|
+
| {
|
|
14924
|
+
message: string
|
|
14925
|
+
is_device_error: true
|
|
14926
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14927
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
14928
|
+
}
|
|
14929
|
+
| {
|
|
14930
|
+
message: string
|
|
14931
|
+
is_device_error: true
|
|
14932
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14933
|
+
error_code: 'missing_device_credentials'
|
|
14934
|
+
}
|
|
14935
|
+
| {
|
|
14936
|
+
message: string
|
|
14937
|
+
is_device_error: true
|
|
14938
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14939
|
+
error_code: 'auxiliary_heat_running'
|
|
14940
|
+
}
|
|
14941
|
+
| {
|
|
14942
|
+
message: string
|
|
14943
|
+
is_device_error: true
|
|
14944
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
14945
|
+
error_code: 'subscription_required'
|
|
14946
|
+
}
|
|
14947
|
+
)
|
|
14123
14948
|
| {
|
|
14124
14949
|
message: string
|
|
14125
14950
|
is_connected_account_error: true
|
|
@@ -14346,11 +15171,86 @@ export interface Routes {
|
|
|
14346
15171
|
workspace_id: string
|
|
14347
15172
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
14348
15173
|
errors: Array<
|
|
14349
|
-
|
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
15174
|
+
| (
|
|
15175
|
+
| {
|
|
15176
|
+
message: string
|
|
15177
|
+
is_device_error: true
|
|
15178
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15179
|
+
error_code: 'device_offline'
|
|
15180
|
+
}
|
|
15181
|
+
| {
|
|
15182
|
+
message: string
|
|
15183
|
+
is_device_error: true
|
|
15184
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15185
|
+
error_code: 'device_removed'
|
|
15186
|
+
}
|
|
15187
|
+
| {
|
|
15188
|
+
message: string
|
|
15189
|
+
is_device_error: true
|
|
15190
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15191
|
+
error_code: 'account_disconnected'
|
|
15192
|
+
}
|
|
15193
|
+
| {
|
|
15194
|
+
message: string
|
|
15195
|
+
is_device_error: true
|
|
15196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15197
|
+
error_code: 'hub_disconnected'
|
|
15198
|
+
}
|
|
15199
|
+
| {
|
|
15200
|
+
message: string
|
|
15201
|
+
is_device_error: true
|
|
15202
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15203
|
+
error_code: 'device_disconnected'
|
|
15204
|
+
}
|
|
15205
|
+
| {
|
|
15206
|
+
message: string
|
|
15207
|
+
is_device_error: true
|
|
15208
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15209
|
+
error_code: 'empty_backup_access_code_pool'
|
|
15210
|
+
}
|
|
15211
|
+
| {
|
|
15212
|
+
message: string
|
|
15213
|
+
is_device_error: true
|
|
15214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15215
|
+
error_code: 'august_lock_not_authorized'
|
|
15216
|
+
}
|
|
15217
|
+
| {
|
|
15218
|
+
message: string
|
|
15219
|
+
is_device_error: true
|
|
15220
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15221
|
+
error_code: 'august_lock_missing_bridge'
|
|
15222
|
+
}
|
|
15223
|
+
| {
|
|
15224
|
+
message: string
|
|
15225
|
+
is_device_error: true
|
|
15226
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15227
|
+
error_code: 'salto_site_user_limit_reached'
|
|
15228
|
+
}
|
|
15229
|
+
| {
|
|
15230
|
+
message: string
|
|
15231
|
+
is_device_error: true
|
|
15232
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15233
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
15234
|
+
}
|
|
15235
|
+
| {
|
|
15236
|
+
message: string
|
|
15237
|
+
is_device_error: true
|
|
15238
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15239
|
+
error_code: 'missing_device_credentials'
|
|
15240
|
+
}
|
|
15241
|
+
| {
|
|
15242
|
+
message: string
|
|
15243
|
+
is_device_error: true
|
|
15244
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15245
|
+
error_code: 'auxiliary_heat_running'
|
|
15246
|
+
}
|
|
15247
|
+
| {
|
|
15248
|
+
message: string
|
|
15249
|
+
is_device_error: true
|
|
15250
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15251
|
+
error_code: 'subscription_required'
|
|
15252
|
+
}
|
|
15253
|
+
)
|
|
14354
15254
|
| {
|
|
14355
15255
|
message: string
|
|
14356
15256
|
is_connected_account_error: true
|
|
@@ -14681,11 +15581,86 @@ export interface Routes {
|
|
|
14681
15581
|
workspace_id: string
|
|
14682
15582
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
14683
15583
|
errors: Array<
|
|
14684
|
-
|
|
|
14685
|
-
|
|
14686
|
-
|
|
14687
|
-
|
|
14688
|
-
|
|
15584
|
+
| (
|
|
15585
|
+
| {
|
|
15586
|
+
message: string
|
|
15587
|
+
is_device_error: true
|
|
15588
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15589
|
+
error_code: 'device_offline'
|
|
15590
|
+
}
|
|
15591
|
+
| {
|
|
15592
|
+
message: string
|
|
15593
|
+
is_device_error: true
|
|
15594
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15595
|
+
error_code: 'device_removed'
|
|
15596
|
+
}
|
|
15597
|
+
| {
|
|
15598
|
+
message: string
|
|
15599
|
+
is_device_error: true
|
|
15600
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15601
|
+
error_code: 'account_disconnected'
|
|
15602
|
+
}
|
|
15603
|
+
| {
|
|
15604
|
+
message: string
|
|
15605
|
+
is_device_error: true
|
|
15606
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15607
|
+
error_code: 'hub_disconnected'
|
|
15608
|
+
}
|
|
15609
|
+
| {
|
|
15610
|
+
message: string
|
|
15611
|
+
is_device_error: true
|
|
15612
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15613
|
+
error_code: 'device_disconnected'
|
|
15614
|
+
}
|
|
15615
|
+
| {
|
|
15616
|
+
message: string
|
|
15617
|
+
is_device_error: true
|
|
15618
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15619
|
+
error_code: 'empty_backup_access_code_pool'
|
|
15620
|
+
}
|
|
15621
|
+
| {
|
|
15622
|
+
message: string
|
|
15623
|
+
is_device_error: true
|
|
15624
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15625
|
+
error_code: 'august_lock_not_authorized'
|
|
15626
|
+
}
|
|
15627
|
+
| {
|
|
15628
|
+
message: string
|
|
15629
|
+
is_device_error: true
|
|
15630
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15631
|
+
error_code: 'august_lock_missing_bridge'
|
|
15632
|
+
}
|
|
15633
|
+
| {
|
|
15634
|
+
message: string
|
|
15635
|
+
is_device_error: true
|
|
15636
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15637
|
+
error_code: 'salto_site_user_limit_reached'
|
|
15638
|
+
}
|
|
15639
|
+
| {
|
|
15640
|
+
message: string
|
|
15641
|
+
is_device_error: true
|
|
15642
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15643
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
15644
|
+
}
|
|
15645
|
+
| {
|
|
15646
|
+
message: string
|
|
15647
|
+
is_device_error: true
|
|
15648
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15649
|
+
error_code: 'missing_device_credentials'
|
|
15650
|
+
}
|
|
15651
|
+
| {
|
|
15652
|
+
message: string
|
|
15653
|
+
is_device_error: true
|
|
15654
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15655
|
+
error_code: 'auxiliary_heat_running'
|
|
15656
|
+
}
|
|
15657
|
+
| {
|
|
15658
|
+
message: string
|
|
15659
|
+
is_device_error: true
|
|
15660
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15661
|
+
error_code: 'subscription_required'
|
|
15662
|
+
}
|
|
15663
|
+
)
|
|
14689
15664
|
| {
|
|
14690
15665
|
message: string
|
|
14691
15666
|
is_connected_account_error: true
|
|
@@ -14820,15 +15795,15 @@ export interface Routes {
|
|
|
14820
15795
|
event_id: string
|
|
14821
15796
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14822
15797
|
workspace_id: string
|
|
14823
|
-
/**
|
|
15798
|
+
/** Date and time at which the event was created. */
|
|
14824
15799
|
created_at: string
|
|
14825
|
-
/**
|
|
15800
|
+
/** Date and time at which the event occurred. */
|
|
14826
15801
|
occurred_at: string
|
|
14827
|
-
/**
|
|
15802
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14828
15803
|
access_code_id: string
|
|
14829
|
-
/**
|
|
15804
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14830
15805
|
device_id: string
|
|
14831
|
-
/**
|
|
15806
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14832
15807
|
connected_account_id: string
|
|
14833
15808
|
event_type: 'access_code.created'
|
|
14834
15809
|
}
|
|
@@ -14837,15 +15812,15 @@ export interface Routes {
|
|
|
14837
15812
|
event_id: string
|
|
14838
15813
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14839
15814
|
workspace_id: string
|
|
14840
|
-
/**
|
|
15815
|
+
/** Date and time at which the event was created. */
|
|
14841
15816
|
created_at: string
|
|
14842
|
-
/**
|
|
15817
|
+
/** Date and time at which the event occurred. */
|
|
14843
15818
|
occurred_at: string
|
|
14844
|
-
/**
|
|
15819
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14845
15820
|
access_code_id: string
|
|
14846
|
-
/**
|
|
15821
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14847
15822
|
device_id: string
|
|
14848
|
-
/**
|
|
15823
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14849
15824
|
connected_account_id: string
|
|
14850
15825
|
event_type: 'access_code.changed'
|
|
14851
15826
|
}
|
|
@@ -14854,18 +15829,18 @@ export interface Routes {
|
|
|
14854
15829
|
event_id: string
|
|
14855
15830
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14856
15831
|
workspace_id: string
|
|
14857
|
-
/**
|
|
15832
|
+
/** Date and time at which the event was created. */
|
|
14858
15833
|
created_at: string
|
|
14859
|
-
/**
|
|
15834
|
+
/** Date and time at which the event occurred. */
|
|
14860
15835
|
occurred_at: string
|
|
14861
|
-
/**
|
|
15836
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14862
15837
|
access_code_id: string
|
|
14863
|
-
/**
|
|
15838
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14864
15839
|
device_id: string
|
|
14865
|
-
/**
|
|
15840
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14866
15841
|
connected_account_id: string
|
|
14867
15842
|
event_type: 'access_code.scheduled_on_device'
|
|
14868
|
-
/**
|
|
15843
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14869
15844
|
code: string
|
|
14870
15845
|
}
|
|
14871
15846
|
| {
|
|
@@ -14873,18 +15848,18 @@ export interface Routes {
|
|
|
14873
15848
|
event_id: string
|
|
14874
15849
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14875
15850
|
workspace_id: string
|
|
14876
|
-
/**
|
|
15851
|
+
/** Date and time at which the event was created. */
|
|
14877
15852
|
created_at: string
|
|
14878
|
-
/**
|
|
15853
|
+
/** Date and time at which the event occurred. */
|
|
14879
15854
|
occurred_at: string
|
|
14880
|
-
/**
|
|
15855
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14881
15856
|
access_code_id: string
|
|
14882
|
-
/**
|
|
15857
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14883
15858
|
device_id: string
|
|
14884
|
-
/**
|
|
15859
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14885
15860
|
connected_account_id: string
|
|
14886
15861
|
event_type: 'access_code.set_on_device'
|
|
14887
|
-
/**
|
|
15862
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14888
15863
|
code: string
|
|
14889
15864
|
}
|
|
14890
15865
|
| {
|
|
@@ -14892,15 +15867,15 @@ export interface Routes {
|
|
|
14892
15867
|
event_id: string
|
|
14893
15868
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14894
15869
|
workspace_id: string
|
|
14895
|
-
/**
|
|
15870
|
+
/** Date and time at which the event was created. */
|
|
14896
15871
|
created_at: string
|
|
14897
|
-
/**
|
|
15872
|
+
/** Date and time at which the event occurred. */
|
|
14898
15873
|
occurred_at: string
|
|
14899
|
-
/**
|
|
15874
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14900
15875
|
access_code_id: string
|
|
14901
|
-
/**
|
|
15876
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14902
15877
|
device_id: string
|
|
14903
|
-
/**
|
|
15878
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14904
15879
|
connected_account_id: string
|
|
14905
15880
|
event_type: 'access_code.removed_from_device'
|
|
14906
15881
|
}
|
|
@@ -14909,15 +15884,15 @@ export interface Routes {
|
|
|
14909
15884
|
event_id: string
|
|
14910
15885
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14911
15886
|
workspace_id: string
|
|
14912
|
-
/**
|
|
15887
|
+
/** Date and time at which the event was created. */
|
|
14913
15888
|
created_at: string
|
|
14914
|
-
/**
|
|
15889
|
+
/** Date and time at which the event occurred. */
|
|
14915
15890
|
occurred_at: string
|
|
14916
|
-
/**
|
|
15891
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14917
15892
|
access_code_id: string
|
|
14918
|
-
/**
|
|
15893
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14919
15894
|
device_id: string
|
|
14920
|
-
/**
|
|
15895
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14921
15896
|
connected_account_id: string
|
|
14922
15897
|
event_type: 'access_code.delay_in_setting_on_device'
|
|
14923
15898
|
}
|
|
@@ -14926,15 +15901,15 @@ export interface Routes {
|
|
|
14926
15901
|
event_id: string
|
|
14927
15902
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14928
15903
|
workspace_id: string
|
|
14929
|
-
/**
|
|
15904
|
+
/** Date and time at which the event was created. */
|
|
14930
15905
|
created_at: string
|
|
14931
|
-
/**
|
|
15906
|
+
/** Date and time at which the event occurred. */
|
|
14932
15907
|
occurred_at: string
|
|
14933
|
-
/**
|
|
15908
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14934
15909
|
access_code_id: string
|
|
14935
|
-
/**
|
|
15910
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14936
15911
|
device_id: string
|
|
14937
|
-
/**
|
|
15912
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14938
15913
|
connected_account_id: string
|
|
14939
15914
|
event_type: 'access_code.failed_to_set_on_device'
|
|
14940
15915
|
}
|
|
@@ -14943,18 +15918,18 @@ export interface Routes {
|
|
|
14943
15918
|
event_id: string
|
|
14944
15919
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14945
15920
|
workspace_id: string
|
|
14946
|
-
/**
|
|
15921
|
+
/** Date and time at which the event was created. */
|
|
14947
15922
|
created_at: string
|
|
14948
|
-
/**
|
|
15923
|
+
/** Date and time at which the event occurred. */
|
|
14949
15924
|
occurred_at: string
|
|
14950
|
-
/**
|
|
15925
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14951
15926
|
access_code_id: string
|
|
14952
|
-
/**
|
|
15927
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14953
15928
|
device_id: string
|
|
14954
|
-
/**
|
|
15929
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14955
15930
|
connected_account_id: string
|
|
14956
15931
|
event_type: 'access_code.deleted'
|
|
14957
|
-
/**
|
|
15932
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14958
15933
|
code: string | null
|
|
14959
15934
|
}
|
|
14960
15935
|
| {
|
|
@@ -14962,15 +15937,15 @@ export interface Routes {
|
|
|
14962
15937
|
event_id: string
|
|
14963
15938
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14964
15939
|
workspace_id: string
|
|
14965
|
-
/**
|
|
15940
|
+
/** Date and time at which the event was created. */
|
|
14966
15941
|
created_at: string
|
|
14967
|
-
/**
|
|
15942
|
+
/** Date and time at which the event occurred. */
|
|
14968
15943
|
occurred_at: string
|
|
14969
|
-
/**
|
|
15944
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14970
15945
|
access_code_id: string
|
|
14971
|
-
/**
|
|
15946
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14972
15947
|
device_id: string
|
|
14973
|
-
/**
|
|
15948
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14974
15949
|
connected_account_id: string
|
|
14975
15950
|
event_type: 'access_code.delay_in_removing_from_device'
|
|
14976
15951
|
}
|
|
@@ -14979,15 +15954,15 @@ export interface Routes {
|
|
|
14979
15954
|
event_id: string
|
|
14980
15955
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14981
15956
|
workspace_id: string
|
|
14982
|
-
/**
|
|
15957
|
+
/** Date and time at which the event was created. */
|
|
14983
15958
|
created_at: string
|
|
14984
|
-
/**
|
|
15959
|
+
/** Date and time at which the event occurred. */
|
|
14985
15960
|
occurred_at: string
|
|
14986
|
-
/**
|
|
15961
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
14987
15962
|
access_code_id: string
|
|
14988
|
-
/**
|
|
15963
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
14989
15964
|
device_id: string
|
|
14990
|
-
/**
|
|
15965
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14991
15966
|
connected_account_id: string
|
|
14992
15967
|
event_type: 'access_code.failed_to_remove_from_device'
|
|
14993
15968
|
}
|
|
@@ -14996,15 +15971,15 @@ export interface Routes {
|
|
|
14996
15971
|
event_id: string
|
|
14997
15972
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14998
15973
|
workspace_id: string
|
|
14999
|
-
/**
|
|
15974
|
+
/** Date and time at which the event was created. */
|
|
15000
15975
|
created_at: string
|
|
15001
|
-
/**
|
|
15976
|
+
/** Date and time at which the event occurred. */
|
|
15002
15977
|
occurred_at: string
|
|
15003
|
-
/**
|
|
15978
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15004
15979
|
access_code_id: string
|
|
15005
|
-
/**
|
|
15980
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15006
15981
|
device_id: string
|
|
15007
|
-
/**
|
|
15982
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15008
15983
|
connected_account_id: string
|
|
15009
15984
|
event_type: 'access_code.modified_external_to_seam'
|
|
15010
15985
|
}
|
|
@@ -15013,15 +15988,15 @@ export interface Routes {
|
|
|
15013
15988
|
event_id: string
|
|
15014
15989
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15015
15990
|
workspace_id: string
|
|
15016
|
-
/**
|
|
15991
|
+
/** Date and time at which the event was created. */
|
|
15017
15992
|
created_at: string
|
|
15018
|
-
/**
|
|
15993
|
+
/** Date and time at which the event occurred. */
|
|
15019
15994
|
occurred_at: string
|
|
15020
|
-
/**
|
|
15995
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15021
15996
|
access_code_id: string
|
|
15022
|
-
/**
|
|
15997
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15023
15998
|
device_id: string
|
|
15024
|
-
/**
|
|
15999
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15025
16000
|
connected_account_id: string
|
|
15026
16001
|
event_type: 'access_code.deleted_external_to_seam'
|
|
15027
16002
|
}
|
|
@@ -15030,15 +16005,15 @@ export interface Routes {
|
|
|
15030
16005
|
event_id: string
|
|
15031
16006
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15032
16007
|
workspace_id: string
|
|
15033
|
-
/**
|
|
16008
|
+
/** Date and time at which the event was created. */
|
|
15034
16009
|
created_at: string
|
|
15035
|
-
/**
|
|
16010
|
+
/** Date and time at which the event occurred. */
|
|
15036
16011
|
occurred_at: string
|
|
15037
|
-
/**
|
|
16012
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15038
16013
|
access_code_id: string
|
|
15039
|
-
/**
|
|
16014
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15040
16015
|
device_id: string
|
|
15041
|
-
/**
|
|
16016
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15042
16017
|
connected_account_id: string
|
|
15043
16018
|
event_type: 'access_code.backup_access_code_pulled'
|
|
15044
16019
|
backup_access_code_id: string
|
|
@@ -15048,15 +16023,15 @@ export interface Routes {
|
|
|
15048
16023
|
event_id: string
|
|
15049
16024
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15050
16025
|
workspace_id: string
|
|
15051
|
-
/**
|
|
16026
|
+
/** Date and time at which the event was created. */
|
|
15052
16027
|
created_at: string
|
|
15053
|
-
/**
|
|
16028
|
+
/** Date and time at which the event occurred. */
|
|
15054
16029
|
occurred_at: string
|
|
15055
|
-
/**
|
|
16030
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15056
16031
|
access_code_id: string
|
|
15057
|
-
/**
|
|
16032
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15058
16033
|
device_id: string
|
|
15059
|
-
/**
|
|
16034
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15060
16035
|
connected_account_id: string
|
|
15061
16036
|
event_type: 'access_code.unmanaged.converted_to_managed'
|
|
15062
16037
|
}
|
|
@@ -15065,15 +16040,15 @@ export interface Routes {
|
|
|
15065
16040
|
event_id: string
|
|
15066
16041
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15067
16042
|
workspace_id: string
|
|
15068
|
-
/**
|
|
16043
|
+
/** Date and time at which the event was created. */
|
|
15069
16044
|
created_at: string
|
|
15070
|
-
/**
|
|
16045
|
+
/** Date and time at which the event occurred. */
|
|
15071
16046
|
occurred_at: string
|
|
15072
|
-
/**
|
|
16047
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15073
16048
|
access_code_id: string
|
|
15074
|
-
/**
|
|
16049
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15075
16050
|
device_id: string
|
|
15076
|
-
/**
|
|
16051
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15077
16052
|
connected_account_id: string
|
|
15078
16053
|
event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
|
|
15079
16054
|
}
|
|
@@ -15082,15 +16057,15 @@ export interface Routes {
|
|
|
15082
16057
|
event_id: string
|
|
15083
16058
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15084
16059
|
workspace_id: string
|
|
15085
|
-
/**
|
|
16060
|
+
/** Date and time at which the event was created. */
|
|
15086
16061
|
created_at: string
|
|
15087
|
-
/**
|
|
16062
|
+
/** Date and time at which the event occurred. */
|
|
15088
16063
|
occurred_at: string
|
|
15089
|
-
/**
|
|
16064
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15090
16065
|
access_code_id: string
|
|
15091
|
-
/**
|
|
16066
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15092
16067
|
device_id: string
|
|
15093
|
-
/**
|
|
16068
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15094
16069
|
connected_account_id: string
|
|
15095
16070
|
event_type: 'access_code.unmanaged.created'
|
|
15096
16071
|
}
|
|
@@ -15099,15 +16074,15 @@ export interface Routes {
|
|
|
15099
16074
|
event_id: string
|
|
15100
16075
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15101
16076
|
workspace_id: string
|
|
15102
|
-
/**
|
|
16077
|
+
/** Date and time at which the event was created. */
|
|
15103
16078
|
created_at: string
|
|
15104
|
-
/**
|
|
16079
|
+
/** Date and time at which the event occurred. */
|
|
15105
16080
|
occurred_at: string
|
|
15106
|
-
/**
|
|
16081
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
15107
16082
|
access_code_id: string
|
|
15108
|
-
/**
|
|
16083
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
15109
16084
|
device_id: string
|
|
15110
|
-
/**
|
|
16085
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15111
16086
|
connected_account_id: string
|
|
15112
16087
|
event_type: 'access_code.unmanaged.removed'
|
|
15113
16088
|
}
|
|
@@ -15116,13 +16091,13 @@ export interface Routes {
|
|
|
15116
16091
|
event_id: string
|
|
15117
16092
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15118
16093
|
workspace_id: string
|
|
15119
|
-
/**
|
|
16094
|
+
/** Date and time at which the event was created. */
|
|
15120
16095
|
created_at: string
|
|
15121
|
-
/**
|
|
16096
|
+
/** Date and time at which the event occurred. */
|
|
15122
16097
|
occurred_at: string
|
|
15123
|
-
/** ID of the connected account. */
|
|
16098
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15124
16099
|
connected_account_id?: string | undefined
|
|
15125
|
-
/** ID of the ACS system. */
|
|
16100
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15126
16101
|
acs_system_id: string
|
|
15127
16102
|
event_type: 'acs_system.connected'
|
|
15128
16103
|
}
|
|
@@ -15131,13 +16106,13 @@ export interface Routes {
|
|
|
15131
16106
|
event_id: string
|
|
15132
16107
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15133
16108
|
workspace_id: string
|
|
15134
|
-
/**
|
|
16109
|
+
/** Date and time at which the event was created. */
|
|
15135
16110
|
created_at: string
|
|
15136
|
-
/**
|
|
16111
|
+
/** Date and time at which the event occurred. */
|
|
15137
16112
|
occurred_at: string
|
|
15138
|
-
/** ID of the connected account. */
|
|
16113
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15139
16114
|
connected_account_id?: string | undefined
|
|
15140
|
-
/** ID of the ACS system. */
|
|
16115
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15141
16116
|
acs_system_id: string
|
|
15142
16117
|
event_type: 'acs_system.added'
|
|
15143
16118
|
}
|
|
@@ -15146,13 +16121,13 @@ export interface Routes {
|
|
|
15146
16121
|
event_id: string
|
|
15147
16122
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15148
16123
|
workspace_id: string
|
|
15149
|
-
/**
|
|
16124
|
+
/** Date and time at which the event was created. */
|
|
15150
16125
|
created_at: string
|
|
15151
|
-
/**
|
|
16126
|
+
/** Date and time at which the event occurred. */
|
|
15152
16127
|
occurred_at: string
|
|
15153
|
-
/** ID of the connected account. */
|
|
16128
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15154
16129
|
connected_account_id?: string | undefined
|
|
15155
|
-
/** ID of the ACS system. */
|
|
16130
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15156
16131
|
acs_system_id: string
|
|
15157
16132
|
event_type: 'acs_system.disconnected'
|
|
15158
16133
|
}
|
|
@@ -15161,13 +16136,13 @@ export interface Routes {
|
|
|
15161
16136
|
event_id: string
|
|
15162
16137
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15163
16138
|
workspace_id: string
|
|
15164
|
-
/**
|
|
16139
|
+
/** Date and time at which the event was created. */
|
|
15165
16140
|
created_at: string
|
|
15166
|
-
/**
|
|
16141
|
+
/** Date and time at which the event occurred. */
|
|
15167
16142
|
occurred_at: string
|
|
15168
|
-
/** ID of the connected account. */
|
|
16143
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15169
16144
|
connected_account_id?: string | undefined
|
|
15170
|
-
/** ID of the ACS system. */
|
|
16145
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15171
16146
|
acs_system_id: string
|
|
15172
16147
|
acs_credential_id: string
|
|
15173
16148
|
event_type: 'acs_credential.deleted'
|
|
@@ -15177,13 +16152,13 @@ export interface Routes {
|
|
|
15177
16152
|
event_id: string
|
|
15178
16153
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15179
16154
|
workspace_id: string
|
|
15180
|
-
/**
|
|
16155
|
+
/** Date and time at which the event was created. */
|
|
15181
16156
|
created_at: string
|
|
15182
|
-
/**
|
|
16157
|
+
/** Date and time at which the event occurred. */
|
|
15183
16158
|
occurred_at: string
|
|
15184
|
-
/** ID of the connected account. */
|
|
16159
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15185
16160
|
connected_account_id?: string | undefined
|
|
15186
|
-
/** ID of the ACS system. */
|
|
16161
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15187
16162
|
acs_system_id: string
|
|
15188
16163
|
acs_credential_id: string
|
|
15189
16164
|
event_type: 'acs_credential.issued'
|
|
@@ -15193,13 +16168,13 @@ export interface Routes {
|
|
|
15193
16168
|
event_id: string
|
|
15194
16169
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15195
16170
|
workspace_id: string
|
|
15196
|
-
/**
|
|
16171
|
+
/** Date and time at which the event was created. */
|
|
15197
16172
|
created_at: string
|
|
15198
|
-
/**
|
|
16173
|
+
/** Date and time at which the event occurred. */
|
|
15199
16174
|
occurred_at: string
|
|
15200
|
-
/** ID of the connected account. */
|
|
16175
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15201
16176
|
connected_account_id?: string | undefined
|
|
15202
|
-
/** ID of the ACS system. */
|
|
16177
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15203
16178
|
acs_system_id: string
|
|
15204
16179
|
acs_user_id: string
|
|
15205
16180
|
event_type: 'acs_user.deleted'
|
|
@@ -15209,15 +16184,15 @@ export interface Routes {
|
|
|
15209
16184
|
event_id: string
|
|
15210
16185
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15211
16186
|
workspace_id: string
|
|
15212
|
-
/**
|
|
16187
|
+
/** Date and time at which the event was created. */
|
|
15213
16188
|
created_at: string
|
|
15214
|
-
/**
|
|
16189
|
+
/** Date and time at which the event occurred. */
|
|
15215
16190
|
occurred_at: string
|
|
15216
|
-
/** ID of the connected account. */
|
|
16191
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15217
16192
|
connected_account_id?: string | undefined
|
|
15218
|
-
/** ID of the ACS system. */
|
|
16193
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15219
16194
|
acs_system_id: string
|
|
15220
|
-
/** ID of the ACS encoder. */
|
|
16195
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
15221
16196
|
acs_encoder_id: string
|
|
15222
16197
|
event_type: 'acs_encoder.added'
|
|
15223
16198
|
}
|
|
@@ -15226,15 +16201,15 @@ export interface Routes {
|
|
|
15226
16201
|
event_id: string
|
|
15227
16202
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15228
16203
|
workspace_id: string
|
|
15229
|
-
/**
|
|
16204
|
+
/** Date and time at which the event was created. */
|
|
15230
16205
|
created_at: string
|
|
15231
|
-
/**
|
|
16206
|
+
/** Date and time at which the event occurred. */
|
|
15232
16207
|
occurred_at: string
|
|
15233
|
-
/** ID of the connected account. */
|
|
16208
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15234
16209
|
connected_account_id?: string | undefined
|
|
15235
|
-
/** ID of the ACS system. */
|
|
16210
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
15236
16211
|
acs_system_id: string
|
|
15237
|
-
/** ID of the ACS encoder. */
|
|
16212
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
15238
16213
|
acs_encoder_id: string
|
|
15239
16214
|
event_type: 'acs_encoder.removed'
|
|
15240
16215
|
}
|
|
@@ -15243,11 +16218,11 @@ export interface Routes {
|
|
|
15243
16218
|
event_id: string
|
|
15244
16219
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15245
16220
|
workspace_id: string
|
|
15246
|
-
/**
|
|
16221
|
+
/** Date and time at which the event was created. */
|
|
15247
16222
|
created_at: string
|
|
15248
|
-
/**
|
|
16223
|
+
/** Date and time at which the event occurred. */
|
|
15249
16224
|
occurred_at: string
|
|
15250
|
-
/** ID of the client session. */
|
|
16225
|
+
/** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
15251
16226
|
client_session_id: string
|
|
15252
16227
|
event_type: 'client_session.deleted'
|
|
15253
16228
|
}
|
|
@@ -15256,14 +16231,14 @@ export interface Routes {
|
|
|
15256
16231
|
event_id: string
|
|
15257
16232
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15258
16233
|
workspace_id: string
|
|
15259
|
-
/**
|
|
16234
|
+
/** Date and time at which the event was created. */
|
|
15260
16235
|
created_at: string
|
|
15261
|
-
/**
|
|
16236
|
+
/** Date and time at which the event occurred. */
|
|
15262
16237
|
occurred_at: string
|
|
15263
|
-
/** ID of the connected account. */
|
|
16238
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15264
16239
|
connected_account_id: string
|
|
15265
16240
|
event_type: 'connected_account.connected'
|
|
15266
|
-
/** ID of the
|
|
16241
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
15267
16242
|
connect_webview_id: string
|
|
15268
16243
|
}
|
|
15269
16244
|
| {
|
|
@@ -15271,14 +16246,14 @@ export interface Routes {
|
|
|
15271
16246
|
event_id: string
|
|
15272
16247
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15273
16248
|
workspace_id: string
|
|
15274
|
-
/**
|
|
16249
|
+
/** Date and time at which the event was created. */
|
|
15275
16250
|
created_at: string
|
|
15276
|
-
/**
|
|
16251
|
+
/** Date and time at which the event occurred. */
|
|
15277
16252
|
occurred_at: string
|
|
15278
|
-
/** ID of the connected account. */
|
|
16253
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15279
16254
|
connected_account_id: string
|
|
15280
16255
|
event_type: 'connected_account.created'
|
|
15281
|
-
/** ID of the
|
|
16256
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
15282
16257
|
connect_webview_id: string
|
|
15283
16258
|
}
|
|
15284
16259
|
| {
|
|
@@ -15286,14 +16261,14 @@ export interface Routes {
|
|
|
15286
16261
|
event_id: string
|
|
15287
16262
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15288
16263
|
workspace_id: string
|
|
15289
|
-
/**
|
|
16264
|
+
/** Date and time at which the event was created. */
|
|
15290
16265
|
created_at: string
|
|
15291
|
-
/**
|
|
16266
|
+
/** Date and time at which the event occurred. */
|
|
15292
16267
|
occurred_at: string
|
|
15293
|
-
/** ID of the connected account. */
|
|
16268
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15294
16269
|
connected_account_id: string
|
|
15295
16270
|
event_type: 'connected_account.successful_login'
|
|
15296
|
-
/** ID of the
|
|
16271
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
15297
16272
|
connect_webview_id: string
|
|
15298
16273
|
}
|
|
15299
16274
|
| {
|
|
@@ -15301,11 +16276,11 @@ export interface Routes {
|
|
|
15301
16276
|
event_id: string
|
|
15302
16277
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15303
16278
|
workspace_id: string
|
|
15304
|
-
/**
|
|
16279
|
+
/** Date and time at which the event was created. */
|
|
15305
16280
|
created_at: string
|
|
15306
|
-
/**
|
|
16281
|
+
/** Date and time at which the event occurred. */
|
|
15307
16282
|
occurred_at: string
|
|
15308
|
-
/** ID of the connected account. */
|
|
16283
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15309
16284
|
connected_account_id: string
|
|
15310
16285
|
event_type: 'connected_account.disconnected'
|
|
15311
16286
|
}
|
|
@@ -15314,11 +16289,11 @@ export interface Routes {
|
|
|
15314
16289
|
event_id: string
|
|
15315
16290
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15316
16291
|
workspace_id: string
|
|
15317
|
-
/**
|
|
16292
|
+
/** Date and time at which the event was created. */
|
|
15318
16293
|
created_at: string
|
|
15319
|
-
/**
|
|
16294
|
+
/** Date and time at which the event occurred. */
|
|
15320
16295
|
occurred_at: string
|
|
15321
|
-
/** ID of the connected account. */
|
|
16296
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15322
16297
|
connected_account_id: string
|
|
15323
16298
|
event_type: 'connected_account.completed_first_sync'
|
|
15324
16299
|
}
|
|
@@ -15327,11 +16302,11 @@ export interface Routes {
|
|
|
15327
16302
|
event_id: string
|
|
15328
16303
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15329
16304
|
workspace_id: string
|
|
15330
|
-
/**
|
|
16305
|
+
/** Date and time at which the event was created. */
|
|
15331
16306
|
created_at: string
|
|
15332
|
-
/**
|
|
16307
|
+
/** Date and time at which the event occurred. */
|
|
15333
16308
|
occurred_at: string
|
|
15334
|
-
/** ID of the connected account. */
|
|
16309
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15335
16310
|
connected_account_id: string
|
|
15336
16311
|
event_type: 'connected_account.deleted'
|
|
15337
16312
|
}
|
|
@@ -15340,11 +16315,11 @@ export interface Routes {
|
|
|
15340
16315
|
event_id: string
|
|
15341
16316
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15342
16317
|
workspace_id: string
|
|
15343
|
-
/**
|
|
16318
|
+
/** Date and time at which the event was created. */
|
|
15344
16319
|
created_at: string
|
|
15345
|
-
/**
|
|
16320
|
+
/** Date and time at which the event occurred. */
|
|
15346
16321
|
occurred_at: string
|
|
15347
|
-
/** ID of the connected account. */
|
|
16322
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15348
16323
|
connected_account_id: string
|
|
15349
16324
|
event_type: 'connected_account.completed_first_sync_after_reconnection'
|
|
15350
16325
|
}
|
|
@@ -15353,15 +16328,15 @@ export interface Routes {
|
|
|
15353
16328
|
event_id: string
|
|
15354
16329
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15355
16330
|
workspace_id: string
|
|
15356
|
-
/**
|
|
16331
|
+
/** Date and time at which the event was created. */
|
|
15357
16332
|
created_at: string
|
|
15358
|
-
/**
|
|
16333
|
+
/** Date and time at which the event occurred. */
|
|
15359
16334
|
occurred_at: string
|
|
15360
|
-
/**
|
|
16335
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
15361
16336
|
action_attempt_id: string
|
|
15362
|
-
/**
|
|
16337
|
+
/** Type of action. */
|
|
15363
16338
|
action_type: string
|
|
15364
|
-
/**
|
|
16339
|
+
/** Status of the action. */
|
|
15365
16340
|
status: string
|
|
15366
16341
|
event_type: 'action_attempt.lock_door.succeeded'
|
|
15367
16342
|
}
|
|
@@ -15370,15 +16345,15 @@ export interface Routes {
|
|
|
15370
16345
|
event_id: string
|
|
15371
16346
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15372
16347
|
workspace_id: string
|
|
15373
|
-
/**
|
|
16348
|
+
/** Date and time at which the event was created. */
|
|
15374
16349
|
created_at: string
|
|
15375
|
-
/**
|
|
16350
|
+
/** Date and time at which the event occurred. */
|
|
15376
16351
|
occurred_at: string
|
|
15377
|
-
/**
|
|
16352
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
15378
16353
|
action_attempt_id: string
|
|
15379
|
-
/**
|
|
16354
|
+
/** Type of action. */
|
|
15380
16355
|
action_type: string
|
|
15381
|
-
/**
|
|
16356
|
+
/** Status of the action. */
|
|
15382
16357
|
status: string
|
|
15383
16358
|
event_type: 'action_attempt.lock_door.failed'
|
|
15384
16359
|
}
|
|
@@ -15387,15 +16362,15 @@ export interface Routes {
|
|
|
15387
16362
|
event_id: string
|
|
15388
16363
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15389
16364
|
workspace_id: string
|
|
15390
|
-
/**
|
|
16365
|
+
/** Date and time at which the event was created. */
|
|
15391
16366
|
created_at: string
|
|
15392
|
-
/**
|
|
16367
|
+
/** Date and time at which the event occurred. */
|
|
15393
16368
|
occurred_at: string
|
|
15394
|
-
/**
|
|
16369
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
15395
16370
|
action_attempt_id: string
|
|
15396
|
-
/**
|
|
16371
|
+
/** Type of action. */
|
|
15397
16372
|
action_type: string
|
|
15398
|
-
/**
|
|
16373
|
+
/** Status of the action. */
|
|
15399
16374
|
status: string
|
|
15400
16375
|
event_type: 'action_attempt.unlock_door.succeeded'
|
|
15401
16376
|
}
|
|
@@ -15404,15 +16379,15 @@ export interface Routes {
|
|
|
15404
16379
|
event_id: string
|
|
15405
16380
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15406
16381
|
workspace_id: string
|
|
15407
|
-
/**
|
|
16382
|
+
/** Date and time at which the event was created. */
|
|
15408
16383
|
created_at: string
|
|
15409
|
-
/**
|
|
16384
|
+
/** Date and time at which the event occurred. */
|
|
15410
16385
|
occurred_at: string
|
|
15411
|
-
/**
|
|
16386
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
15412
16387
|
action_attempt_id: string
|
|
15413
|
-
/**
|
|
16388
|
+
/** Type of action. */
|
|
15414
16389
|
action_type: string
|
|
15415
|
-
/**
|
|
16390
|
+
/** Status of the action. */
|
|
15416
16391
|
status: string
|
|
15417
16392
|
event_type: 'action_attempt.unlock_door.failed'
|
|
15418
16393
|
}
|
|
@@ -15421,14 +16396,14 @@ export interface Routes {
|
|
|
15421
16396
|
event_id: string
|
|
15422
16397
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15423
16398
|
workspace_id: string
|
|
15424
|
-
/**
|
|
16399
|
+
/** Date and time at which the event was created. */
|
|
15425
16400
|
created_at: string
|
|
15426
|
-
/**
|
|
16401
|
+
/** Date and time at which the event occurred. */
|
|
15427
16402
|
occurred_at: string
|
|
15428
|
-
/** ID of the
|
|
16403
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
15429
16404
|
connect_webview_id: string
|
|
15430
16405
|
event_type: 'connect_webview.login_succeeded'
|
|
15431
|
-
/** ID of the connected account. */
|
|
16406
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15432
16407
|
connected_account_id: string
|
|
15433
16408
|
}
|
|
15434
16409
|
| {
|
|
@@ -15436,11 +16411,11 @@ export interface Routes {
|
|
|
15436
16411
|
event_id: string
|
|
15437
16412
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15438
16413
|
workspace_id: string
|
|
15439
|
-
/**
|
|
16414
|
+
/** Date and time at which the event was created. */
|
|
15440
16415
|
created_at: string
|
|
15441
|
-
/**
|
|
16416
|
+
/** Date and time at which the event occurred. */
|
|
15442
16417
|
occurred_at: string
|
|
15443
|
-
/** ID of the
|
|
16418
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
15444
16419
|
connect_webview_id: string
|
|
15445
16420
|
event_type: 'connect_webview.login_failed'
|
|
15446
16421
|
}
|
|
@@ -15449,9 +16424,9 @@ export interface Routes {
|
|
|
15449
16424
|
event_id: string
|
|
15450
16425
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15451
16426
|
workspace_id: string
|
|
15452
|
-
/**
|
|
16427
|
+
/** Date and time at which the event was created. */
|
|
15453
16428
|
created_at: string
|
|
15454
|
-
/**
|
|
16429
|
+
/** Date and time at which the event occurred. */
|
|
15455
16430
|
occurred_at: string
|
|
15456
16431
|
/** ID of the device. */
|
|
15457
16432
|
device_id: string
|
|
@@ -15464,9 +16439,9 @@ export interface Routes {
|
|
|
15464
16439
|
event_id: string
|
|
15465
16440
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15466
16441
|
workspace_id: string
|
|
15467
|
-
/**
|
|
16442
|
+
/** Date and time at which the event was created. */
|
|
15468
16443
|
created_at: string
|
|
15469
|
-
/**
|
|
16444
|
+
/** Date and time at which the event occurred. */
|
|
15470
16445
|
occurred_at: string
|
|
15471
16446
|
/** ID of the device. */
|
|
15472
16447
|
device_id: string
|
|
@@ -15479,9 +16454,9 @@ export interface Routes {
|
|
|
15479
16454
|
event_id: string
|
|
15480
16455
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15481
16456
|
workspace_id: string
|
|
15482
|
-
/**
|
|
16457
|
+
/** Date and time at which the event was created. */
|
|
15483
16458
|
created_at: string
|
|
15484
|
-
/**
|
|
16459
|
+
/** Date and time at which the event occurred. */
|
|
15485
16460
|
occurred_at: string
|
|
15486
16461
|
/** ID of the device. */
|
|
15487
16462
|
device_id: string
|
|
@@ -15494,9 +16469,9 @@ export interface Routes {
|
|
|
15494
16469
|
event_id: string
|
|
15495
16470
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15496
16471
|
workspace_id: string
|
|
15497
|
-
/**
|
|
16472
|
+
/** Date and time at which the event was created. */
|
|
15498
16473
|
created_at: string
|
|
15499
|
-
/**
|
|
16474
|
+
/** Date and time at which the event occurred. */
|
|
15500
16475
|
occurred_at: string
|
|
15501
16476
|
/** ID of the device. */
|
|
15502
16477
|
device_id: string
|
|
@@ -15509,9 +16484,9 @@ export interface Routes {
|
|
|
15509
16484
|
event_id: string
|
|
15510
16485
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15511
16486
|
workspace_id: string
|
|
15512
|
-
/**
|
|
16487
|
+
/** Date and time at which the event was created. */
|
|
15513
16488
|
created_at: string
|
|
15514
|
-
/**
|
|
16489
|
+
/** Date and time at which the event occurred. */
|
|
15515
16490
|
occurred_at: string
|
|
15516
16491
|
/** ID of the device. */
|
|
15517
16492
|
device_id: string
|
|
@@ -15524,9 +16499,9 @@ export interface Routes {
|
|
|
15524
16499
|
event_id: string
|
|
15525
16500
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15526
16501
|
workspace_id: string
|
|
15527
|
-
/**
|
|
16502
|
+
/** Date and time at which the event was created. */
|
|
15528
16503
|
created_at: string
|
|
15529
|
-
/**
|
|
16504
|
+
/** Date and time at which the event occurred. */
|
|
15530
16505
|
occurred_at: string
|
|
15531
16506
|
/** ID of the device. */
|
|
15532
16507
|
device_id: string
|
|
@@ -15544,9 +16519,9 @@ export interface Routes {
|
|
|
15544
16519
|
event_id: string
|
|
15545
16520
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15546
16521
|
workspace_id: string
|
|
15547
|
-
/**
|
|
16522
|
+
/** Date and time at which the event was created. */
|
|
15548
16523
|
created_at: string
|
|
15549
|
-
/**
|
|
16524
|
+
/** Date and time at which the event occurred. */
|
|
15550
16525
|
occurred_at: string
|
|
15551
16526
|
/** ID of the device. */
|
|
15552
16527
|
device_id: string
|
|
@@ -15564,9 +16539,9 @@ export interface Routes {
|
|
|
15564
16539
|
event_id: string
|
|
15565
16540
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15566
16541
|
workspace_id: string
|
|
15567
|
-
/**
|
|
16542
|
+
/** Date and time at which the event was created. */
|
|
15568
16543
|
created_at: string
|
|
15569
|
-
/**
|
|
16544
|
+
/** Date and time at which the event occurred. */
|
|
15570
16545
|
occurred_at: string
|
|
15571
16546
|
/** ID of the device. */
|
|
15572
16547
|
device_id: string
|
|
@@ -15579,9 +16554,9 @@ export interface Routes {
|
|
|
15579
16554
|
event_id: string
|
|
15580
16555
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15581
16556
|
workspace_id: string
|
|
15582
|
-
/**
|
|
16557
|
+
/** Date and time at which the event was created. */
|
|
15583
16558
|
created_at: string
|
|
15584
|
-
/**
|
|
16559
|
+
/** Date and time at which the event occurred. */
|
|
15585
16560
|
occurred_at: string
|
|
15586
16561
|
/** ID of the device. */
|
|
15587
16562
|
device_id: string
|
|
@@ -15596,9 +16571,9 @@ export interface Routes {
|
|
|
15596
16571
|
event_id: string
|
|
15597
16572
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15598
16573
|
workspace_id: string
|
|
15599
|
-
/**
|
|
16574
|
+
/** Date and time at which the event was created. */
|
|
15600
16575
|
created_at: string
|
|
15601
|
-
/**
|
|
16576
|
+
/** Date and time at which the event occurred. */
|
|
15602
16577
|
occurred_at: string
|
|
15603
16578
|
/** ID of the device. */
|
|
15604
16579
|
device_id: string
|
|
@@ -15615,9 +16590,9 @@ export interface Routes {
|
|
|
15615
16590
|
event_id: string
|
|
15616
16591
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15617
16592
|
workspace_id: string
|
|
15618
|
-
/**
|
|
16593
|
+
/** Date and time at which the event was created. */
|
|
15619
16594
|
created_at: string
|
|
15620
|
-
/**
|
|
16595
|
+
/** Date and time at which the event occurred. */
|
|
15621
16596
|
occurred_at: string
|
|
15622
16597
|
/** ID of the device. */
|
|
15623
16598
|
device_id: string
|
|
@@ -15630,9 +16605,9 @@ export interface Routes {
|
|
|
15630
16605
|
event_id: string
|
|
15631
16606
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15632
16607
|
workspace_id: string
|
|
15633
|
-
/**
|
|
16608
|
+
/** Date and time at which the event was created. */
|
|
15634
16609
|
created_at: string
|
|
15635
|
-
/**
|
|
16610
|
+
/** Date and time at which the event occurred. */
|
|
15636
16611
|
occurred_at: string
|
|
15637
16612
|
/** ID of the device. */
|
|
15638
16613
|
device_id: string
|
|
@@ -15645,9 +16620,9 @@ export interface Routes {
|
|
|
15645
16620
|
event_id: string
|
|
15646
16621
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15647
16622
|
workspace_id: string
|
|
15648
|
-
/**
|
|
16623
|
+
/** Date and time at which the event was created. */
|
|
15649
16624
|
created_at: string
|
|
15650
|
-
/**
|
|
16625
|
+
/** Date and time at which the event occurred. */
|
|
15651
16626
|
occurred_at: string
|
|
15652
16627
|
/** ID of the device. */
|
|
15653
16628
|
device_id: string
|
|
@@ -15660,9 +16635,9 @@ export interface Routes {
|
|
|
15660
16635
|
event_id: string
|
|
15661
16636
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15662
16637
|
workspace_id: string
|
|
15663
|
-
/**
|
|
16638
|
+
/** Date and time at which the event was created. */
|
|
15664
16639
|
created_at: string
|
|
15665
|
-
/**
|
|
16640
|
+
/** Date and time at which the event occurred. */
|
|
15666
16641
|
occurred_at: string
|
|
15667
16642
|
/** ID of the device. */
|
|
15668
16643
|
device_id: string
|
|
@@ -15675,9 +16650,9 @@ export interface Routes {
|
|
|
15675
16650
|
event_id: string
|
|
15676
16651
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15677
16652
|
workspace_id: string
|
|
15678
|
-
/**
|
|
16653
|
+
/** Date and time at which the event was created. */
|
|
15679
16654
|
created_at: string
|
|
15680
|
-
/**
|
|
16655
|
+
/** Date and time at which the event occurred. */
|
|
15681
16656
|
occurred_at: string
|
|
15682
16657
|
/** ID of the device. */
|
|
15683
16658
|
device_id: string
|
|
@@ -15690,9 +16665,9 @@ export interface Routes {
|
|
|
15690
16665
|
event_id: string
|
|
15691
16666
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15692
16667
|
workspace_id: string
|
|
15693
|
-
/**
|
|
16668
|
+
/** Date and time at which the event was created. */
|
|
15694
16669
|
created_at: string
|
|
15695
|
-
/**
|
|
16670
|
+
/** Date and time at which the event occurred. */
|
|
15696
16671
|
occurred_at: string
|
|
15697
16672
|
/** ID of the device. */
|
|
15698
16673
|
device_id: string
|
|
@@ -15705,9 +16680,9 @@ export interface Routes {
|
|
|
15705
16680
|
event_id: string
|
|
15706
16681
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15707
16682
|
workspace_id: string
|
|
15708
|
-
/**
|
|
16683
|
+
/** Date and time at which the event was created. */
|
|
15709
16684
|
created_at: string
|
|
15710
|
-
/**
|
|
16685
|
+
/** Date and time at which the event occurred. */
|
|
15711
16686
|
occurred_at: string
|
|
15712
16687
|
/** ID of the device. */
|
|
15713
16688
|
device_id: string
|
|
@@ -15720,9 +16695,9 @@ export interface Routes {
|
|
|
15720
16695
|
event_id: string
|
|
15721
16696
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15722
16697
|
workspace_id: string
|
|
15723
|
-
/**
|
|
16698
|
+
/** Date and time at which the event was created. */
|
|
15724
16699
|
created_at: string
|
|
15725
|
-
/**
|
|
16700
|
+
/** Date and time at which the event occurred. */
|
|
15726
16701
|
occurred_at: string
|
|
15727
16702
|
/** ID of the device. */
|
|
15728
16703
|
device_id: string
|
|
@@ -15735,9 +16710,9 @@ export interface Routes {
|
|
|
15735
16710
|
event_id: string
|
|
15736
16711
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15737
16712
|
workspace_id: string
|
|
15738
|
-
/**
|
|
16713
|
+
/** Date and time at which the event was created. */
|
|
15739
16714
|
created_at: string
|
|
15740
|
-
/**
|
|
16715
|
+
/** Date and time at which the event occurred. */
|
|
15741
16716
|
occurred_at: string
|
|
15742
16717
|
/** ID of the device. */
|
|
15743
16718
|
device_id: string
|
|
@@ -15750,9 +16725,9 @@ export interface Routes {
|
|
|
15750
16725
|
event_id: string
|
|
15751
16726
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15752
16727
|
workspace_id: string
|
|
15753
|
-
/**
|
|
16728
|
+
/** Date and time at which the event was created. */
|
|
15754
16729
|
created_at: string
|
|
15755
|
-
/**
|
|
16730
|
+
/** Date and time at which the event occurred. */
|
|
15756
16731
|
occurred_at: string
|
|
15757
16732
|
/** ID of the device. */
|
|
15758
16733
|
device_id: string
|
|
@@ -15765,9 +16740,9 @@ export interface Routes {
|
|
|
15765
16740
|
event_id: string
|
|
15766
16741
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15767
16742
|
workspace_id: string
|
|
15768
|
-
/**
|
|
16743
|
+
/** Date and time at which the event was created. */
|
|
15769
16744
|
created_at: string
|
|
15770
|
-
/**
|
|
16745
|
+
/** Date and time at which the event occurred. */
|
|
15771
16746
|
occurred_at: string
|
|
15772
16747
|
/** ID of the device. */
|
|
15773
16748
|
device_id: string
|
|
@@ -15780,9 +16755,9 @@ export interface Routes {
|
|
|
15780
16755
|
event_id: string
|
|
15781
16756
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15782
16757
|
workspace_id: string
|
|
15783
|
-
/**
|
|
16758
|
+
/** Date and time at which the event was created. */
|
|
15784
16759
|
created_at: string
|
|
15785
|
-
/**
|
|
16760
|
+
/** Date and time at which the event occurred. */
|
|
15786
16761
|
occurred_at: string
|
|
15787
16762
|
/** ID of the device. */
|
|
15788
16763
|
device_id: string
|
|
@@ -15795,9 +16770,9 @@ export interface Routes {
|
|
|
15795
16770
|
event_id: string
|
|
15796
16771
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15797
16772
|
workspace_id: string
|
|
15798
|
-
/**
|
|
16773
|
+
/** Date and time at which the event was created. */
|
|
15799
16774
|
created_at: string
|
|
15800
|
-
/**
|
|
16775
|
+
/** Date and time at which the event occurred. */
|
|
15801
16776
|
occurred_at: string
|
|
15802
16777
|
/** ID of the device. */
|
|
15803
16778
|
device_id: string
|
|
@@ -15822,9 +16797,9 @@ export interface Routes {
|
|
|
15822
16797
|
event_id: string
|
|
15823
16798
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15824
16799
|
workspace_id: string
|
|
15825
|
-
/**
|
|
16800
|
+
/** Date and time at which the event was created. */
|
|
15826
16801
|
created_at: string
|
|
15827
|
-
/**
|
|
16802
|
+
/** Date and time at which the event occurred. */
|
|
15828
16803
|
occurred_at: string
|
|
15829
16804
|
/** ID of the device. */
|
|
15830
16805
|
device_id: string
|
|
@@ -15835,7 +16810,7 @@ export interface Routes {
|
|
|
15835
16810
|
access_code_id?: string | undefined
|
|
15836
16811
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
|
|
15837
16812
|
action_attempt_id?: string | undefined
|
|
15838
|
-
/** 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. */
|
|
16813
|
+
/** 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. */
|
|
15839
16814
|
method:
|
|
15840
16815
|
| 'keycode'
|
|
15841
16816
|
| 'manual'
|
|
@@ -15848,9 +16823,9 @@ export interface Routes {
|
|
|
15848
16823
|
event_id: string
|
|
15849
16824
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15850
16825
|
workspace_id: string
|
|
15851
|
-
/**
|
|
16826
|
+
/** Date and time at which the event was created. */
|
|
15852
16827
|
created_at: string
|
|
15853
|
-
/**
|
|
16828
|
+
/** Date and time at which the event occurred. */
|
|
15854
16829
|
occurred_at: string
|
|
15855
16830
|
/** ID of the device. */
|
|
15856
16831
|
device_id: string
|
|
@@ -15861,7 +16836,7 @@ export interface Routes {
|
|
|
15861
16836
|
access_code_id?: string | undefined
|
|
15862
16837
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
|
|
15863
16838
|
action_attempt_id?: string | undefined
|
|
15864
|
-
/** 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. */
|
|
16839
|
+
/** 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. */
|
|
15865
16840
|
method:
|
|
15866
16841
|
| 'keycode'
|
|
15867
16842
|
| 'manual'
|
|
@@ -15874,9 +16849,9 @@ export interface Routes {
|
|
|
15874
16849
|
event_id: string
|
|
15875
16850
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15876
16851
|
workspace_id: string
|
|
15877
|
-
/**
|
|
16852
|
+
/** Date and time at which the event was created. */
|
|
15878
16853
|
created_at: string
|
|
15879
|
-
/**
|
|
16854
|
+
/** Date and time at which the event occurred. */
|
|
15880
16855
|
occurred_at: string
|
|
15881
16856
|
/** ID of the device. */
|
|
15882
16857
|
device_id: string
|
|
@@ -15891,9 +16866,9 @@ export interface Routes {
|
|
|
15891
16866
|
event_id: string
|
|
15892
16867
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15893
16868
|
workspace_id: string
|
|
15894
|
-
/**
|
|
16869
|
+
/** Date and time at which the event was created. */
|
|
15895
16870
|
created_at: string
|
|
15896
|
-
/**
|
|
16871
|
+
/** Date and time at which the event occurred. */
|
|
15897
16872
|
occurred_at: string
|
|
15898
16873
|
/** ID of the device. */
|
|
15899
16874
|
device_id: string
|
|
@@ -15904,7 +16879,7 @@ export interface Routes {
|
|
|
15904
16879
|
thermostat_schedule_id: string | null
|
|
15905
16880
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
|
|
15906
16881
|
climate_preset_key: string
|
|
15907
|
-
/** 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. */
|
|
16882
|
+
/** 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). */
|
|
15908
16883
|
is_fallback_climate_preset: boolean
|
|
15909
16884
|
}
|
|
15910
16885
|
| {
|
|
@@ -15912,16 +16887,16 @@ export interface Routes {
|
|
|
15912
16887
|
event_id: string
|
|
15913
16888
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15914
16889
|
workspace_id: string
|
|
15915
|
-
/**
|
|
16890
|
+
/** Date and time at which the event was created. */
|
|
15916
16891
|
created_at: string
|
|
15917
|
-
/**
|
|
16892
|
+
/** Date and time at which the event occurred. */
|
|
15918
16893
|
occurred_at: string
|
|
15919
16894
|
/** ID of the device. */
|
|
15920
16895
|
device_id: string
|
|
15921
16896
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15922
16897
|
connected_account_id: string
|
|
15923
16898
|
event_type: 'thermostat.manually_adjusted'
|
|
15924
|
-
/** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
|
|
16899
|
+
/** 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). */
|
|
15925
16900
|
method: 'seam' | 'external'
|
|
15926
16901
|
/** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
|
|
15927
16902
|
fan_mode_setting?:
|
|
@@ -15945,18 +16920,18 @@ export interface Routes {
|
|
|
15945
16920
|
event_id: string
|
|
15946
16921
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15947
16922
|
workspace_id: string
|
|
15948
|
-
/**
|
|
16923
|
+
/** Date and time at which the event was created. */
|
|
15949
16924
|
created_at: string
|
|
15950
|
-
/**
|
|
16925
|
+
/** Date and time at which the event occurred. */
|
|
15951
16926
|
occurred_at: string
|
|
15952
16927
|
/** ID of the device. */
|
|
15953
16928
|
device_id: string
|
|
15954
16929
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15955
16930
|
connected_account_id: string
|
|
15956
16931
|
event_type: 'thermostat.temperature_threshold_exceeded'
|
|
15957
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
16932
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
15958
16933
|
temperature_celsius: number
|
|
15959
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
16934
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
15960
16935
|
temperature_fahrenheit: number
|
|
15961
16936
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15962
16937
|
upper_limit_celsius: number | null
|
|
@@ -15972,18 +16947,18 @@ export interface Routes {
|
|
|
15972
16947
|
event_id: string
|
|
15973
16948
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15974
16949
|
workspace_id: string
|
|
15975
|
-
/**
|
|
16950
|
+
/** Date and time at which the event was created. */
|
|
15976
16951
|
created_at: string
|
|
15977
|
-
/**
|
|
16952
|
+
/** Date and time at which the event occurred. */
|
|
15978
16953
|
occurred_at: string
|
|
15979
16954
|
/** ID of the device. */
|
|
15980
16955
|
device_id: string
|
|
15981
16956
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15982
16957
|
connected_account_id: string
|
|
15983
16958
|
event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
|
|
15984
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
16959
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
15985
16960
|
temperature_celsius: number
|
|
15986
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
16961
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
15987
16962
|
temperature_fahrenheit: number
|
|
15988
16963
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15989
16964
|
upper_limit_celsius: number | null
|
|
@@ -15999,11 +16974,11 @@ export interface Routes {
|
|
|
15999
16974
|
event_id: string
|
|
16000
16975
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16001
16976
|
workspace_id: string
|
|
16002
|
-
/**
|
|
16977
|
+
/** Date and time at which the event was created. */
|
|
16003
16978
|
created_at: string
|
|
16004
|
-
/**
|
|
16979
|
+
/** Date and time at which the event occurred. */
|
|
16005
16980
|
occurred_at: string
|
|
16006
|
-
/** ID of the enrollment automation. */
|
|
16981
|
+
/** 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). */
|
|
16007
16982
|
enrollment_automation_id: string
|
|
16008
16983
|
event_type: 'enrollment_automation.deleted'
|
|
16009
16984
|
}
|
|
@@ -16012,11 +16987,11 @@ export interface Routes {
|
|
|
16012
16987
|
event_id: string
|
|
16013
16988
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16014
16989
|
workspace_id: string
|
|
16015
|
-
/**
|
|
16990
|
+
/** Date and time at which the event was created. */
|
|
16016
16991
|
created_at: string
|
|
16017
|
-
/**
|
|
16992
|
+
/** Date and time at which the event occurred. */
|
|
16018
16993
|
occurred_at: string
|
|
16019
|
-
/** ID of the device. */
|
|
16994
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16020
16995
|
device_id: string
|
|
16021
16996
|
event_type: 'phone.deactivated'
|
|
16022
16997
|
}
|
|
@@ -16202,15 +17177,15 @@ export interface Routes {
|
|
|
16202
17177
|
event_id: string
|
|
16203
17178
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16204
17179
|
workspace_id: string
|
|
16205
|
-
/**
|
|
17180
|
+
/** Date and time at which the event was created. */
|
|
16206
17181
|
created_at: string
|
|
16207
|
-
/**
|
|
17182
|
+
/** Date and time at which the event occurred. */
|
|
16208
17183
|
occurred_at: string
|
|
16209
|
-
/**
|
|
17184
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16210
17185
|
access_code_id: string
|
|
16211
|
-
/**
|
|
17186
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16212
17187
|
device_id: string
|
|
16213
|
-
/**
|
|
17188
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16214
17189
|
connected_account_id: string
|
|
16215
17190
|
event_type: 'access_code.created'
|
|
16216
17191
|
}
|
|
@@ -16219,15 +17194,15 @@ export interface Routes {
|
|
|
16219
17194
|
event_id: string
|
|
16220
17195
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16221
17196
|
workspace_id: string
|
|
16222
|
-
/**
|
|
17197
|
+
/** Date and time at which the event was created. */
|
|
16223
17198
|
created_at: string
|
|
16224
|
-
/**
|
|
17199
|
+
/** Date and time at which the event occurred. */
|
|
16225
17200
|
occurred_at: string
|
|
16226
|
-
/**
|
|
17201
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16227
17202
|
access_code_id: string
|
|
16228
|
-
/**
|
|
17203
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16229
17204
|
device_id: string
|
|
16230
|
-
/**
|
|
17205
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16231
17206
|
connected_account_id: string
|
|
16232
17207
|
event_type: 'access_code.changed'
|
|
16233
17208
|
}
|
|
@@ -16236,18 +17211,18 @@ export interface Routes {
|
|
|
16236
17211
|
event_id: string
|
|
16237
17212
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16238
17213
|
workspace_id: string
|
|
16239
|
-
/**
|
|
17214
|
+
/** Date and time at which the event was created. */
|
|
16240
17215
|
created_at: string
|
|
16241
|
-
/**
|
|
17216
|
+
/** Date and time at which the event occurred. */
|
|
16242
17217
|
occurred_at: string
|
|
16243
|
-
/**
|
|
17218
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16244
17219
|
access_code_id: string
|
|
16245
|
-
/**
|
|
17220
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16246
17221
|
device_id: string
|
|
16247
|
-
/**
|
|
17222
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16248
17223
|
connected_account_id: string
|
|
16249
17224
|
event_type: 'access_code.scheduled_on_device'
|
|
16250
|
-
/**
|
|
17225
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16251
17226
|
code: string
|
|
16252
17227
|
}
|
|
16253
17228
|
| {
|
|
@@ -16255,18 +17230,18 @@ export interface Routes {
|
|
|
16255
17230
|
event_id: string
|
|
16256
17231
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16257
17232
|
workspace_id: string
|
|
16258
|
-
/**
|
|
17233
|
+
/** Date and time at which the event was created. */
|
|
16259
17234
|
created_at: string
|
|
16260
|
-
/**
|
|
17235
|
+
/** Date and time at which the event occurred. */
|
|
16261
17236
|
occurred_at: string
|
|
16262
|
-
/**
|
|
17237
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16263
17238
|
access_code_id: string
|
|
16264
|
-
/**
|
|
17239
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16265
17240
|
device_id: string
|
|
16266
|
-
/**
|
|
17241
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16267
17242
|
connected_account_id: string
|
|
16268
17243
|
event_type: 'access_code.set_on_device'
|
|
16269
|
-
/**
|
|
17244
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16270
17245
|
code: string
|
|
16271
17246
|
}
|
|
16272
17247
|
| {
|
|
@@ -16274,15 +17249,15 @@ export interface Routes {
|
|
|
16274
17249
|
event_id: string
|
|
16275
17250
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16276
17251
|
workspace_id: string
|
|
16277
|
-
/**
|
|
17252
|
+
/** Date and time at which the event was created. */
|
|
16278
17253
|
created_at: string
|
|
16279
|
-
/**
|
|
17254
|
+
/** Date and time at which the event occurred. */
|
|
16280
17255
|
occurred_at: string
|
|
16281
|
-
/**
|
|
17256
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16282
17257
|
access_code_id: string
|
|
16283
|
-
/**
|
|
17258
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16284
17259
|
device_id: string
|
|
16285
|
-
/**
|
|
17260
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16286
17261
|
connected_account_id: string
|
|
16287
17262
|
event_type: 'access_code.removed_from_device'
|
|
16288
17263
|
}
|
|
@@ -16291,15 +17266,15 @@ export interface Routes {
|
|
|
16291
17266
|
event_id: string
|
|
16292
17267
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16293
17268
|
workspace_id: string
|
|
16294
|
-
/**
|
|
17269
|
+
/** Date and time at which the event was created. */
|
|
16295
17270
|
created_at: string
|
|
16296
|
-
/**
|
|
17271
|
+
/** Date and time at which the event occurred. */
|
|
16297
17272
|
occurred_at: string
|
|
16298
|
-
/**
|
|
17273
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16299
17274
|
access_code_id: string
|
|
16300
|
-
/**
|
|
17275
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16301
17276
|
device_id: string
|
|
16302
|
-
/**
|
|
17277
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16303
17278
|
connected_account_id: string
|
|
16304
17279
|
event_type: 'access_code.delay_in_setting_on_device'
|
|
16305
17280
|
}
|
|
@@ -16308,15 +17283,15 @@ export interface Routes {
|
|
|
16308
17283
|
event_id: string
|
|
16309
17284
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16310
17285
|
workspace_id: string
|
|
16311
|
-
/**
|
|
17286
|
+
/** Date and time at which the event was created. */
|
|
16312
17287
|
created_at: string
|
|
16313
|
-
/**
|
|
17288
|
+
/** Date and time at which the event occurred. */
|
|
16314
17289
|
occurred_at: string
|
|
16315
|
-
/**
|
|
17290
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16316
17291
|
access_code_id: string
|
|
16317
|
-
/**
|
|
17292
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16318
17293
|
device_id: string
|
|
16319
|
-
/**
|
|
17294
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16320
17295
|
connected_account_id: string
|
|
16321
17296
|
event_type: 'access_code.failed_to_set_on_device'
|
|
16322
17297
|
}
|
|
@@ -16325,18 +17300,18 @@ export interface Routes {
|
|
|
16325
17300
|
event_id: string
|
|
16326
17301
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16327
17302
|
workspace_id: string
|
|
16328
|
-
/**
|
|
17303
|
+
/** Date and time at which the event was created. */
|
|
16329
17304
|
created_at: string
|
|
16330
|
-
/**
|
|
17305
|
+
/** Date and time at which the event occurred. */
|
|
16331
17306
|
occurred_at: string
|
|
16332
|
-
/**
|
|
17307
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16333
17308
|
access_code_id: string
|
|
16334
|
-
/**
|
|
17309
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16335
17310
|
device_id: string
|
|
16336
|
-
/**
|
|
17311
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16337
17312
|
connected_account_id: string
|
|
16338
17313
|
event_type: 'access_code.deleted'
|
|
16339
|
-
/**
|
|
17314
|
+
/** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16340
17315
|
code: string | null
|
|
16341
17316
|
}
|
|
16342
17317
|
| {
|
|
@@ -16344,15 +17319,15 @@ export interface Routes {
|
|
|
16344
17319
|
event_id: string
|
|
16345
17320
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16346
17321
|
workspace_id: string
|
|
16347
|
-
/**
|
|
17322
|
+
/** Date and time at which the event was created. */
|
|
16348
17323
|
created_at: string
|
|
16349
|
-
/**
|
|
17324
|
+
/** Date and time at which the event occurred. */
|
|
16350
17325
|
occurred_at: string
|
|
16351
|
-
/**
|
|
17326
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16352
17327
|
access_code_id: string
|
|
16353
|
-
/**
|
|
17328
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16354
17329
|
device_id: string
|
|
16355
|
-
/**
|
|
17330
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16356
17331
|
connected_account_id: string
|
|
16357
17332
|
event_type: 'access_code.delay_in_removing_from_device'
|
|
16358
17333
|
}
|
|
@@ -16361,15 +17336,15 @@ export interface Routes {
|
|
|
16361
17336
|
event_id: string
|
|
16362
17337
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16363
17338
|
workspace_id: string
|
|
16364
|
-
/**
|
|
17339
|
+
/** Date and time at which the event was created. */
|
|
16365
17340
|
created_at: string
|
|
16366
|
-
/**
|
|
17341
|
+
/** Date and time at which the event occurred. */
|
|
16367
17342
|
occurred_at: string
|
|
16368
|
-
/**
|
|
17343
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16369
17344
|
access_code_id: string
|
|
16370
|
-
/**
|
|
17345
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16371
17346
|
device_id: string
|
|
16372
|
-
/**
|
|
17347
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16373
17348
|
connected_account_id: string
|
|
16374
17349
|
event_type: 'access_code.failed_to_remove_from_device'
|
|
16375
17350
|
}
|
|
@@ -16378,15 +17353,15 @@ export interface Routes {
|
|
|
16378
17353
|
event_id: string
|
|
16379
17354
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16380
17355
|
workspace_id: string
|
|
16381
|
-
/**
|
|
17356
|
+
/** Date and time at which the event was created. */
|
|
16382
17357
|
created_at: string
|
|
16383
|
-
/**
|
|
17358
|
+
/** Date and time at which the event occurred. */
|
|
16384
17359
|
occurred_at: string
|
|
16385
|
-
/**
|
|
17360
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16386
17361
|
access_code_id: string
|
|
16387
|
-
/**
|
|
17362
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16388
17363
|
device_id: string
|
|
16389
|
-
/**
|
|
17364
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16390
17365
|
connected_account_id: string
|
|
16391
17366
|
event_type: 'access_code.modified_external_to_seam'
|
|
16392
17367
|
}
|
|
@@ -16395,15 +17370,15 @@ export interface Routes {
|
|
|
16395
17370
|
event_id: string
|
|
16396
17371
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16397
17372
|
workspace_id: string
|
|
16398
|
-
/**
|
|
17373
|
+
/** Date and time at which the event was created. */
|
|
16399
17374
|
created_at: string
|
|
16400
|
-
/**
|
|
17375
|
+
/** Date and time at which the event occurred. */
|
|
16401
17376
|
occurred_at: string
|
|
16402
|
-
/**
|
|
17377
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16403
17378
|
access_code_id: string
|
|
16404
|
-
/**
|
|
17379
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16405
17380
|
device_id: string
|
|
16406
|
-
/**
|
|
17381
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16407
17382
|
connected_account_id: string
|
|
16408
17383
|
event_type: 'access_code.deleted_external_to_seam'
|
|
16409
17384
|
}
|
|
@@ -16412,15 +17387,15 @@ export interface Routes {
|
|
|
16412
17387
|
event_id: string
|
|
16413
17388
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16414
17389
|
workspace_id: string
|
|
16415
|
-
/**
|
|
17390
|
+
/** Date and time at which the event was created. */
|
|
16416
17391
|
created_at: string
|
|
16417
|
-
/**
|
|
17392
|
+
/** Date and time at which the event occurred. */
|
|
16418
17393
|
occurred_at: string
|
|
16419
|
-
/**
|
|
17394
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16420
17395
|
access_code_id: string
|
|
16421
|
-
/**
|
|
17396
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16422
17397
|
device_id: string
|
|
16423
|
-
/**
|
|
17398
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16424
17399
|
connected_account_id: string
|
|
16425
17400
|
event_type: 'access_code.backup_access_code_pulled'
|
|
16426
17401
|
backup_access_code_id: string
|
|
@@ -16430,15 +17405,15 @@ export interface Routes {
|
|
|
16430
17405
|
event_id: string
|
|
16431
17406
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16432
17407
|
workspace_id: string
|
|
16433
|
-
/**
|
|
17408
|
+
/** Date and time at which the event was created. */
|
|
16434
17409
|
created_at: string
|
|
16435
|
-
/**
|
|
17410
|
+
/** Date and time at which the event occurred. */
|
|
16436
17411
|
occurred_at: string
|
|
16437
|
-
/**
|
|
17412
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16438
17413
|
access_code_id: string
|
|
16439
|
-
/**
|
|
17414
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16440
17415
|
device_id: string
|
|
16441
|
-
/**
|
|
17416
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16442
17417
|
connected_account_id: string
|
|
16443
17418
|
event_type: 'access_code.unmanaged.converted_to_managed'
|
|
16444
17419
|
}
|
|
@@ -16447,15 +17422,15 @@ export interface Routes {
|
|
|
16447
17422
|
event_id: string
|
|
16448
17423
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16449
17424
|
workspace_id: string
|
|
16450
|
-
/**
|
|
17425
|
+
/** Date and time at which the event was created. */
|
|
16451
17426
|
created_at: string
|
|
16452
|
-
/**
|
|
17427
|
+
/** Date and time at which the event occurred. */
|
|
16453
17428
|
occurred_at: string
|
|
16454
|
-
/**
|
|
17429
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16455
17430
|
access_code_id: string
|
|
16456
|
-
/**
|
|
17431
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16457
17432
|
device_id: string
|
|
16458
|
-
/**
|
|
17433
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16459
17434
|
connected_account_id: string
|
|
16460
17435
|
event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
|
|
16461
17436
|
}
|
|
@@ -16464,15 +17439,15 @@ export interface Routes {
|
|
|
16464
17439
|
event_id: string
|
|
16465
17440
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16466
17441
|
workspace_id: string
|
|
16467
|
-
/**
|
|
17442
|
+
/** Date and time at which the event was created. */
|
|
16468
17443
|
created_at: string
|
|
16469
|
-
/**
|
|
17444
|
+
/** Date and time at which the event occurred. */
|
|
16470
17445
|
occurred_at: string
|
|
16471
|
-
/**
|
|
17446
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16472
17447
|
access_code_id: string
|
|
16473
|
-
/**
|
|
17448
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16474
17449
|
device_id: string
|
|
16475
|
-
/**
|
|
17450
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16476
17451
|
connected_account_id: string
|
|
16477
17452
|
event_type: 'access_code.unmanaged.created'
|
|
16478
17453
|
}
|
|
@@ -16481,15 +17456,15 @@ export interface Routes {
|
|
|
16481
17456
|
event_id: string
|
|
16482
17457
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16483
17458
|
workspace_id: string
|
|
16484
|
-
/**
|
|
17459
|
+
/** Date and time at which the event was created. */
|
|
16485
17460
|
created_at: string
|
|
16486
|
-
/**
|
|
17461
|
+
/** Date and time at which the event occurred. */
|
|
16487
17462
|
occurred_at: string
|
|
16488
|
-
/**
|
|
17463
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
16489
17464
|
access_code_id: string
|
|
16490
|
-
/**
|
|
17465
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
16491
17466
|
device_id: string
|
|
16492
|
-
/**
|
|
17467
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16493
17468
|
connected_account_id: string
|
|
16494
17469
|
event_type: 'access_code.unmanaged.removed'
|
|
16495
17470
|
}
|
|
@@ -16498,13 +17473,13 @@ export interface Routes {
|
|
|
16498
17473
|
event_id: string
|
|
16499
17474
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16500
17475
|
workspace_id: string
|
|
16501
|
-
/**
|
|
17476
|
+
/** Date and time at which the event was created. */
|
|
16502
17477
|
created_at: string
|
|
16503
|
-
/**
|
|
17478
|
+
/** Date and time at which the event occurred. */
|
|
16504
17479
|
occurred_at: string
|
|
16505
|
-
/** ID of the connected account. */
|
|
17480
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16506
17481
|
connected_account_id?: string | undefined
|
|
16507
|
-
/** ID of the ACS system. */
|
|
17482
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16508
17483
|
acs_system_id: string
|
|
16509
17484
|
event_type: 'acs_system.connected'
|
|
16510
17485
|
}
|
|
@@ -16513,13 +17488,13 @@ export interface Routes {
|
|
|
16513
17488
|
event_id: string
|
|
16514
17489
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16515
17490
|
workspace_id: string
|
|
16516
|
-
/**
|
|
17491
|
+
/** Date and time at which the event was created. */
|
|
16517
17492
|
created_at: string
|
|
16518
|
-
/**
|
|
17493
|
+
/** Date and time at which the event occurred. */
|
|
16519
17494
|
occurred_at: string
|
|
16520
|
-
/** ID of the connected account. */
|
|
17495
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16521
17496
|
connected_account_id?: string | undefined
|
|
16522
|
-
/** ID of the ACS system. */
|
|
17497
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16523
17498
|
acs_system_id: string
|
|
16524
17499
|
event_type: 'acs_system.added'
|
|
16525
17500
|
}
|
|
@@ -16528,13 +17503,13 @@ export interface Routes {
|
|
|
16528
17503
|
event_id: string
|
|
16529
17504
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16530
17505
|
workspace_id: string
|
|
16531
|
-
/**
|
|
17506
|
+
/** Date and time at which the event was created. */
|
|
16532
17507
|
created_at: string
|
|
16533
|
-
/**
|
|
17508
|
+
/** Date and time at which the event occurred. */
|
|
16534
17509
|
occurred_at: string
|
|
16535
|
-
/** ID of the connected account. */
|
|
17510
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16536
17511
|
connected_account_id?: string | undefined
|
|
16537
|
-
/** ID of the ACS system. */
|
|
17512
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16538
17513
|
acs_system_id: string
|
|
16539
17514
|
event_type: 'acs_system.disconnected'
|
|
16540
17515
|
}
|
|
@@ -16543,13 +17518,13 @@ export interface Routes {
|
|
|
16543
17518
|
event_id: string
|
|
16544
17519
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16545
17520
|
workspace_id: string
|
|
16546
|
-
/**
|
|
17521
|
+
/** Date and time at which the event was created. */
|
|
16547
17522
|
created_at: string
|
|
16548
|
-
/**
|
|
17523
|
+
/** Date and time at which the event occurred. */
|
|
16549
17524
|
occurred_at: string
|
|
16550
|
-
/** ID of the connected account. */
|
|
17525
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16551
17526
|
connected_account_id?: string | undefined
|
|
16552
|
-
/** ID of the ACS system. */
|
|
17527
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16553
17528
|
acs_system_id: string
|
|
16554
17529
|
acs_credential_id: string
|
|
16555
17530
|
event_type: 'acs_credential.deleted'
|
|
@@ -16559,13 +17534,13 @@ export interface Routes {
|
|
|
16559
17534
|
event_id: string
|
|
16560
17535
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16561
17536
|
workspace_id: string
|
|
16562
|
-
/**
|
|
17537
|
+
/** Date and time at which the event was created. */
|
|
16563
17538
|
created_at: string
|
|
16564
|
-
/**
|
|
17539
|
+
/** Date and time at which the event occurred. */
|
|
16565
17540
|
occurred_at: string
|
|
16566
|
-
/** ID of the connected account. */
|
|
17541
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16567
17542
|
connected_account_id?: string | undefined
|
|
16568
|
-
/** ID of the ACS system. */
|
|
17543
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16569
17544
|
acs_system_id: string
|
|
16570
17545
|
acs_credential_id: string
|
|
16571
17546
|
event_type: 'acs_credential.issued'
|
|
@@ -16575,13 +17550,13 @@ export interface Routes {
|
|
|
16575
17550
|
event_id: string
|
|
16576
17551
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16577
17552
|
workspace_id: string
|
|
16578
|
-
/**
|
|
17553
|
+
/** Date and time at which the event was created. */
|
|
16579
17554
|
created_at: string
|
|
16580
|
-
/**
|
|
17555
|
+
/** Date and time at which the event occurred. */
|
|
16581
17556
|
occurred_at: string
|
|
16582
|
-
/** ID of the connected account. */
|
|
17557
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16583
17558
|
connected_account_id?: string | undefined
|
|
16584
|
-
/** ID of the ACS system. */
|
|
17559
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16585
17560
|
acs_system_id: string
|
|
16586
17561
|
acs_user_id: string
|
|
16587
17562
|
event_type: 'acs_user.deleted'
|
|
@@ -16591,15 +17566,15 @@ export interface Routes {
|
|
|
16591
17566
|
event_id: string
|
|
16592
17567
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16593
17568
|
workspace_id: string
|
|
16594
|
-
/**
|
|
17569
|
+
/** Date and time at which the event was created. */
|
|
16595
17570
|
created_at: string
|
|
16596
|
-
/**
|
|
17571
|
+
/** Date and time at which the event occurred. */
|
|
16597
17572
|
occurred_at: string
|
|
16598
|
-
/** ID of the connected account. */
|
|
17573
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16599
17574
|
connected_account_id?: string | undefined
|
|
16600
|
-
/** ID of the ACS system. */
|
|
17575
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16601
17576
|
acs_system_id: string
|
|
16602
|
-
/** ID of the ACS encoder. */
|
|
17577
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
16603
17578
|
acs_encoder_id: string
|
|
16604
17579
|
event_type: 'acs_encoder.added'
|
|
16605
17580
|
}
|
|
@@ -16608,15 +17583,15 @@ export interface Routes {
|
|
|
16608
17583
|
event_id: string
|
|
16609
17584
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16610
17585
|
workspace_id: string
|
|
16611
|
-
/**
|
|
17586
|
+
/** Date and time at which the event was created. */
|
|
16612
17587
|
created_at: string
|
|
16613
|
-
/**
|
|
17588
|
+
/** Date and time at which the event occurred. */
|
|
16614
17589
|
occurred_at: string
|
|
16615
|
-
/** ID of the connected account. */
|
|
17590
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16616
17591
|
connected_account_id?: string | undefined
|
|
16617
|
-
/** ID of the ACS system. */
|
|
17592
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
16618
17593
|
acs_system_id: string
|
|
16619
|
-
/** ID of the ACS encoder. */
|
|
17594
|
+
/** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
16620
17595
|
acs_encoder_id: string
|
|
16621
17596
|
event_type: 'acs_encoder.removed'
|
|
16622
17597
|
}
|
|
@@ -16625,11 +17600,11 @@ export interface Routes {
|
|
|
16625
17600
|
event_id: string
|
|
16626
17601
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16627
17602
|
workspace_id: string
|
|
16628
|
-
/**
|
|
17603
|
+
/** Date and time at which the event was created. */
|
|
16629
17604
|
created_at: string
|
|
16630
|
-
/**
|
|
17605
|
+
/** Date and time at which the event occurred. */
|
|
16631
17606
|
occurred_at: string
|
|
16632
|
-
/** ID of the client session. */
|
|
17607
|
+
/** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
|
|
16633
17608
|
client_session_id: string
|
|
16634
17609
|
event_type: 'client_session.deleted'
|
|
16635
17610
|
}
|
|
@@ -16638,14 +17613,14 @@ export interface Routes {
|
|
|
16638
17613
|
event_id: string
|
|
16639
17614
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16640
17615
|
workspace_id: string
|
|
16641
|
-
/**
|
|
17616
|
+
/** Date and time at which the event was created. */
|
|
16642
17617
|
created_at: string
|
|
16643
|
-
/**
|
|
17618
|
+
/** Date and time at which the event occurred. */
|
|
16644
17619
|
occurred_at: string
|
|
16645
|
-
/** ID of the connected account. */
|
|
17620
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16646
17621
|
connected_account_id: string
|
|
16647
17622
|
event_type: 'connected_account.connected'
|
|
16648
|
-
/** ID of the
|
|
17623
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
16649
17624
|
connect_webview_id: string
|
|
16650
17625
|
}
|
|
16651
17626
|
| {
|
|
@@ -16653,14 +17628,14 @@ export interface Routes {
|
|
|
16653
17628
|
event_id: string
|
|
16654
17629
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16655
17630
|
workspace_id: string
|
|
16656
|
-
/**
|
|
17631
|
+
/** Date and time at which the event was created. */
|
|
16657
17632
|
created_at: string
|
|
16658
|
-
/**
|
|
17633
|
+
/** Date and time at which the event occurred. */
|
|
16659
17634
|
occurred_at: string
|
|
16660
|
-
/** ID of the connected account. */
|
|
17635
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16661
17636
|
connected_account_id: string
|
|
16662
17637
|
event_type: 'connected_account.created'
|
|
16663
|
-
/** ID of the
|
|
17638
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
16664
17639
|
connect_webview_id: string
|
|
16665
17640
|
}
|
|
16666
17641
|
| {
|
|
@@ -16668,14 +17643,14 @@ export interface Routes {
|
|
|
16668
17643
|
event_id: string
|
|
16669
17644
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16670
17645
|
workspace_id: string
|
|
16671
|
-
/**
|
|
17646
|
+
/** Date and time at which the event was created. */
|
|
16672
17647
|
created_at: string
|
|
16673
|
-
/**
|
|
17648
|
+
/** Date and time at which the event occurred. */
|
|
16674
17649
|
occurred_at: string
|
|
16675
|
-
/** ID of the connected account. */
|
|
17650
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16676
17651
|
connected_account_id: string
|
|
16677
17652
|
event_type: 'connected_account.successful_login'
|
|
16678
|
-
/** ID of the
|
|
17653
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
16679
17654
|
connect_webview_id: string
|
|
16680
17655
|
}
|
|
16681
17656
|
| {
|
|
@@ -16683,11 +17658,11 @@ export interface Routes {
|
|
|
16683
17658
|
event_id: string
|
|
16684
17659
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16685
17660
|
workspace_id: string
|
|
16686
|
-
/**
|
|
17661
|
+
/** Date and time at which the event was created. */
|
|
16687
17662
|
created_at: string
|
|
16688
|
-
/**
|
|
17663
|
+
/** Date and time at which the event occurred. */
|
|
16689
17664
|
occurred_at: string
|
|
16690
|
-
/** ID of the connected account. */
|
|
17665
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16691
17666
|
connected_account_id: string
|
|
16692
17667
|
event_type: 'connected_account.disconnected'
|
|
16693
17668
|
}
|
|
@@ -16696,11 +17671,11 @@ export interface Routes {
|
|
|
16696
17671
|
event_id: string
|
|
16697
17672
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16698
17673
|
workspace_id: string
|
|
16699
|
-
/**
|
|
17674
|
+
/** Date and time at which the event was created. */
|
|
16700
17675
|
created_at: string
|
|
16701
|
-
/**
|
|
17676
|
+
/** Date and time at which the event occurred. */
|
|
16702
17677
|
occurred_at: string
|
|
16703
|
-
/** ID of the connected account. */
|
|
17678
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16704
17679
|
connected_account_id: string
|
|
16705
17680
|
event_type: 'connected_account.completed_first_sync'
|
|
16706
17681
|
}
|
|
@@ -16709,11 +17684,11 @@ export interface Routes {
|
|
|
16709
17684
|
event_id: string
|
|
16710
17685
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16711
17686
|
workspace_id: string
|
|
16712
|
-
/**
|
|
17687
|
+
/** Date and time at which the event was created. */
|
|
16713
17688
|
created_at: string
|
|
16714
|
-
/**
|
|
17689
|
+
/** Date and time at which the event occurred. */
|
|
16715
17690
|
occurred_at: string
|
|
16716
|
-
/** ID of the connected account. */
|
|
17691
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16717
17692
|
connected_account_id: string
|
|
16718
17693
|
event_type: 'connected_account.deleted'
|
|
16719
17694
|
}
|
|
@@ -16722,11 +17697,11 @@ export interface Routes {
|
|
|
16722
17697
|
event_id: string
|
|
16723
17698
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16724
17699
|
workspace_id: string
|
|
16725
|
-
/**
|
|
17700
|
+
/** Date and time at which the event was created. */
|
|
16726
17701
|
created_at: string
|
|
16727
|
-
/**
|
|
17702
|
+
/** Date and time at which the event occurred. */
|
|
16728
17703
|
occurred_at: string
|
|
16729
|
-
/** ID of the connected account. */
|
|
17704
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16730
17705
|
connected_account_id: string
|
|
16731
17706
|
event_type: 'connected_account.completed_first_sync_after_reconnection'
|
|
16732
17707
|
}
|
|
@@ -16735,15 +17710,15 @@ export interface Routes {
|
|
|
16735
17710
|
event_id: string
|
|
16736
17711
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16737
17712
|
workspace_id: string
|
|
16738
|
-
/**
|
|
17713
|
+
/** Date and time at which the event was created. */
|
|
16739
17714
|
created_at: string
|
|
16740
|
-
/**
|
|
17715
|
+
/** Date and time at which the event occurred. */
|
|
16741
17716
|
occurred_at: string
|
|
16742
|
-
/**
|
|
17717
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
16743
17718
|
action_attempt_id: string
|
|
16744
|
-
/**
|
|
17719
|
+
/** Type of action. */
|
|
16745
17720
|
action_type: string
|
|
16746
|
-
/**
|
|
17721
|
+
/** Status of the action. */
|
|
16747
17722
|
status: string
|
|
16748
17723
|
event_type: 'action_attempt.lock_door.succeeded'
|
|
16749
17724
|
}
|
|
@@ -16752,15 +17727,15 @@ export interface Routes {
|
|
|
16752
17727
|
event_id: string
|
|
16753
17728
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16754
17729
|
workspace_id: string
|
|
16755
|
-
/**
|
|
17730
|
+
/** Date and time at which the event was created. */
|
|
16756
17731
|
created_at: string
|
|
16757
|
-
/**
|
|
17732
|
+
/** Date and time at which the event occurred. */
|
|
16758
17733
|
occurred_at: string
|
|
16759
|
-
/**
|
|
17734
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
16760
17735
|
action_attempt_id: string
|
|
16761
|
-
/**
|
|
17736
|
+
/** Type of action. */
|
|
16762
17737
|
action_type: string
|
|
16763
|
-
/**
|
|
17738
|
+
/** Status of the action. */
|
|
16764
17739
|
status: string
|
|
16765
17740
|
event_type: 'action_attempt.lock_door.failed'
|
|
16766
17741
|
}
|
|
@@ -16769,15 +17744,15 @@ export interface Routes {
|
|
|
16769
17744
|
event_id: string
|
|
16770
17745
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16771
17746
|
workspace_id: string
|
|
16772
|
-
/**
|
|
17747
|
+
/** Date and time at which the event was created. */
|
|
16773
17748
|
created_at: string
|
|
16774
|
-
/**
|
|
17749
|
+
/** Date and time at which the event occurred. */
|
|
16775
17750
|
occurred_at: string
|
|
16776
|
-
/**
|
|
17751
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
16777
17752
|
action_attempt_id: string
|
|
16778
|
-
/**
|
|
17753
|
+
/** Type of action. */
|
|
16779
17754
|
action_type: string
|
|
16780
|
-
/**
|
|
17755
|
+
/** Status of the action. */
|
|
16781
17756
|
status: string
|
|
16782
17757
|
event_type: 'action_attempt.unlock_door.succeeded'
|
|
16783
17758
|
}
|
|
@@ -16786,15 +17761,15 @@ export interface Routes {
|
|
|
16786
17761
|
event_id: string
|
|
16787
17762
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16788
17763
|
workspace_id: string
|
|
16789
|
-
/**
|
|
17764
|
+
/** Date and time at which the event was created. */
|
|
16790
17765
|
created_at: string
|
|
16791
|
-
/**
|
|
17766
|
+
/** Date and time at which the event occurred. */
|
|
16792
17767
|
occurred_at: string
|
|
16793
|
-
/**
|
|
17768
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
|
|
16794
17769
|
action_attempt_id: string
|
|
16795
|
-
/**
|
|
17770
|
+
/** Type of action. */
|
|
16796
17771
|
action_type: string
|
|
16797
|
-
/**
|
|
17772
|
+
/** Status of the action. */
|
|
16798
17773
|
status: string
|
|
16799
17774
|
event_type: 'action_attempt.unlock_door.failed'
|
|
16800
17775
|
}
|
|
@@ -16803,14 +17778,14 @@ export interface Routes {
|
|
|
16803
17778
|
event_id: string
|
|
16804
17779
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16805
17780
|
workspace_id: string
|
|
16806
|
-
/**
|
|
17781
|
+
/** Date and time at which the event was created. */
|
|
16807
17782
|
created_at: string
|
|
16808
|
-
/**
|
|
17783
|
+
/** Date and time at which the event occurred. */
|
|
16809
17784
|
occurred_at: string
|
|
16810
|
-
/** ID of the
|
|
17785
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
16811
17786
|
connect_webview_id: string
|
|
16812
17787
|
event_type: 'connect_webview.login_succeeded'
|
|
16813
|
-
/** ID of the connected account. */
|
|
17788
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16814
17789
|
connected_account_id: string
|
|
16815
17790
|
}
|
|
16816
17791
|
| {
|
|
@@ -16818,11 +17793,11 @@ export interface Routes {
|
|
|
16818
17793
|
event_id: string
|
|
16819
17794
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16820
17795
|
workspace_id: string
|
|
16821
|
-
/**
|
|
17796
|
+
/** Date and time at which the event was created. */
|
|
16822
17797
|
created_at: string
|
|
16823
|
-
/**
|
|
17798
|
+
/** Date and time at which the event occurred. */
|
|
16824
17799
|
occurred_at: string
|
|
16825
|
-
/** ID of the
|
|
17800
|
+
/** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
|
|
16826
17801
|
connect_webview_id: string
|
|
16827
17802
|
event_type: 'connect_webview.login_failed'
|
|
16828
17803
|
}
|
|
@@ -16831,9 +17806,9 @@ export interface Routes {
|
|
|
16831
17806
|
event_id: string
|
|
16832
17807
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16833
17808
|
workspace_id: string
|
|
16834
|
-
/**
|
|
17809
|
+
/** Date and time at which the event was created. */
|
|
16835
17810
|
created_at: string
|
|
16836
|
-
/**
|
|
17811
|
+
/** Date and time at which the event occurred. */
|
|
16837
17812
|
occurred_at: string
|
|
16838
17813
|
/** ID of the device. */
|
|
16839
17814
|
device_id: string
|
|
@@ -16846,9 +17821,9 @@ export interface Routes {
|
|
|
16846
17821
|
event_id: string
|
|
16847
17822
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16848
17823
|
workspace_id: string
|
|
16849
|
-
/**
|
|
17824
|
+
/** Date and time at which the event was created. */
|
|
16850
17825
|
created_at: string
|
|
16851
|
-
/**
|
|
17826
|
+
/** Date and time at which the event occurred. */
|
|
16852
17827
|
occurred_at: string
|
|
16853
17828
|
/** ID of the device. */
|
|
16854
17829
|
device_id: string
|
|
@@ -16861,9 +17836,9 @@ export interface Routes {
|
|
|
16861
17836
|
event_id: string
|
|
16862
17837
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16863
17838
|
workspace_id: string
|
|
16864
|
-
/**
|
|
17839
|
+
/** Date and time at which the event was created. */
|
|
16865
17840
|
created_at: string
|
|
16866
|
-
/**
|
|
17841
|
+
/** Date and time at which the event occurred. */
|
|
16867
17842
|
occurred_at: string
|
|
16868
17843
|
/** ID of the device. */
|
|
16869
17844
|
device_id: string
|
|
@@ -16876,9 +17851,9 @@ export interface Routes {
|
|
|
16876
17851
|
event_id: string
|
|
16877
17852
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16878
17853
|
workspace_id: string
|
|
16879
|
-
/**
|
|
17854
|
+
/** Date and time at which the event was created. */
|
|
16880
17855
|
created_at: string
|
|
16881
|
-
/**
|
|
17856
|
+
/** Date and time at which the event occurred. */
|
|
16882
17857
|
occurred_at: string
|
|
16883
17858
|
/** ID of the device. */
|
|
16884
17859
|
device_id: string
|
|
@@ -16891,9 +17866,9 @@ export interface Routes {
|
|
|
16891
17866
|
event_id: string
|
|
16892
17867
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16893
17868
|
workspace_id: string
|
|
16894
|
-
/**
|
|
17869
|
+
/** Date and time at which the event was created. */
|
|
16895
17870
|
created_at: string
|
|
16896
|
-
/**
|
|
17871
|
+
/** Date and time at which the event occurred. */
|
|
16897
17872
|
occurred_at: string
|
|
16898
17873
|
/** ID of the device. */
|
|
16899
17874
|
device_id: string
|
|
@@ -16906,9 +17881,9 @@ export interface Routes {
|
|
|
16906
17881
|
event_id: string
|
|
16907
17882
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16908
17883
|
workspace_id: string
|
|
16909
|
-
/**
|
|
17884
|
+
/** Date and time at which the event was created. */
|
|
16910
17885
|
created_at: string
|
|
16911
|
-
/**
|
|
17886
|
+
/** Date and time at which the event occurred. */
|
|
16912
17887
|
occurred_at: string
|
|
16913
17888
|
/** ID of the device. */
|
|
16914
17889
|
device_id: string
|
|
@@ -16926,9 +17901,9 @@ export interface Routes {
|
|
|
16926
17901
|
event_id: string
|
|
16927
17902
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16928
17903
|
workspace_id: string
|
|
16929
|
-
/**
|
|
17904
|
+
/** Date and time at which the event was created. */
|
|
16930
17905
|
created_at: string
|
|
16931
|
-
/**
|
|
17906
|
+
/** Date and time at which the event occurred. */
|
|
16932
17907
|
occurred_at: string
|
|
16933
17908
|
/** ID of the device. */
|
|
16934
17909
|
device_id: string
|
|
@@ -16946,9 +17921,9 @@ export interface Routes {
|
|
|
16946
17921
|
event_id: string
|
|
16947
17922
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16948
17923
|
workspace_id: string
|
|
16949
|
-
/**
|
|
17924
|
+
/** Date and time at which the event was created. */
|
|
16950
17925
|
created_at: string
|
|
16951
|
-
/**
|
|
17926
|
+
/** Date and time at which the event occurred. */
|
|
16952
17927
|
occurred_at: string
|
|
16953
17928
|
/** ID of the device. */
|
|
16954
17929
|
device_id: string
|
|
@@ -16961,9 +17936,9 @@ export interface Routes {
|
|
|
16961
17936
|
event_id: string
|
|
16962
17937
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16963
17938
|
workspace_id: string
|
|
16964
|
-
/**
|
|
17939
|
+
/** Date and time at which the event was created. */
|
|
16965
17940
|
created_at: string
|
|
16966
|
-
/**
|
|
17941
|
+
/** Date and time at which the event occurred. */
|
|
16967
17942
|
occurred_at: string
|
|
16968
17943
|
/** ID of the device. */
|
|
16969
17944
|
device_id: string
|
|
@@ -16978,9 +17953,9 @@ export interface Routes {
|
|
|
16978
17953
|
event_id: string
|
|
16979
17954
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16980
17955
|
workspace_id: string
|
|
16981
|
-
/**
|
|
17956
|
+
/** Date and time at which the event was created. */
|
|
16982
17957
|
created_at: string
|
|
16983
|
-
/**
|
|
17958
|
+
/** Date and time at which the event occurred. */
|
|
16984
17959
|
occurred_at: string
|
|
16985
17960
|
/** ID of the device. */
|
|
16986
17961
|
device_id: string
|
|
@@ -16997,9 +17972,9 @@ export interface Routes {
|
|
|
16997
17972
|
event_id: string
|
|
16998
17973
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16999
17974
|
workspace_id: string
|
|
17000
|
-
/**
|
|
17975
|
+
/** Date and time at which the event was created. */
|
|
17001
17976
|
created_at: string
|
|
17002
|
-
/**
|
|
17977
|
+
/** Date and time at which the event occurred. */
|
|
17003
17978
|
occurred_at: string
|
|
17004
17979
|
/** ID of the device. */
|
|
17005
17980
|
device_id: string
|
|
@@ -17012,9 +17987,9 @@ export interface Routes {
|
|
|
17012
17987
|
event_id: string
|
|
17013
17988
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17014
17989
|
workspace_id: string
|
|
17015
|
-
/**
|
|
17990
|
+
/** Date and time at which the event was created. */
|
|
17016
17991
|
created_at: string
|
|
17017
|
-
/**
|
|
17992
|
+
/** Date and time at which the event occurred. */
|
|
17018
17993
|
occurred_at: string
|
|
17019
17994
|
/** ID of the device. */
|
|
17020
17995
|
device_id: string
|
|
@@ -17027,9 +18002,9 @@ export interface Routes {
|
|
|
17027
18002
|
event_id: string
|
|
17028
18003
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17029
18004
|
workspace_id: string
|
|
17030
|
-
/**
|
|
18005
|
+
/** Date and time at which the event was created. */
|
|
17031
18006
|
created_at: string
|
|
17032
|
-
/**
|
|
18007
|
+
/** Date and time at which the event occurred. */
|
|
17033
18008
|
occurred_at: string
|
|
17034
18009
|
/** ID of the device. */
|
|
17035
18010
|
device_id: string
|
|
@@ -17042,9 +18017,9 @@ export interface Routes {
|
|
|
17042
18017
|
event_id: string
|
|
17043
18018
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17044
18019
|
workspace_id: string
|
|
17045
|
-
/**
|
|
18020
|
+
/** Date and time at which the event was created. */
|
|
17046
18021
|
created_at: string
|
|
17047
|
-
/**
|
|
18022
|
+
/** Date and time at which the event occurred. */
|
|
17048
18023
|
occurred_at: string
|
|
17049
18024
|
/** ID of the device. */
|
|
17050
18025
|
device_id: string
|
|
@@ -17057,9 +18032,9 @@ export interface Routes {
|
|
|
17057
18032
|
event_id: string
|
|
17058
18033
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17059
18034
|
workspace_id: string
|
|
17060
|
-
/**
|
|
18035
|
+
/** Date and time at which the event was created. */
|
|
17061
18036
|
created_at: string
|
|
17062
|
-
/**
|
|
18037
|
+
/** Date and time at which the event occurred. */
|
|
17063
18038
|
occurred_at: string
|
|
17064
18039
|
/** ID of the device. */
|
|
17065
18040
|
device_id: string
|
|
@@ -17072,9 +18047,9 @@ export interface Routes {
|
|
|
17072
18047
|
event_id: string
|
|
17073
18048
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17074
18049
|
workspace_id: string
|
|
17075
|
-
/**
|
|
18050
|
+
/** Date and time at which the event was created. */
|
|
17076
18051
|
created_at: string
|
|
17077
|
-
/**
|
|
18052
|
+
/** Date and time at which the event occurred. */
|
|
17078
18053
|
occurred_at: string
|
|
17079
18054
|
/** ID of the device. */
|
|
17080
18055
|
device_id: string
|
|
@@ -17087,9 +18062,9 @@ export interface Routes {
|
|
|
17087
18062
|
event_id: string
|
|
17088
18063
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17089
18064
|
workspace_id: string
|
|
17090
|
-
/**
|
|
18065
|
+
/** Date and time at which the event was created. */
|
|
17091
18066
|
created_at: string
|
|
17092
|
-
/**
|
|
18067
|
+
/** Date and time at which the event occurred. */
|
|
17093
18068
|
occurred_at: string
|
|
17094
18069
|
/** ID of the device. */
|
|
17095
18070
|
device_id: string
|
|
@@ -17102,9 +18077,9 @@ export interface Routes {
|
|
|
17102
18077
|
event_id: string
|
|
17103
18078
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17104
18079
|
workspace_id: string
|
|
17105
|
-
/**
|
|
18080
|
+
/** Date and time at which the event was created. */
|
|
17106
18081
|
created_at: string
|
|
17107
|
-
/**
|
|
18082
|
+
/** Date and time at which the event occurred. */
|
|
17108
18083
|
occurred_at: string
|
|
17109
18084
|
/** ID of the device. */
|
|
17110
18085
|
device_id: string
|
|
@@ -17117,9 +18092,9 @@ export interface Routes {
|
|
|
17117
18092
|
event_id: string
|
|
17118
18093
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17119
18094
|
workspace_id: string
|
|
17120
|
-
/**
|
|
18095
|
+
/** Date and time at which the event was created. */
|
|
17121
18096
|
created_at: string
|
|
17122
|
-
/**
|
|
18097
|
+
/** Date and time at which the event occurred. */
|
|
17123
18098
|
occurred_at: string
|
|
17124
18099
|
/** ID of the device. */
|
|
17125
18100
|
device_id: string
|
|
@@ -17132,9 +18107,9 @@ export interface Routes {
|
|
|
17132
18107
|
event_id: string
|
|
17133
18108
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17134
18109
|
workspace_id: string
|
|
17135
|
-
/**
|
|
18110
|
+
/** Date and time at which the event was created. */
|
|
17136
18111
|
created_at: string
|
|
17137
|
-
/**
|
|
18112
|
+
/** Date and time at which the event occurred. */
|
|
17138
18113
|
occurred_at: string
|
|
17139
18114
|
/** ID of the device. */
|
|
17140
18115
|
device_id: string
|
|
@@ -17147,9 +18122,9 @@ export interface Routes {
|
|
|
17147
18122
|
event_id: string
|
|
17148
18123
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17149
18124
|
workspace_id: string
|
|
17150
|
-
/**
|
|
18125
|
+
/** Date and time at which the event was created. */
|
|
17151
18126
|
created_at: string
|
|
17152
|
-
/**
|
|
18127
|
+
/** Date and time at which the event occurred. */
|
|
17153
18128
|
occurred_at: string
|
|
17154
18129
|
/** ID of the device. */
|
|
17155
18130
|
device_id: string
|
|
@@ -17162,9 +18137,9 @@ export interface Routes {
|
|
|
17162
18137
|
event_id: string
|
|
17163
18138
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17164
18139
|
workspace_id: string
|
|
17165
|
-
/**
|
|
18140
|
+
/** Date and time at which the event was created. */
|
|
17166
18141
|
created_at: string
|
|
17167
|
-
/**
|
|
18142
|
+
/** Date and time at which the event occurred. */
|
|
17168
18143
|
occurred_at: string
|
|
17169
18144
|
/** ID of the device. */
|
|
17170
18145
|
device_id: string
|
|
@@ -17177,9 +18152,9 @@ export interface Routes {
|
|
|
17177
18152
|
event_id: string
|
|
17178
18153
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17179
18154
|
workspace_id: string
|
|
17180
|
-
/**
|
|
18155
|
+
/** Date and time at which the event was created. */
|
|
17181
18156
|
created_at: string
|
|
17182
|
-
/**
|
|
18157
|
+
/** Date and time at which the event occurred. */
|
|
17183
18158
|
occurred_at: string
|
|
17184
18159
|
/** ID of the device. */
|
|
17185
18160
|
device_id: string
|
|
@@ -17204,9 +18179,9 @@ export interface Routes {
|
|
|
17204
18179
|
event_id: string
|
|
17205
18180
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17206
18181
|
workspace_id: string
|
|
17207
|
-
/**
|
|
18182
|
+
/** Date and time at which the event was created. */
|
|
17208
18183
|
created_at: string
|
|
17209
|
-
/**
|
|
18184
|
+
/** Date and time at which the event occurred. */
|
|
17210
18185
|
occurred_at: string
|
|
17211
18186
|
/** ID of the device. */
|
|
17212
18187
|
device_id: string
|
|
@@ -17217,7 +18192,7 @@ export interface Routes {
|
|
|
17217
18192
|
access_code_id?: string | undefined
|
|
17218
18193
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
|
|
17219
18194
|
action_attempt_id?: string | undefined
|
|
17220
|
-
/** 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. */
|
|
18195
|
+
/** 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. */
|
|
17221
18196
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
|
|
17222
18197
|
}
|
|
17223
18198
|
| {
|
|
@@ -17225,9 +18200,9 @@ export interface Routes {
|
|
|
17225
18200
|
event_id: string
|
|
17226
18201
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17227
18202
|
workspace_id: string
|
|
17228
|
-
/**
|
|
18203
|
+
/** Date and time at which the event was created. */
|
|
17229
18204
|
created_at: string
|
|
17230
|
-
/**
|
|
18205
|
+
/** Date and time at which the event occurred. */
|
|
17231
18206
|
occurred_at: string
|
|
17232
18207
|
/** ID of the device. */
|
|
17233
18208
|
device_id: string
|
|
@@ -17238,7 +18213,7 @@ export interface Routes {
|
|
|
17238
18213
|
access_code_id?: string | undefined
|
|
17239
18214
|
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
|
|
17240
18215
|
action_attempt_id?: string | undefined
|
|
17241
|
-
/** 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. */
|
|
18216
|
+
/** 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. */
|
|
17242
18217
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
|
|
17243
18218
|
}
|
|
17244
18219
|
| {
|
|
@@ -17246,9 +18221,9 @@ export interface Routes {
|
|
|
17246
18221
|
event_id: string
|
|
17247
18222
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17248
18223
|
workspace_id: string
|
|
17249
|
-
/**
|
|
18224
|
+
/** Date and time at which the event was created. */
|
|
17250
18225
|
created_at: string
|
|
17251
|
-
/**
|
|
18226
|
+
/** Date and time at which the event occurred. */
|
|
17252
18227
|
occurred_at: string
|
|
17253
18228
|
/** ID of the device. */
|
|
17254
18229
|
device_id: string
|
|
@@ -17263,9 +18238,9 @@ export interface Routes {
|
|
|
17263
18238
|
event_id: string
|
|
17264
18239
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17265
18240
|
workspace_id: string
|
|
17266
|
-
/**
|
|
18241
|
+
/** Date and time at which the event was created. */
|
|
17267
18242
|
created_at: string
|
|
17268
|
-
/**
|
|
18243
|
+
/** Date and time at which the event occurred. */
|
|
17269
18244
|
occurred_at: string
|
|
17270
18245
|
/** ID of the device. */
|
|
17271
18246
|
device_id: string
|
|
@@ -17276,7 +18251,7 @@ export interface Routes {
|
|
|
17276
18251
|
thermostat_schedule_id: string | null
|
|
17277
18252
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
|
|
17278
18253
|
climate_preset_key: string
|
|
17279
|
-
/** 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. */
|
|
18254
|
+
/** 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). */
|
|
17280
18255
|
is_fallback_climate_preset: boolean
|
|
17281
18256
|
}
|
|
17282
18257
|
| {
|
|
@@ -17284,16 +18259,16 @@ export interface Routes {
|
|
|
17284
18259
|
event_id: string
|
|
17285
18260
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17286
18261
|
workspace_id: string
|
|
17287
|
-
/**
|
|
18262
|
+
/** Date and time at which the event was created. */
|
|
17288
18263
|
created_at: string
|
|
17289
|
-
/**
|
|
18264
|
+
/** Date and time at which the event occurred. */
|
|
17290
18265
|
occurred_at: string
|
|
17291
18266
|
/** ID of the device. */
|
|
17292
18267
|
device_id: string
|
|
17293
18268
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
17294
18269
|
connected_account_id: string
|
|
17295
18270
|
event_type: 'thermostat.manually_adjusted'
|
|
17296
|
-
/** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
|
|
18271
|
+
/** 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). */
|
|
17297
18272
|
method: 'seam' | 'external'
|
|
17298
18273
|
/** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
|
|
17299
18274
|
fan_mode_setting?:
|
|
@@ -17317,18 +18292,18 @@ export interface Routes {
|
|
|
17317
18292
|
event_id: string
|
|
17318
18293
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17319
18294
|
workspace_id: string
|
|
17320
|
-
/**
|
|
18295
|
+
/** Date and time at which the event was created. */
|
|
17321
18296
|
created_at: string
|
|
17322
|
-
/**
|
|
18297
|
+
/** Date and time at which the event occurred. */
|
|
17323
18298
|
occurred_at: string
|
|
17324
18299
|
/** ID of the device. */
|
|
17325
18300
|
device_id: string
|
|
17326
18301
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
17327
18302
|
connected_account_id: string
|
|
17328
18303
|
event_type: 'thermostat.temperature_threshold_exceeded'
|
|
17329
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
18304
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
17330
18305
|
temperature_celsius: number
|
|
17331
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
18306
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
17332
18307
|
temperature_fahrenheit: number
|
|
17333
18308
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
17334
18309
|
upper_limit_celsius: number | null
|
|
@@ -17344,18 +18319,18 @@ export interface Routes {
|
|
|
17344
18319
|
event_id: string
|
|
17345
18320
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17346
18321
|
workspace_id: string
|
|
17347
|
-
/**
|
|
18322
|
+
/** Date and time at which the event was created. */
|
|
17348
18323
|
created_at: string
|
|
17349
|
-
/**
|
|
18324
|
+
/** Date and time at which the event occurred. */
|
|
17350
18325
|
occurred_at: string
|
|
17351
18326
|
/** ID of the device. */
|
|
17352
18327
|
device_id: string
|
|
17353
18328
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
17354
18329
|
connected_account_id: string
|
|
17355
18330
|
event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
|
|
17356
|
-
/** Temperature, in °C, reported by the thermostat. */
|
|
18331
|
+
/** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
17357
18332
|
temperature_celsius: number
|
|
17358
|
-
/** Temperature, in °F, reported by the thermostat. */
|
|
18333
|
+
/** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
|
|
17359
18334
|
temperature_fahrenheit: number
|
|
17360
18335
|
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
17361
18336
|
upper_limit_celsius: number | null
|
|
@@ -17371,11 +18346,11 @@ export interface Routes {
|
|
|
17371
18346
|
event_id: string
|
|
17372
18347
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17373
18348
|
workspace_id: string
|
|
17374
|
-
/**
|
|
18349
|
+
/** Date and time at which the event was created. */
|
|
17375
18350
|
created_at: string
|
|
17376
|
-
/**
|
|
18351
|
+
/** Date and time at which the event occurred. */
|
|
17377
18352
|
occurred_at: string
|
|
17378
|
-
/** ID of the enrollment automation. */
|
|
18353
|
+
/** 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). */
|
|
17379
18354
|
enrollment_automation_id: string
|
|
17380
18355
|
event_type: 'enrollment_automation.deleted'
|
|
17381
18356
|
}
|
|
@@ -17384,11 +18359,11 @@ export interface Routes {
|
|
|
17384
18359
|
event_id: string
|
|
17385
18360
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
17386
18361
|
workspace_id: string
|
|
17387
|
-
/**
|
|
18362
|
+
/** Date and time at which the event was created. */
|
|
17388
18363
|
created_at: string
|
|
17389
|
-
/**
|
|
18364
|
+
/** Date and time at which the event occurred. */
|
|
17390
18365
|
occurred_at: string
|
|
17391
|
-
/** ID of the device. */
|
|
18366
|
+
/** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
|
|
17392
18367
|
device_id: string
|
|
17393
18368
|
event_type: 'phone.deactivated'
|
|
17394
18369
|
}
|
|
@@ -18078,11 +19053,86 @@ export interface Routes {
|
|
|
18078
19053
|
workspace_id: string
|
|
18079
19054
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18080
19055
|
errors: Array<
|
|
18081
|
-
|
|
|
18082
|
-
|
|
18083
|
-
|
|
18084
|
-
|
|
18085
|
-
|
|
19056
|
+
| (
|
|
19057
|
+
| {
|
|
19058
|
+
message: string
|
|
19059
|
+
is_device_error: true
|
|
19060
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19061
|
+
error_code: 'device_offline'
|
|
19062
|
+
}
|
|
19063
|
+
| {
|
|
19064
|
+
message: string
|
|
19065
|
+
is_device_error: true
|
|
19066
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19067
|
+
error_code: 'device_removed'
|
|
19068
|
+
}
|
|
19069
|
+
| {
|
|
19070
|
+
message: string
|
|
19071
|
+
is_device_error: true
|
|
19072
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19073
|
+
error_code: 'account_disconnected'
|
|
19074
|
+
}
|
|
19075
|
+
| {
|
|
19076
|
+
message: string
|
|
19077
|
+
is_device_error: true
|
|
19078
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19079
|
+
error_code: 'hub_disconnected'
|
|
19080
|
+
}
|
|
19081
|
+
| {
|
|
19082
|
+
message: string
|
|
19083
|
+
is_device_error: true
|
|
19084
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19085
|
+
error_code: 'device_disconnected'
|
|
19086
|
+
}
|
|
19087
|
+
| {
|
|
19088
|
+
message: string
|
|
19089
|
+
is_device_error: true
|
|
19090
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19091
|
+
error_code: 'empty_backup_access_code_pool'
|
|
19092
|
+
}
|
|
19093
|
+
| {
|
|
19094
|
+
message: string
|
|
19095
|
+
is_device_error: true
|
|
19096
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19097
|
+
error_code: 'august_lock_not_authorized'
|
|
19098
|
+
}
|
|
19099
|
+
| {
|
|
19100
|
+
message: string
|
|
19101
|
+
is_device_error: true
|
|
19102
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19103
|
+
error_code: 'august_lock_missing_bridge'
|
|
19104
|
+
}
|
|
19105
|
+
| {
|
|
19106
|
+
message: string
|
|
19107
|
+
is_device_error: true
|
|
19108
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19109
|
+
error_code: 'salto_site_user_limit_reached'
|
|
19110
|
+
}
|
|
19111
|
+
| {
|
|
19112
|
+
message: string
|
|
19113
|
+
is_device_error: true
|
|
19114
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19115
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
19116
|
+
}
|
|
19117
|
+
| {
|
|
19118
|
+
message: string
|
|
19119
|
+
is_device_error: true
|
|
19120
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19121
|
+
error_code: 'missing_device_credentials'
|
|
19122
|
+
}
|
|
19123
|
+
| {
|
|
19124
|
+
message: string
|
|
19125
|
+
is_device_error: true
|
|
19126
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19127
|
+
error_code: 'auxiliary_heat_running'
|
|
19128
|
+
}
|
|
19129
|
+
| {
|
|
19130
|
+
message: string
|
|
19131
|
+
is_device_error: true
|
|
19132
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19133
|
+
error_code: 'subscription_required'
|
|
19134
|
+
}
|
|
19135
|
+
)
|
|
18086
19136
|
| {
|
|
18087
19137
|
message: string
|
|
18088
19138
|
is_connected_account_error: true
|
|
@@ -18783,11 +19833,86 @@ export interface Routes {
|
|
|
18783
19833
|
workspace_id: string
|
|
18784
19834
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18785
19835
|
errors: Array<
|
|
18786
|
-
|
|
|
18787
|
-
|
|
18788
|
-
|
|
18789
|
-
|
|
18790
|
-
|
|
19836
|
+
| (
|
|
19837
|
+
| {
|
|
19838
|
+
message: string
|
|
19839
|
+
is_device_error: true
|
|
19840
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19841
|
+
error_code: 'device_offline'
|
|
19842
|
+
}
|
|
19843
|
+
| {
|
|
19844
|
+
message: string
|
|
19845
|
+
is_device_error: true
|
|
19846
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19847
|
+
error_code: 'device_removed'
|
|
19848
|
+
}
|
|
19849
|
+
| {
|
|
19850
|
+
message: string
|
|
19851
|
+
is_device_error: true
|
|
19852
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19853
|
+
error_code: 'account_disconnected'
|
|
19854
|
+
}
|
|
19855
|
+
| {
|
|
19856
|
+
message: string
|
|
19857
|
+
is_device_error: true
|
|
19858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19859
|
+
error_code: 'hub_disconnected'
|
|
19860
|
+
}
|
|
19861
|
+
| {
|
|
19862
|
+
message: string
|
|
19863
|
+
is_device_error: true
|
|
19864
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19865
|
+
error_code: 'device_disconnected'
|
|
19866
|
+
}
|
|
19867
|
+
| {
|
|
19868
|
+
message: string
|
|
19869
|
+
is_device_error: true
|
|
19870
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19871
|
+
error_code: 'empty_backup_access_code_pool'
|
|
19872
|
+
}
|
|
19873
|
+
| {
|
|
19874
|
+
message: string
|
|
19875
|
+
is_device_error: true
|
|
19876
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19877
|
+
error_code: 'august_lock_not_authorized'
|
|
19878
|
+
}
|
|
19879
|
+
| {
|
|
19880
|
+
message: string
|
|
19881
|
+
is_device_error: true
|
|
19882
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19883
|
+
error_code: 'august_lock_missing_bridge'
|
|
19884
|
+
}
|
|
19885
|
+
| {
|
|
19886
|
+
message: string
|
|
19887
|
+
is_device_error: true
|
|
19888
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19889
|
+
error_code: 'salto_site_user_limit_reached'
|
|
19890
|
+
}
|
|
19891
|
+
| {
|
|
19892
|
+
message: string
|
|
19893
|
+
is_device_error: true
|
|
19894
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19895
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
19896
|
+
}
|
|
19897
|
+
| {
|
|
19898
|
+
message: string
|
|
19899
|
+
is_device_error: true
|
|
19900
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19901
|
+
error_code: 'missing_device_credentials'
|
|
19902
|
+
}
|
|
19903
|
+
| {
|
|
19904
|
+
message: string
|
|
19905
|
+
is_device_error: true
|
|
19906
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19907
|
+
error_code: 'auxiliary_heat_running'
|
|
19908
|
+
}
|
|
19909
|
+
| {
|
|
19910
|
+
message: string
|
|
19911
|
+
is_device_error: true
|
|
19912
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19913
|
+
error_code: 'subscription_required'
|
|
19914
|
+
}
|
|
19915
|
+
)
|
|
18791
19916
|
| {
|
|
18792
19917
|
message: string
|
|
18793
19918
|
is_connected_account_error: true
|
|
@@ -19672,11 +20797,86 @@ export interface Routes {
|
|
|
19672
20797
|
workspace_id: string
|
|
19673
20798
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
19674
20799
|
errors: Array<
|
|
19675
|
-
|
|
|
19676
|
-
|
|
19677
|
-
|
|
19678
|
-
|
|
19679
|
-
|
|
20800
|
+
| (
|
|
20801
|
+
| {
|
|
20802
|
+
message: string
|
|
20803
|
+
is_device_error: true
|
|
20804
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20805
|
+
error_code: 'device_offline'
|
|
20806
|
+
}
|
|
20807
|
+
| {
|
|
20808
|
+
message: string
|
|
20809
|
+
is_device_error: true
|
|
20810
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20811
|
+
error_code: 'device_removed'
|
|
20812
|
+
}
|
|
20813
|
+
| {
|
|
20814
|
+
message: string
|
|
20815
|
+
is_device_error: true
|
|
20816
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20817
|
+
error_code: 'account_disconnected'
|
|
20818
|
+
}
|
|
20819
|
+
| {
|
|
20820
|
+
message: string
|
|
20821
|
+
is_device_error: true
|
|
20822
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20823
|
+
error_code: 'hub_disconnected'
|
|
20824
|
+
}
|
|
20825
|
+
| {
|
|
20826
|
+
message: string
|
|
20827
|
+
is_device_error: true
|
|
20828
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20829
|
+
error_code: 'device_disconnected'
|
|
20830
|
+
}
|
|
20831
|
+
| {
|
|
20832
|
+
message: string
|
|
20833
|
+
is_device_error: true
|
|
20834
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20835
|
+
error_code: 'empty_backup_access_code_pool'
|
|
20836
|
+
}
|
|
20837
|
+
| {
|
|
20838
|
+
message: string
|
|
20839
|
+
is_device_error: true
|
|
20840
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20841
|
+
error_code: 'august_lock_not_authorized'
|
|
20842
|
+
}
|
|
20843
|
+
| {
|
|
20844
|
+
message: string
|
|
20845
|
+
is_device_error: true
|
|
20846
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20847
|
+
error_code: 'august_lock_missing_bridge'
|
|
20848
|
+
}
|
|
20849
|
+
| {
|
|
20850
|
+
message: string
|
|
20851
|
+
is_device_error: true
|
|
20852
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20853
|
+
error_code: 'salto_site_user_limit_reached'
|
|
20854
|
+
}
|
|
20855
|
+
| {
|
|
20856
|
+
message: string
|
|
20857
|
+
is_device_error: true
|
|
20858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20859
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
20860
|
+
}
|
|
20861
|
+
| {
|
|
20862
|
+
message: string
|
|
20863
|
+
is_device_error: true
|
|
20864
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20865
|
+
error_code: 'missing_device_credentials'
|
|
20866
|
+
}
|
|
20867
|
+
| {
|
|
20868
|
+
message: string
|
|
20869
|
+
is_device_error: true
|
|
20870
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20871
|
+
error_code: 'auxiliary_heat_running'
|
|
20872
|
+
}
|
|
20873
|
+
| {
|
|
20874
|
+
message: string
|
|
20875
|
+
is_device_error: true
|
|
20876
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
20877
|
+
error_code: 'subscription_required'
|
|
20878
|
+
}
|
|
20879
|
+
)
|
|
19680
20880
|
| {
|
|
19681
20881
|
message: string
|
|
19682
20882
|
is_connected_account_error: true
|
|
@@ -20377,11 +21577,86 @@ export interface Routes {
|
|
|
20377
21577
|
workspace_id: string
|
|
20378
21578
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
20379
21579
|
errors: Array<
|
|
20380
|
-
|
|
|
20381
|
-
|
|
20382
|
-
|
|
20383
|
-
|
|
20384
|
-
|
|
21580
|
+
| (
|
|
21581
|
+
| {
|
|
21582
|
+
message: string
|
|
21583
|
+
is_device_error: true
|
|
21584
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21585
|
+
error_code: 'device_offline'
|
|
21586
|
+
}
|
|
21587
|
+
| {
|
|
21588
|
+
message: string
|
|
21589
|
+
is_device_error: true
|
|
21590
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21591
|
+
error_code: 'device_removed'
|
|
21592
|
+
}
|
|
21593
|
+
| {
|
|
21594
|
+
message: string
|
|
21595
|
+
is_device_error: true
|
|
21596
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21597
|
+
error_code: 'account_disconnected'
|
|
21598
|
+
}
|
|
21599
|
+
| {
|
|
21600
|
+
message: string
|
|
21601
|
+
is_device_error: true
|
|
21602
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21603
|
+
error_code: 'hub_disconnected'
|
|
21604
|
+
}
|
|
21605
|
+
| {
|
|
21606
|
+
message: string
|
|
21607
|
+
is_device_error: true
|
|
21608
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21609
|
+
error_code: 'device_disconnected'
|
|
21610
|
+
}
|
|
21611
|
+
| {
|
|
21612
|
+
message: string
|
|
21613
|
+
is_device_error: true
|
|
21614
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21615
|
+
error_code: 'empty_backup_access_code_pool'
|
|
21616
|
+
}
|
|
21617
|
+
| {
|
|
21618
|
+
message: string
|
|
21619
|
+
is_device_error: true
|
|
21620
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21621
|
+
error_code: 'august_lock_not_authorized'
|
|
21622
|
+
}
|
|
21623
|
+
| {
|
|
21624
|
+
message: string
|
|
21625
|
+
is_device_error: true
|
|
21626
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21627
|
+
error_code: 'august_lock_missing_bridge'
|
|
21628
|
+
}
|
|
21629
|
+
| {
|
|
21630
|
+
message: string
|
|
21631
|
+
is_device_error: true
|
|
21632
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21633
|
+
error_code: 'salto_site_user_limit_reached'
|
|
21634
|
+
}
|
|
21635
|
+
| {
|
|
21636
|
+
message: string
|
|
21637
|
+
is_device_error: true
|
|
21638
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21639
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
21640
|
+
}
|
|
21641
|
+
| {
|
|
21642
|
+
message: string
|
|
21643
|
+
is_device_error: true
|
|
21644
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21645
|
+
error_code: 'missing_device_credentials'
|
|
21646
|
+
}
|
|
21647
|
+
| {
|
|
21648
|
+
message: string
|
|
21649
|
+
is_device_error: true
|
|
21650
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21651
|
+
error_code: 'auxiliary_heat_running'
|
|
21652
|
+
}
|
|
21653
|
+
| {
|
|
21654
|
+
message: string
|
|
21655
|
+
is_device_error: true
|
|
21656
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
21657
|
+
error_code: 'subscription_required'
|
|
21658
|
+
}
|
|
21659
|
+
)
|
|
20385
21660
|
| {
|
|
20386
21661
|
message: string
|
|
20387
21662
|
is_connected_account_error: true
|
|
@@ -23196,11 +24471,86 @@ export interface Routes {
|
|
|
23196
24471
|
workspace_id: string
|
|
23197
24472
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
23198
24473
|
errors: Array<
|
|
23199
|
-
|
|
|
23200
|
-
|
|
23201
|
-
|
|
23202
|
-
|
|
23203
|
-
|
|
24474
|
+
| (
|
|
24475
|
+
| {
|
|
24476
|
+
message: string
|
|
24477
|
+
is_device_error: true
|
|
24478
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24479
|
+
error_code: 'device_offline'
|
|
24480
|
+
}
|
|
24481
|
+
| {
|
|
24482
|
+
message: string
|
|
24483
|
+
is_device_error: true
|
|
24484
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24485
|
+
error_code: 'device_removed'
|
|
24486
|
+
}
|
|
24487
|
+
| {
|
|
24488
|
+
message: string
|
|
24489
|
+
is_device_error: true
|
|
24490
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24491
|
+
error_code: 'account_disconnected'
|
|
24492
|
+
}
|
|
24493
|
+
| {
|
|
24494
|
+
message: string
|
|
24495
|
+
is_device_error: true
|
|
24496
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24497
|
+
error_code: 'hub_disconnected'
|
|
24498
|
+
}
|
|
24499
|
+
| {
|
|
24500
|
+
message: string
|
|
24501
|
+
is_device_error: true
|
|
24502
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24503
|
+
error_code: 'device_disconnected'
|
|
24504
|
+
}
|
|
24505
|
+
| {
|
|
24506
|
+
message: string
|
|
24507
|
+
is_device_error: true
|
|
24508
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24509
|
+
error_code: 'empty_backup_access_code_pool'
|
|
24510
|
+
}
|
|
24511
|
+
| {
|
|
24512
|
+
message: string
|
|
24513
|
+
is_device_error: true
|
|
24514
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24515
|
+
error_code: 'august_lock_not_authorized'
|
|
24516
|
+
}
|
|
24517
|
+
| {
|
|
24518
|
+
message: string
|
|
24519
|
+
is_device_error: true
|
|
24520
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24521
|
+
error_code: 'august_lock_missing_bridge'
|
|
24522
|
+
}
|
|
24523
|
+
| {
|
|
24524
|
+
message: string
|
|
24525
|
+
is_device_error: true
|
|
24526
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24527
|
+
error_code: 'salto_site_user_limit_reached'
|
|
24528
|
+
}
|
|
24529
|
+
| {
|
|
24530
|
+
message: string
|
|
24531
|
+
is_device_error: true
|
|
24532
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24533
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
24534
|
+
}
|
|
24535
|
+
| {
|
|
24536
|
+
message: string
|
|
24537
|
+
is_device_error: true
|
|
24538
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24539
|
+
error_code: 'missing_device_credentials'
|
|
24540
|
+
}
|
|
24541
|
+
| {
|
|
24542
|
+
message: string
|
|
24543
|
+
is_device_error: true
|
|
24544
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24545
|
+
error_code: 'auxiliary_heat_running'
|
|
24546
|
+
}
|
|
24547
|
+
| {
|
|
24548
|
+
message: string
|
|
24549
|
+
is_device_error: true
|
|
24550
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24551
|
+
error_code: 'subscription_required'
|
|
24552
|
+
}
|
|
24553
|
+
)
|
|
23204
24554
|
| {
|
|
23205
24555
|
message: string
|
|
23206
24556
|
is_connected_account_error: true
|
|
@@ -23901,11 +25251,86 @@ export interface Routes {
|
|
|
23901
25251
|
workspace_id: string
|
|
23902
25252
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
23903
25253
|
errors: Array<
|
|
23904
|
-
|
|
|
23905
|
-
|
|
23906
|
-
|
|
23907
|
-
|
|
23908
|
-
|
|
25254
|
+
| (
|
|
25255
|
+
| {
|
|
25256
|
+
message: string
|
|
25257
|
+
is_device_error: true
|
|
25258
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25259
|
+
error_code: 'device_offline'
|
|
25260
|
+
}
|
|
25261
|
+
| {
|
|
25262
|
+
message: string
|
|
25263
|
+
is_device_error: true
|
|
25264
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25265
|
+
error_code: 'device_removed'
|
|
25266
|
+
}
|
|
25267
|
+
| {
|
|
25268
|
+
message: string
|
|
25269
|
+
is_device_error: true
|
|
25270
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25271
|
+
error_code: 'account_disconnected'
|
|
25272
|
+
}
|
|
25273
|
+
| {
|
|
25274
|
+
message: string
|
|
25275
|
+
is_device_error: true
|
|
25276
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25277
|
+
error_code: 'hub_disconnected'
|
|
25278
|
+
}
|
|
25279
|
+
| {
|
|
25280
|
+
message: string
|
|
25281
|
+
is_device_error: true
|
|
25282
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25283
|
+
error_code: 'device_disconnected'
|
|
25284
|
+
}
|
|
25285
|
+
| {
|
|
25286
|
+
message: string
|
|
25287
|
+
is_device_error: true
|
|
25288
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25289
|
+
error_code: 'empty_backup_access_code_pool'
|
|
25290
|
+
}
|
|
25291
|
+
| {
|
|
25292
|
+
message: string
|
|
25293
|
+
is_device_error: true
|
|
25294
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25295
|
+
error_code: 'august_lock_not_authorized'
|
|
25296
|
+
}
|
|
25297
|
+
| {
|
|
25298
|
+
message: string
|
|
25299
|
+
is_device_error: true
|
|
25300
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25301
|
+
error_code: 'august_lock_missing_bridge'
|
|
25302
|
+
}
|
|
25303
|
+
| {
|
|
25304
|
+
message: string
|
|
25305
|
+
is_device_error: true
|
|
25306
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25307
|
+
error_code: 'salto_site_user_limit_reached'
|
|
25308
|
+
}
|
|
25309
|
+
| {
|
|
25310
|
+
message: string
|
|
25311
|
+
is_device_error: true
|
|
25312
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25313
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
25314
|
+
}
|
|
25315
|
+
| {
|
|
25316
|
+
message: string
|
|
25317
|
+
is_device_error: true
|
|
25318
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25319
|
+
error_code: 'missing_device_credentials'
|
|
25320
|
+
}
|
|
25321
|
+
| {
|
|
25322
|
+
message: string
|
|
25323
|
+
is_device_error: true
|
|
25324
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25325
|
+
error_code: 'auxiliary_heat_running'
|
|
25326
|
+
}
|
|
25327
|
+
| {
|
|
25328
|
+
message: string
|
|
25329
|
+
is_device_error: true
|
|
25330
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25331
|
+
error_code: 'subscription_required'
|
|
25332
|
+
}
|
|
25333
|
+
)
|
|
23909
25334
|
| {
|
|
23910
25335
|
message: string
|
|
23911
25336
|
is_connected_account_error: true
|
|
@@ -26916,11 +28341,86 @@ export interface Routes {
|
|
|
26916
28341
|
workspace_id: string
|
|
26917
28342
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
26918
28343
|
errors: Array<
|
|
26919
|
-
|
|
|
26920
|
-
|
|
26921
|
-
|
|
26922
|
-
|
|
26923
|
-
|
|
28344
|
+
| (
|
|
28345
|
+
| {
|
|
28346
|
+
message: string
|
|
28347
|
+
is_device_error: true
|
|
28348
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28349
|
+
error_code: 'device_offline'
|
|
28350
|
+
}
|
|
28351
|
+
| {
|
|
28352
|
+
message: string
|
|
28353
|
+
is_device_error: true
|
|
28354
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28355
|
+
error_code: 'device_removed'
|
|
28356
|
+
}
|
|
28357
|
+
| {
|
|
28358
|
+
message: string
|
|
28359
|
+
is_device_error: true
|
|
28360
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28361
|
+
error_code: 'account_disconnected'
|
|
28362
|
+
}
|
|
28363
|
+
| {
|
|
28364
|
+
message: string
|
|
28365
|
+
is_device_error: true
|
|
28366
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28367
|
+
error_code: 'hub_disconnected'
|
|
28368
|
+
}
|
|
28369
|
+
| {
|
|
28370
|
+
message: string
|
|
28371
|
+
is_device_error: true
|
|
28372
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28373
|
+
error_code: 'device_disconnected'
|
|
28374
|
+
}
|
|
28375
|
+
| {
|
|
28376
|
+
message: string
|
|
28377
|
+
is_device_error: true
|
|
28378
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28379
|
+
error_code: 'empty_backup_access_code_pool'
|
|
28380
|
+
}
|
|
28381
|
+
| {
|
|
28382
|
+
message: string
|
|
28383
|
+
is_device_error: true
|
|
28384
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28385
|
+
error_code: 'august_lock_not_authorized'
|
|
28386
|
+
}
|
|
28387
|
+
| {
|
|
28388
|
+
message: string
|
|
28389
|
+
is_device_error: true
|
|
28390
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28391
|
+
error_code: 'august_lock_missing_bridge'
|
|
28392
|
+
}
|
|
28393
|
+
| {
|
|
28394
|
+
message: string
|
|
28395
|
+
is_device_error: true
|
|
28396
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28397
|
+
error_code: 'salto_site_user_limit_reached'
|
|
28398
|
+
}
|
|
28399
|
+
| {
|
|
28400
|
+
message: string
|
|
28401
|
+
is_device_error: true
|
|
28402
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28403
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
28404
|
+
}
|
|
28405
|
+
| {
|
|
28406
|
+
message: string
|
|
28407
|
+
is_device_error: true
|
|
28408
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28409
|
+
error_code: 'missing_device_credentials'
|
|
28410
|
+
}
|
|
28411
|
+
| {
|
|
28412
|
+
message: string
|
|
28413
|
+
is_device_error: true
|
|
28414
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28415
|
+
error_code: 'auxiliary_heat_running'
|
|
28416
|
+
}
|
|
28417
|
+
| {
|
|
28418
|
+
message: string
|
|
28419
|
+
is_device_error: true
|
|
28420
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28421
|
+
error_code: 'subscription_required'
|
|
28422
|
+
}
|
|
28423
|
+
)
|
|
26924
28424
|
| {
|
|
26925
28425
|
message: string
|
|
26926
28426
|
is_connected_account_error: true
|
|
@@ -27015,11 +28515,86 @@ export interface Routes {
|
|
|
27015
28515
|
workspace_id: string
|
|
27016
28516
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
27017
28517
|
errors: Array<
|
|
27018
|
-
|
|
|
27019
|
-
|
|
27020
|
-
|
|
27021
|
-
|
|
27022
|
-
|
|
28518
|
+
| (
|
|
28519
|
+
| {
|
|
28520
|
+
message: string
|
|
28521
|
+
is_device_error: true
|
|
28522
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28523
|
+
error_code: 'device_offline'
|
|
28524
|
+
}
|
|
28525
|
+
| {
|
|
28526
|
+
message: string
|
|
28527
|
+
is_device_error: true
|
|
28528
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28529
|
+
error_code: 'device_removed'
|
|
28530
|
+
}
|
|
28531
|
+
| {
|
|
28532
|
+
message: string
|
|
28533
|
+
is_device_error: true
|
|
28534
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28535
|
+
error_code: 'account_disconnected'
|
|
28536
|
+
}
|
|
28537
|
+
| {
|
|
28538
|
+
message: string
|
|
28539
|
+
is_device_error: true
|
|
28540
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28541
|
+
error_code: 'hub_disconnected'
|
|
28542
|
+
}
|
|
28543
|
+
| {
|
|
28544
|
+
message: string
|
|
28545
|
+
is_device_error: true
|
|
28546
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28547
|
+
error_code: 'device_disconnected'
|
|
28548
|
+
}
|
|
28549
|
+
| {
|
|
28550
|
+
message: string
|
|
28551
|
+
is_device_error: true
|
|
28552
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28553
|
+
error_code: 'empty_backup_access_code_pool'
|
|
28554
|
+
}
|
|
28555
|
+
| {
|
|
28556
|
+
message: string
|
|
28557
|
+
is_device_error: true
|
|
28558
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28559
|
+
error_code: 'august_lock_not_authorized'
|
|
28560
|
+
}
|
|
28561
|
+
| {
|
|
28562
|
+
message: string
|
|
28563
|
+
is_device_error: true
|
|
28564
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28565
|
+
error_code: 'august_lock_missing_bridge'
|
|
28566
|
+
}
|
|
28567
|
+
| {
|
|
28568
|
+
message: string
|
|
28569
|
+
is_device_error: true
|
|
28570
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28571
|
+
error_code: 'salto_site_user_limit_reached'
|
|
28572
|
+
}
|
|
28573
|
+
| {
|
|
28574
|
+
message: string
|
|
28575
|
+
is_device_error: true
|
|
28576
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28577
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
28578
|
+
}
|
|
28579
|
+
| {
|
|
28580
|
+
message: string
|
|
28581
|
+
is_device_error: true
|
|
28582
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28583
|
+
error_code: 'missing_device_credentials'
|
|
28584
|
+
}
|
|
28585
|
+
| {
|
|
28586
|
+
message: string
|
|
28587
|
+
is_device_error: true
|
|
28588
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28589
|
+
error_code: 'auxiliary_heat_running'
|
|
28590
|
+
}
|
|
28591
|
+
| {
|
|
28592
|
+
message: string
|
|
28593
|
+
is_device_error: true
|
|
28594
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
28595
|
+
error_code: 'subscription_required'
|
|
28596
|
+
}
|
|
28597
|
+
)
|
|
27023
28598
|
| {
|
|
27024
28599
|
message: string
|
|
27025
28600
|
is_connected_account_error: true
|
|
@@ -29684,11 +31259,86 @@ export interface Routes {
|
|
|
29684
31259
|
workspace_id: string
|
|
29685
31260
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
29686
31261
|
errors: Array<
|
|
29687
|
-
|
|
|
29688
|
-
|
|
29689
|
-
|
|
29690
|
-
|
|
29691
|
-
|
|
31262
|
+
| (
|
|
31263
|
+
| {
|
|
31264
|
+
message: string
|
|
31265
|
+
is_device_error: true
|
|
31266
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31267
|
+
error_code: 'device_offline'
|
|
31268
|
+
}
|
|
31269
|
+
| {
|
|
31270
|
+
message: string
|
|
31271
|
+
is_device_error: true
|
|
31272
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31273
|
+
error_code: 'device_removed'
|
|
31274
|
+
}
|
|
31275
|
+
| {
|
|
31276
|
+
message: string
|
|
31277
|
+
is_device_error: true
|
|
31278
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31279
|
+
error_code: 'account_disconnected'
|
|
31280
|
+
}
|
|
31281
|
+
| {
|
|
31282
|
+
message: string
|
|
31283
|
+
is_device_error: true
|
|
31284
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31285
|
+
error_code: 'hub_disconnected'
|
|
31286
|
+
}
|
|
31287
|
+
| {
|
|
31288
|
+
message: string
|
|
31289
|
+
is_device_error: true
|
|
31290
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31291
|
+
error_code: 'device_disconnected'
|
|
31292
|
+
}
|
|
31293
|
+
| {
|
|
31294
|
+
message: string
|
|
31295
|
+
is_device_error: true
|
|
31296
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31297
|
+
error_code: 'empty_backup_access_code_pool'
|
|
31298
|
+
}
|
|
31299
|
+
| {
|
|
31300
|
+
message: string
|
|
31301
|
+
is_device_error: true
|
|
31302
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31303
|
+
error_code: 'august_lock_not_authorized'
|
|
31304
|
+
}
|
|
31305
|
+
| {
|
|
31306
|
+
message: string
|
|
31307
|
+
is_device_error: true
|
|
31308
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31309
|
+
error_code: 'august_lock_missing_bridge'
|
|
31310
|
+
}
|
|
31311
|
+
| {
|
|
31312
|
+
message: string
|
|
31313
|
+
is_device_error: true
|
|
31314
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31315
|
+
error_code: 'salto_site_user_limit_reached'
|
|
31316
|
+
}
|
|
31317
|
+
| {
|
|
31318
|
+
message: string
|
|
31319
|
+
is_device_error: true
|
|
31320
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31321
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
31322
|
+
}
|
|
31323
|
+
| {
|
|
31324
|
+
message: string
|
|
31325
|
+
is_device_error: true
|
|
31326
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31327
|
+
error_code: 'missing_device_credentials'
|
|
31328
|
+
}
|
|
31329
|
+
| {
|
|
31330
|
+
message: string
|
|
31331
|
+
is_device_error: true
|
|
31332
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31333
|
+
error_code: 'auxiliary_heat_running'
|
|
31334
|
+
}
|
|
31335
|
+
| {
|
|
31336
|
+
message: string
|
|
31337
|
+
is_device_error: true
|
|
31338
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31339
|
+
error_code: 'subscription_required'
|
|
31340
|
+
}
|
|
31341
|
+
)
|
|
29692
31342
|
| {
|
|
29693
31343
|
message: string
|
|
29694
31344
|
is_connected_account_error: true
|
|
@@ -32485,11 +34135,86 @@ export interface Routes {
|
|
|
32485
34135
|
workspace_id: string
|
|
32486
34136
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
32487
34137
|
errors: Array<
|
|
32488
|
-
|
|
|
32489
|
-
|
|
32490
|
-
|
|
32491
|
-
|
|
32492
|
-
|
|
34138
|
+
| (
|
|
34139
|
+
| {
|
|
34140
|
+
message: string
|
|
34141
|
+
is_device_error: true
|
|
34142
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34143
|
+
error_code: 'device_offline'
|
|
34144
|
+
}
|
|
34145
|
+
| {
|
|
34146
|
+
message: string
|
|
34147
|
+
is_device_error: true
|
|
34148
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34149
|
+
error_code: 'device_removed'
|
|
34150
|
+
}
|
|
34151
|
+
| {
|
|
34152
|
+
message: string
|
|
34153
|
+
is_device_error: true
|
|
34154
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34155
|
+
error_code: 'account_disconnected'
|
|
34156
|
+
}
|
|
34157
|
+
| {
|
|
34158
|
+
message: string
|
|
34159
|
+
is_device_error: true
|
|
34160
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34161
|
+
error_code: 'hub_disconnected'
|
|
34162
|
+
}
|
|
34163
|
+
| {
|
|
34164
|
+
message: string
|
|
34165
|
+
is_device_error: true
|
|
34166
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34167
|
+
error_code: 'device_disconnected'
|
|
34168
|
+
}
|
|
34169
|
+
| {
|
|
34170
|
+
message: string
|
|
34171
|
+
is_device_error: true
|
|
34172
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34173
|
+
error_code: 'empty_backup_access_code_pool'
|
|
34174
|
+
}
|
|
34175
|
+
| {
|
|
34176
|
+
message: string
|
|
34177
|
+
is_device_error: true
|
|
34178
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34179
|
+
error_code: 'august_lock_not_authorized'
|
|
34180
|
+
}
|
|
34181
|
+
| {
|
|
34182
|
+
message: string
|
|
34183
|
+
is_device_error: true
|
|
34184
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34185
|
+
error_code: 'august_lock_missing_bridge'
|
|
34186
|
+
}
|
|
34187
|
+
| {
|
|
34188
|
+
message: string
|
|
34189
|
+
is_device_error: true
|
|
34190
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34191
|
+
error_code: 'salto_site_user_limit_reached'
|
|
34192
|
+
}
|
|
34193
|
+
| {
|
|
34194
|
+
message: string
|
|
34195
|
+
is_device_error: true
|
|
34196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34197
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
34198
|
+
}
|
|
34199
|
+
| {
|
|
34200
|
+
message: string
|
|
34201
|
+
is_device_error: true
|
|
34202
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34203
|
+
error_code: 'missing_device_credentials'
|
|
34204
|
+
}
|
|
34205
|
+
| {
|
|
34206
|
+
message: string
|
|
34207
|
+
is_device_error: true
|
|
34208
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34209
|
+
error_code: 'auxiliary_heat_running'
|
|
34210
|
+
}
|
|
34211
|
+
| {
|
|
34212
|
+
message: string
|
|
34213
|
+
is_device_error: true
|
|
34214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34215
|
+
error_code: 'subscription_required'
|
|
34216
|
+
}
|
|
34217
|
+
)
|
|
32493
34218
|
| {
|
|
32494
34219
|
message: string
|
|
32495
34220
|
is_connected_account_error: true
|
|
@@ -33190,11 +34915,86 @@ export interface Routes {
|
|
|
33190
34915
|
workspace_id: string
|
|
33191
34916
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
33192
34917
|
errors: Array<
|
|
33193
|
-
|
|
|
33194
|
-
|
|
33195
|
-
|
|
33196
|
-
|
|
33197
|
-
|
|
34918
|
+
| (
|
|
34919
|
+
| {
|
|
34920
|
+
message: string
|
|
34921
|
+
is_device_error: true
|
|
34922
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34923
|
+
error_code: 'device_offline'
|
|
34924
|
+
}
|
|
34925
|
+
| {
|
|
34926
|
+
message: string
|
|
34927
|
+
is_device_error: true
|
|
34928
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34929
|
+
error_code: 'device_removed'
|
|
34930
|
+
}
|
|
34931
|
+
| {
|
|
34932
|
+
message: string
|
|
34933
|
+
is_device_error: true
|
|
34934
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34935
|
+
error_code: 'account_disconnected'
|
|
34936
|
+
}
|
|
34937
|
+
| {
|
|
34938
|
+
message: string
|
|
34939
|
+
is_device_error: true
|
|
34940
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34941
|
+
error_code: 'hub_disconnected'
|
|
34942
|
+
}
|
|
34943
|
+
| {
|
|
34944
|
+
message: string
|
|
34945
|
+
is_device_error: true
|
|
34946
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34947
|
+
error_code: 'device_disconnected'
|
|
34948
|
+
}
|
|
34949
|
+
| {
|
|
34950
|
+
message: string
|
|
34951
|
+
is_device_error: true
|
|
34952
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34953
|
+
error_code: 'empty_backup_access_code_pool'
|
|
34954
|
+
}
|
|
34955
|
+
| {
|
|
34956
|
+
message: string
|
|
34957
|
+
is_device_error: true
|
|
34958
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34959
|
+
error_code: 'august_lock_not_authorized'
|
|
34960
|
+
}
|
|
34961
|
+
| {
|
|
34962
|
+
message: string
|
|
34963
|
+
is_device_error: true
|
|
34964
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34965
|
+
error_code: 'august_lock_missing_bridge'
|
|
34966
|
+
}
|
|
34967
|
+
| {
|
|
34968
|
+
message: string
|
|
34969
|
+
is_device_error: true
|
|
34970
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34971
|
+
error_code: 'salto_site_user_limit_reached'
|
|
34972
|
+
}
|
|
34973
|
+
| {
|
|
34974
|
+
message: string
|
|
34975
|
+
is_device_error: true
|
|
34976
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34977
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
34978
|
+
}
|
|
34979
|
+
| {
|
|
34980
|
+
message: string
|
|
34981
|
+
is_device_error: true
|
|
34982
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34983
|
+
error_code: 'missing_device_credentials'
|
|
34984
|
+
}
|
|
34985
|
+
| {
|
|
34986
|
+
message: string
|
|
34987
|
+
is_device_error: true
|
|
34988
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34989
|
+
error_code: 'auxiliary_heat_running'
|
|
34990
|
+
}
|
|
34991
|
+
| {
|
|
34992
|
+
message: string
|
|
34993
|
+
is_device_error: true
|
|
34994
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34995
|
+
error_code: 'subscription_required'
|
|
34996
|
+
}
|
|
34997
|
+
)
|
|
33198
34998
|
| {
|
|
33199
34999
|
message: string
|
|
33200
35000
|
is_connected_account_error: true
|
|
@@ -37254,11 +39054,86 @@ export interface Routes {
|
|
|
37254
39054
|
workspace_id: string
|
|
37255
39055
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
37256
39056
|
errors: Array<
|
|
37257
|
-
|
|
|
37258
|
-
|
|
37259
|
-
|
|
37260
|
-
|
|
37261
|
-
|
|
39057
|
+
| (
|
|
39058
|
+
| {
|
|
39059
|
+
message: string
|
|
39060
|
+
is_device_error: true
|
|
39061
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39062
|
+
error_code: 'device_offline'
|
|
39063
|
+
}
|
|
39064
|
+
| {
|
|
39065
|
+
message: string
|
|
39066
|
+
is_device_error: true
|
|
39067
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39068
|
+
error_code: 'device_removed'
|
|
39069
|
+
}
|
|
39070
|
+
| {
|
|
39071
|
+
message: string
|
|
39072
|
+
is_device_error: true
|
|
39073
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39074
|
+
error_code: 'account_disconnected'
|
|
39075
|
+
}
|
|
39076
|
+
| {
|
|
39077
|
+
message: string
|
|
39078
|
+
is_device_error: true
|
|
39079
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39080
|
+
error_code: 'hub_disconnected'
|
|
39081
|
+
}
|
|
39082
|
+
| {
|
|
39083
|
+
message: string
|
|
39084
|
+
is_device_error: true
|
|
39085
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39086
|
+
error_code: 'device_disconnected'
|
|
39087
|
+
}
|
|
39088
|
+
| {
|
|
39089
|
+
message: string
|
|
39090
|
+
is_device_error: true
|
|
39091
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39092
|
+
error_code: 'empty_backup_access_code_pool'
|
|
39093
|
+
}
|
|
39094
|
+
| {
|
|
39095
|
+
message: string
|
|
39096
|
+
is_device_error: true
|
|
39097
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39098
|
+
error_code: 'august_lock_not_authorized'
|
|
39099
|
+
}
|
|
39100
|
+
| {
|
|
39101
|
+
message: string
|
|
39102
|
+
is_device_error: true
|
|
39103
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39104
|
+
error_code: 'august_lock_missing_bridge'
|
|
39105
|
+
}
|
|
39106
|
+
| {
|
|
39107
|
+
message: string
|
|
39108
|
+
is_device_error: true
|
|
39109
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39110
|
+
error_code: 'salto_site_user_limit_reached'
|
|
39111
|
+
}
|
|
39112
|
+
| {
|
|
39113
|
+
message: string
|
|
39114
|
+
is_device_error: true
|
|
39115
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39116
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
39117
|
+
}
|
|
39118
|
+
| {
|
|
39119
|
+
message: string
|
|
39120
|
+
is_device_error: true
|
|
39121
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39122
|
+
error_code: 'missing_device_credentials'
|
|
39123
|
+
}
|
|
39124
|
+
| {
|
|
39125
|
+
message: string
|
|
39126
|
+
is_device_error: true
|
|
39127
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39128
|
+
error_code: 'auxiliary_heat_running'
|
|
39129
|
+
}
|
|
39130
|
+
| {
|
|
39131
|
+
message: string
|
|
39132
|
+
is_device_error: true
|
|
39133
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39134
|
+
error_code: 'subscription_required'
|
|
39135
|
+
}
|
|
39136
|
+
)
|
|
37262
39137
|
| {
|
|
37263
39138
|
message: string
|
|
37264
39139
|
is_connected_account_error: true
|
|
@@ -37961,11 +39836,86 @@ export interface Routes {
|
|
|
37961
39836
|
workspace_id: string
|
|
37962
39837
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
37963
39838
|
errors: Array<
|
|
37964
|
-
|
|
|
37965
|
-
|
|
37966
|
-
|
|
37967
|
-
|
|
37968
|
-
|
|
39839
|
+
| (
|
|
39840
|
+
| {
|
|
39841
|
+
message: string
|
|
39842
|
+
is_device_error: true
|
|
39843
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39844
|
+
error_code: 'device_offline'
|
|
39845
|
+
}
|
|
39846
|
+
| {
|
|
39847
|
+
message: string
|
|
39848
|
+
is_device_error: true
|
|
39849
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39850
|
+
error_code: 'device_removed'
|
|
39851
|
+
}
|
|
39852
|
+
| {
|
|
39853
|
+
message: string
|
|
39854
|
+
is_device_error: true
|
|
39855
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39856
|
+
error_code: 'account_disconnected'
|
|
39857
|
+
}
|
|
39858
|
+
| {
|
|
39859
|
+
message: string
|
|
39860
|
+
is_device_error: true
|
|
39861
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39862
|
+
error_code: 'hub_disconnected'
|
|
39863
|
+
}
|
|
39864
|
+
| {
|
|
39865
|
+
message: string
|
|
39866
|
+
is_device_error: true
|
|
39867
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39868
|
+
error_code: 'device_disconnected'
|
|
39869
|
+
}
|
|
39870
|
+
| {
|
|
39871
|
+
message: string
|
|
39872
|
+
is_device_error: true
|
|
39873
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39874
|
+
error_code: 'empty_backup_access_code_pool'
|
|
39875
|
+
}
|
|
39876
|
+
| {
|
|
39877
|
+
message: string
|
|
39878
|
+
is_device_error: true
|
|
39879
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39880
|
+
error_code: 'august_lock_not_authorized'
|
|
39881
|
+
}
|
|
39882
|
+
| {
|
|
39883
|
+
message: string
|
|
39884
|
+
is_device_error: true
|
|
39885
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39886
|
+
error_code: 'august_lock_missing_bridge'
|
|
39887
|
+
}
|
|
39888
|
+
| {
|
|
39889
|
+
message: string
|
|
39890
|
+
is_device_error: true
|
|
39891
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39892
|
+
error_code: 'salto_site_user_limit_reached'
|
|
39893
|
+
}
|
|
39894
|
+
| {
|
|
39895
|
+
message: string
|
|
39896
|
+
is_device_error: true
|
|
39897
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39898
|
+
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
39899
|
+
}
|
|
39900
|
+
| {
|
|
39901
|
+
message: string
|
|
39902
|
+
is_device_error: true
|
|
39903
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39904
|
+
error_code: 'missing_device_credentials'
|
|
39905
|
+
}
|
|
39906
|
+
| {
|
|
39907
|
+
message: string
|
|
39908
|
+
is_device_error: true
|
|
39909
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39910
|
+
error_code: 'auxiliary_heat_running'
|
|
39911
|
+
}
|
|
39912
|
+
| {
|
|
39913
|
+
message: string
|
|
39914
|
+
is_device_error: true
|
|
39915
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39916
|
+
error_code: 'subscription_required'
|
|
39917
|
+
}
|
|
39918
|
+
)
|
|
37969
39919
|
| {
|
|
37970
39920
|
message: string
|
|
37971
39921
|
is_connected_account_error: true
|