@seamapi/types 1.242.1 → 1.243.1
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 +106 -124
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +427 -273
- package/lib/seam/connect/models/acs/acs-user.d.ts +45 -100
- package/lib/seam/connect/models/acs/acs-user.js +4 -8
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +78 -0
- package/lib/seam/connect/models/devices/device-metadata.js +14 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +102 -0
- package/lib/seam/connect/models/devices/phone.d.ts +78 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +78 -0
- package/lib/seam/connect/openapi.d.ts +52 -138
- package/lib/seam/connect/openapi.js +86 -114
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +165 -63
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +4 -8
- package/src/lib/seam/connect/models/devices/device-metadata.ts +16 -0
- package/src/lib/seam/connect/openapi.ts +86 -123
- package/src/lib/seam/connect/route-types.ts +189 -70
package/dist/connect.d.cts
CHANGED
|
@@ -1021,19 +1021,6 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1021
1021
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1022
1022
|
created_at: z.ZodString;
|
|
1023
1023
|
message: z.ZodString;
|
|
1024
|
-
}, {
|
|
1025
|
-
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
1026
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1027
|
-
message: string;
|
|
1028
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1029
|
-
created_at: string;
|
|
1030
|
-
}, {
|
|
1031
|
-
message: string;
|
|
1032
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1033
|
-
created_at: string;
|
|
1034
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1035
|
-
created_at: z.ZodString;
|
|
1036
|
-
message: z.ZodString;
|
|
1037
1024
|
}, {
|
|
1038
1025
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
1039
1026
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1075,40 +1062,40 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1075
1062
|
created_at: z.ZodString;
|
|
1076
1063
|
message: z.ZodString;
|
|
1077
1064
|
}, {
|
|
1078
|
-
|
|
1065
|
+
error_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
1079
1066
|
}>, "strip", z.ZodTypeAny, {
|
|
1080
1067
|
message: string;
|
|
1081
|
-
|
|
1068
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1082
1069
|
created_at: string;
|
|
1083
1070
|
}, {
|
|
1084
1071
|
message: string;
|
|
1085
|
-
|
|
1072
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1086
1073
|
created_at: string;
|
|
1087
1074
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1088
1075
|
created_at: z.ZodString;
|
|
1089
1076
|
message: z.ZodString;
|
|
1090
1077
|
}, {
|
|
1091
|
-
|
|
1078
|
+
error_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
1092
1079
|
}>, "strip", z.ZodTypeAny, {
|
|
1093
1080
|
message: string;
|
|
1094
|
-
|
|
1081
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1095
1082
|
created_at: string;
|
|
1096
1083
|
}, {
|
|
1097
1084
|
message: string;
|
|
1098
|
-
|
|
1085
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1099
1086
|
created_at: string;
|
|
1100
1087
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1101
1088
|
created_at: z.ZodString;
|
|
1102
1089
|
message: z.ZodString;
|
|
1103
1090
|
}, {
|
|
1104
|
-
|
|
1091
|
+
error_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
1105
1092
|
}>, "strip", z.ZodTypeAny, {
|
|
1106
1093
|
message: string;
|
|
1107
|
-
|
|
1094
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1108
1095
|
created_at: string;
|
|
1109
1096
|
}, {
|
|
1110
1097
|
message: string;
|
|
1111
|
-
|
|
1098
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1112
1099
|
created_at: string;
|
|
1113
1100
|
}>]>, "many">;
|
|
1114
1101
|
}, {
|
|
@@ -1130,22 +1117,18 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1130
1117
|
created_at: string;
|
|
1131
1118
|
} | {
|
|
1132
1119
|
message: string;
|
|
1133
|
-
|
|
1120
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1134
1121
|
created_at: string;
|
|
1135
1122
|
} | {
|
|
1136
1123
|
message: string;
|
|
1137
|
-
|
|
1124
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1138
1125
|
created_at: string;
|
|
1139
1126
|
} | {
|
|
1140
1127
|
message: string;
|
|
1141
|
-
|
|
1128
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1142
1129
|
created_at: string;
|
|
1143
1130
|
})[];
|
|
1144
1131
|
warnings: ({
|
|
1145
|
-
message: string;
|
|
1146
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1147
|
-
created_at: string;
|
|
1148
|
-
} | {
|
|
1149
1132
|
message: string;
|
|
1150
1133
|
warning_code: "being_deleted";
|
|
1151
1134
|
created_at: string;
|
|
@@ -1189,22 +1172,18 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1189
1172
|
created_at: string;
|
|
1190
1173
|
} | {
|
|
1191
1174
|
message: string;
|
|
1192
|
-
|
|
1175
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1193
1176
|
created_at: string;
|
|
1194
1177
|
} | {
|
|
1195
1178
|
message: string;
|
|
1196
|
-
|
|
1179
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1197
1180
|
created_at: string;
|
|
1198
1181
|
} | {
|
|
1199
1182
|
message: string;
|
|
1200
|
-
|
|
1183
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1201
1184
|
created_at: string;
|
|
1202
1185
|
})[];
|
|
1203
1186
|
warnings: ({
|
|
1204
|
-
message: string;
|
|
1205
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1206
|
-
created_at: string;
|
|
1207
|
-
} | {
|
|
1208
1187
|
message: string;
|
|
1209
1188
|
warning_code: "being_deleted";
|
|
1210
1189
|
created_at: string;
|
|
@@ -1279,19 +1258,6 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1279
1258
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1280
1259
|
created_at: z.ZodString;
|
|
1281
1260
|
message: z.ZodString;
|
|
1282
|
-
}, {
|
|
1283
|
-
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
1284
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1285
|
-
message: string;
|
|
1286
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1287
|
-
created_at: string;
|
|
1288
|
-
}, {
|
|
1289
|
-
message: string;
|
|
1290
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1291
|
-
created_at: string;
|
|
1292
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1293
|
-
created_at: z.ZodString;
|
|
1294
|
-
message: z.ZodString;
|
|
1295
1261
|
}, {
|
|
1296
1262
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
1297
1263
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1333,40 +1299,40 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1333
1299
|
created_at: z.ZodString;
|
|
1334
1300
|
message: z.ZodString;
|
|
1335
1301
|
}, {
|
|
1336
|
-
|
|
1302
|
+
error_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
1337
1303
|
}>, "strip", z.ZodTypeAny, {
|
|
1338
1304
|
message: string;
|
|
1339
|
-
|
|
1305
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1340
1306
|
created_at: string;
|
|
1341
1307
|
}, {
|
|
1342
1308
|
message: string;
|
|
1343
|
-
|
|
1309
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1344
1310
|
created_at: string;
|
|
1345
1311
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1346
1312
|
created_at: z.ZodString;
|
|
1347
1313
|
message: z.ZodString;
|
|
1348
1314
|
}, {
|
|
1349
|
-
|
|
1315
|
+
error_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
1350
1316
|
}>, "strip", z.ZodTypeAny, {
|
|
1351
1317
|
message: string;
|
|
1352
|
-
|
|
1318
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1353
1319
|
created_at: string;
|
|
1354
1320
|
}, {
|
|
1355
1321
|
message: string;
|
|
1356
|
-
|
|
1322
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1357
1323
|
created_at: string;
|
|
1358
1324
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1359
1325
|
created_at: z.ZodString;
|
|
1360
1326
|
message: z.ZodString;
|
|
1361
1327
|
}, {
|
|
1362
|
-
|
|
1328
|
+
error_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
1363
1329
|
}>, "strip", z.ZodTypeAny, {
|
|
1364
1330
|
message: string;
|
|
1365
|
-
|
|
1331
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1366
1332
|
created_at: string;
|
|
1367
1333
|
}, {
|
|
1368
1334
|
message: string;
|
|
1369
|
-
|
|
1335
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1370
1336
|
created_at: string;
|
|
1371
1337
|
}>]>, "many">;
|
|
1372
1338
|
}, {
|
|
@@ -1388,22 +1354,18 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1388
1354
|
created_at: string;
|
|
1389
1355
|
} | {
|
|
1390
1356
|
message: string;
|
|
1391
|
-
|
|
1357
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1392
1358
|
created_at: string;
|
|
1393
1359
|
} | {
|
|
1394
1360
|
message: string;
|
|
1395
|
-
|
|
1361
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1396
1362
|
created_at: string;
|
|
1397
1363
|
} | {
|
|
1398
1364
|
message: string;
|
|
1399
|
-
|
|
1365
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1400
1366
|
created_at: string;
|
|
1401
1367
|
})[];
|
|
1402
1368
|
warnings: ({
|
|
1403
|
-
message: string;
|
|
1404
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1405
|
-
created_at: string;
|
|
1406
|
-
} | {
|
|
1407
1369
|
message: string;
|
|
1408
1370
|
warning_code: "being_deleted";
|
|
1409
1371
|
created_at: string;
|
|
@@ -1447,22 +1409,18 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1447
1409
|
created_at: string;
|
|
1448
1410
|
} | {
|
|
1449
1411
|
message: string;
|
|
1450
|
-
|
|
1412
|
+
error_code: "failed_to_create_on_acs_system";
|
|
1451
1413
|
created_at: string;
|
|
1452
1414
|
} | {
|
|
1453
1415
|
message: string;
|
|
1454
|
-
|
|
1416
|
+
error_code: "failed_to_update_on_acs_system";
|
|
1455
1417
|
created_at: string;
|
|
1456
1418
|
} | {
|
|
1457
1419
|
message: string;
|
|
1458
|
-
|
|
1420
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
1459
1421
|
created_at: string;
|
|
1460
1422
|
})[];
|
|
1461
1423
|
warnings: ({
|
|
1462
|
-
message: string;
|
|
1463
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
1464
|
-
created_at: string;
|
|
1465
|
-
} | {
|
|
1466
1424
|
message: string;
|
|
1467
1425
|
warning_code: "being_deleted";
|
|
1468
1426
|
created_at: string;
|
|
@@ -3587,14 +3545,68 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3587
3545
|
lock_id: z.ZodNumber;
|
|
3588
3546
|
lock_alias: z.ZodString;
|
|
3589
3547
|
feature_value: z.ZodString;
|
|
3548
|
+
features: z.ZodObject<{
|
|
3549
|
+
passcode: z.ZodBoolean;
|
|
3550
|
+
passcode_management: z.ZodBoolean;
|
|
3551
|
+
unlock_via_gateway: z.ZodBoolean;
|
|
3552
|
+
lock_command: z.ZodBoolean;
|
|
3553
|
+
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
3554
|
+
}, "strip", z.ZodTypeAny, {
|
|
3555
|
+
passcode: boolean;
|
|
3556
|
+
passcode_management: boolean;
|
|
3557
|
+
unlock_via_gateway: boolean;
|
|
3558
|
+
lock_command: boolean;
|
|
3559
|
+
incomplete_keyboard_passcode: boolean;
|
|
3560
|
+
}, {
|
|
3561
|
+
passcode: boolean;
|
|
3562
|
+
passcode_management: boolean;
|
|
3563
|
+
unlock_via_gateway: boolean;
|
|
3564
|
+
lock_command: boolean;
|
|
3565
|
+
incomplete_keyboard_passcode: boolean;
|
|
3566
|
+
}>;
|
|
3567
|
+
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
3568
|
+
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3569
|
+
wireless_keypad_id: z.ZodNumber;
|
|
3570
|
+
wireless_keypad_name: z.ZodString;
|
|
3571
|
+
}, "strip", z.ZodTypeAny, {
|
|
3572
|
+
wireless_keypad_id: number;
|
|
3573
|
+
wireless_keypad_name: string;
|
|
3574
|
+
}, {
|
|
3575
|
+
wireless_keypad_id: number;
|
|
3576
|
+
wireless_keypad_name: string;
|
|
3577
|
+
}>, "many">>;
|
|
3590
3578
|
}, "strip", z.ZodTypeAny, {
|
|
3591
3579
|
lock_id: number;
|
|
3592
3580
|
lock_alias: string;
|
|
3593
3581
|
feature_value: string;
|
|
3582
|
+
features: {
|
|
3583
|
+
passcode: boolean;
|
|
3584
|
+
passcode_management: boolean;
|
|
3585
|
+
unlock_via_gateway: boolean;
|
|
3586
|
+
lock_command: boolean;
|
|
3587
|
+
incomplete_keyboard_passcode: boolean;
|
|
3588
|
+
};
|
|
3589
|
+
has_gateway?: boolean | undefined;
|
|
3590
|
+
wireless_keypads?: {
|
|
3591
|
+
wireless_keypad_id: number;
|
|
3592
|
+
wireless_keypad_name: string;
|
|
3593
|
+
}[] | undefined;
|
|
3594
3594
|
}, {
|
|
3595
3595
|
lock_id: number;
|
|
3596
3596
|
lock_alias: string;
|
|
3597
3597
|
feature_value: string;
|
|
3598
|
+
features: {
|
|
3599
|
+
passcode: boolean;
|
|
3600
|
+
passcode_management: boolean;
|
|
3601
|
+
unlock_via_gateway: boolean;
|
|
3602
|
+
lock_command: boolean;
|
|
3603
|
+
incomplete_keyboard_passcode: boolean;
|
|
3604
|
+
};
|
|
3605
|
+
has_gateway?: boolean | undefined;
|
|
3606
|
+
wireless_keypads?: {
|
|
3607
|
+
wireless_keypad_id: number;
|
|
3608
|
+
wireless_keypad_name: string;
|
|
3609
|
+
}[] | undefined;
|
|
3598
3610
|
}>>;
|
|
3599
3611
|
seam_bridge_metadata: z.ZodOptional<z.ZodObject<{
|
|
3600
3612
|
unlock_method: z.ZodOptional<z.ZodEnum<["bridge", "doorking"]>>;
|
|
@@ -3929,6 +3941,18 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3929
3941
|
lock_id: number;
|
|
3930
3942
|
lock_alias: string;
|
|
3931
3943
|
feature_value: string;
|
|
3944
|
+
features: {
|
|
3945
|
+
passcode: boolean;
|
|
3946
|
+
passcode_management: boolean;
|
|
3947
|
+
unlock_via_gateway: boolean;
|
|
3948
|
+
lock_command: boolean;
|
|
3949
|
+
incomplete_keyboard_passcode: boolean;
|
|
3950
|
+
};
|
|
3951
|
+
has_gateway?: boolean | undefined;
|
|
3952
|
+
wireless_keypads?: {
|
|
3953
|
+
wireless_keypad_id: number;
|
|
3954
|
+
wireless_keypad_name: string;
|
|
3955
|
+
}[] | undefined;
|
|
3932
3956
|
} | undefined;
|
|
3933
3957
|
seam_bridge_metadata?: {
|
|
3934
3958
|
name: string;
|
|
@@ -4119,6 +4143,18 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4119
4143
|
lock_id: number;
|
|
4120
4144
|
lock_alias: string;
|
|
4121
4145
|
feature_value: string;
|
|
4146
|
+
features: {
|
|
4147
|
+
passcode: boolean;
|
|
4148
|
+
passcode_management: boolean;
|
|
4149
|
+
unlock_via_gateway: boolean;
|
|
4150
|
+
lock_command: boolean;
|
|
4151
|
+
incomplete_keyboard_passcode: boolean;
|
|
4152
|
+
};
|
|
4153
|
+
has_gateway?: boolean | undefined;
|
|
4154
|
+
wireless_keypads?: {
|
|
4155
|
+
wireless_keypad_id: number;
|
|
4156
|
+
wireless_keypad_name: string;
|
|
4157
|
+
}[] | undefined;
|
|
4122
4158
|
} | undefined;
|
|
4123
4159
|
seam_bridge_metadata?: {
|
|
4124
4160
|
name: string;
|
|
@@ -4833,6 +4869,18 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4833
4869
|
lock_id: number;
|
|
4834
4870
|
lock_alias: string;
|
|
4835
4871
|
feature_value: string;
|
|
4872
|
+
features: {
|
|
4873
|
+
passcode: boolean;
|
|
4874
|
+
passcode_management: boolean;
|
|
4875
|
+
unlock_via_gateway: boolean;
|
|
4876
|
+
lock_command: boolean;
|
|
4877
|
+
incomplete_keyboard_passcode: boolean;
|
|
4878
|
+
};
|
|
4879
|
+
has_gateway?: boolean | undefined;
|
|
4880
|
+
wireless_keypads?: {
|
|
4881
|
+
wireless_keypad_id: number;
|
|
4882
|
+
wireless_keypad_name: string;
|
|
4883
|
+
}[] | undefined;
|
|
4836
4884
|
} | undefined;
|
|
4837
4885
|
seam_bridge_metadata?: {
|
|
4838
4886
|
name: string;
|
|
@@ -5200,6 +5248,18 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5200
5248
|
lock_id: number;
|
|
5201
5249
|
lock_alias: string;
|
|
5202
5250
|
feature_value: string;
|
|
5251
|
+
features: {
|
|
5252
|
+
passcode: boolean;
|
|
5253
|
+
passcode_management: boolean;
|
|
5254
|
+
unlock_via_gateway: boolean;
|
|
5255
|
+
lock_command: boolean;
|
|
5256
|
+
incomplete_keyboard_passcode: boolean;
|
|
5257
|
+
};
|
|
5258
|
+
has_gateway?: boolean | undefined;
|
|
5259
|
+
wireless_keypads?: {
|
|
5260
|
+
wireless_keypad_id: number;
|
|
5261
|
+
wireless_keypad_name: string;
|
|
5262
|
+
}[] | undefined;
|
|
5203
5263
|
} | undefined;
|
|
5204
5264
|
seam_bridge_metadata?: {
|
|
5205
5265
|
name: string;
|
|
@@ -6065,14 +6125,68 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6065
6125
|
lock_id: z.ZodNumber;
|
|
6066
6126
|
lock_alias: z.ZodString;
|
|
6067
6127
|
feature_value: z.ZodString;
|
|
6128
|
+
features: z.ZodObject<{
|
|
6129
|
+
passcode: z.ZodBoolean;
|
|
6130
|
+
passcode_management: z.ZodBoolean;
|
|
6131
|
+
unlock_via_gateway: z.ZodBoolean;
|
|
6132
|
+
lock_command: z.ZodBoolean;
|
|
6133
|
+
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
6134
|
+
}, "strip", z.ZodTypeAny, {
|
|
6135
|
+
passcode: boolean;
|
|
6136
|
+
passcode_management: boolean;
|
|
6137
|
+
unlock_via_gateway: boolean;
|
|
6138
|
+
lock_command: boolean;
|
|
6139
|
+
incomplete_keyboard_passcode: boolean;
|
|
6140
|
+
}, {
|
|
6141
|
+
passcode: boolean;
|
|
6142
|
+
passcode_management: boolean;
|
|
6143
|
+
unlock_via_gateway: boolean;
|
|
6144
|
+
lock_command: boolean;
|
|
6145
|
+
incomplete_keyboard_passcode: boolean;
|
|
6146
|
+
}>;
|
|
6147
|
+
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
6148
|
+
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6149
|
+
wireless_keypad_id: z.ZodNumber;
|
|
6150
|
+
wireless_keypad_name: z.ZodString;
|
|
6151
|
+
}, "strip", z.ZodTypeAny, {
|
|
6152
|
+
wireless_keypad_id: number;
|
|
6153
|
+
wireless_keypad_name: string;
|
|
6154
|
+
}, {
|
|
6155
|
+
wireless_keypad_id: number;
|
|
6156
|
+
wireless_keypad_name: string;
|
|
6157
|
+
}>, "many">>;
|
|
6068
6158
|
}, "strip", z.ZodTypeAny, {
|
|
6069
6159
|
lock_id: number;
|
|
6070
6160
|
lock_alias: string;
|
|
6071
6161
|
feature_value: string;
|
|
6162
|
+
features: {
|
|
6163
|
+
passcode: boolean;
|
|
6164
|
+
passcode_management: boolean;
|
|
6165
|
+
unlock_via_gateway: boolean;
|
|
6166
|
+
lock_command: boolean;
|
|
6167
|
+
incomplete_keyboard_passcode: boolean;
|
|
6168
|
+
};
|
|
6169
|
+
has_gateway?: boolean | undefined;
|
|
6170
|
+
wireless_keypads?: {
|
|
6171
|
+
wireless_keypad_id: number;
|
|
6172
|
+
wireless_keypad_name: string;
|
|
6173
|
+
}[] | undefined;
|
|
6072
6174
|
}, {
|
|
6073
6175
|
lock_id: number;
|
|
6074
6176
|
lock_alias: string;
|
|
6075
6177
|
feature_value: string;
|
|
6178
|
+
features: {
|
|
6179
|
+
passcode: boolean;
|
|
6180
|
+
passcode_management: boolean;
|
|
6181
|
+
unlock_via_gateway: boolean;
|
|
6182
|
+
lock_command: boolean;
|
|
6183
|
+
incomplete_keyboard_passcode: boolean;
|
|
6184
|
+
};
|
|
6185
|
+
has_gateway?: boolean | undefined;
|
|
6186
|
+
wireless_keypads?: {
|
|
6187
|
+
wireless_keypad_id: number;
|
|
6188
|
+
wireless_keypad_name: string;
|
|
6189
|
+
}[] | undefined;
|
|
6076
6190
|
}>>;
|
|
6077
6191
|
seam_bridge_metadata: z.ZodOptional<z.ZodObject<{
|
|
6078
6192
|
unlock_method: z.ZodOptional<z.ZodEnum<["bridge", "doorking"]>>;
|
|
@@ -6407,6 +6521,18 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6407
6521
|
lock_id: number;
|
|
6408
6522
|
lock_alias: string;
|
|
6409
6523
|
feature_value: string;
|
|
6524
|
+
features: {
|
|
6525
|
+
passcode: boolean;
|
|
6526
|
+
passcode_management: boolean;
|
|
6527
|
+
unlock_via_gateway: boolean;
|
|
6528
|
+
lock_command: boolean;
|
|
6529
|
+
incomplete_keyboard_passcode: boolean;
|
|
6530
|
+
};
|
|
6531
|
+
has_gateway?: boolean | undefined;
|
|
6532
|
+
wireless_keypads?: {
|
|
6533
|
+
wireless_keypad_id: number;
|
|
6534
|
+
wireless_keypad_name: string;
|
|
6535
|
+
}[] | undefined;
|
|
6410
6536
|
} | undefined;
|
|
6411
6537
|
seam_bridge_metadata?: {
|
|
6412
6538
|
name: string;
|
|
@@ -6597,6 +6723,18 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6597
6723
|
lock_id: number;
|
|
6598
6724
|
lock_alias: string;
|
|
6599
6725
|
feature_value: string;
|
|
6726
|
+
features: {
|
|
6727
|
+
passcode: boolean;
|
|
6728
|
+
passcode_management: boolean;
|
|
6729
|
+
unlock_via_gateway: boolean;
|
|
6730
|
+
lock_command: boolean;
|
|
6731
|
+
incomplete_keyboard_passcode: boolean;
|
|
6732
|
+
};
|
|
6733
|
+
has_gateway?: boolean | undefined;
|
|
6734
|
+
wireless_keypads?: {
|
|
6735
|
+
wireless_keypad_id: number;
|
|
6736
|
+
wireless_keypad_name: string;
|
|
6737
|
+
}[] | undefined;
|
|
6600
6738
|
} | undefined;
|
|
6601
6739
|
seam_bridge_metadata?: {
|
|
6602
6740
|
name: string;
|
|
@@ -9871,7 +10009,7 @@ declare const _default: {
|
|
|
9871
10009
|
errors: {
|
|
9872
10010
|
items: {
|
|
9873
10011
|
description: string;
|
|
9874
|
-
oneOf:
|
|
10012
|
+
oneOf: {
|
|
9875
10013
|
description: string;
|
|
9876
10014
|
properties: {
|
|
9877
10015
|
created_at: {
|
|
@@ -9887,31 +10025,10 @@ declare const _default: {
|
|
|
9887
10025
|
description: string;
|
|
9888
10026
|
type: string;
|
|
9889
10027
|
};
|
|
9890
|
-
warning_code?: never;
|
|
9891
10028
|
};
|
|
9892
10029
|
required: string[];
|
|
9893
10030
|
type: string;
|
|
9894
|
-
}
|
|
9895
|
-
description: string;
|
|
9896
|
-
properties: {
|
|
9897
|
-
created_at: {
|
|
9898
|
-
description: string;
|
|
9899
|
-
format: string;
|
|
9900
|
-
type: string;
|
|
9901
|
-
};
|
|
9902
|
-
message: {
|
|
9903
|
-
description: string;
|
|
9904
|
-
type: string;
|
|
9905
|
-
};
|
|
9906
|
-
warning_code: {
|
|
9907
|
-
enum: string[];
|
|
9908
|
-
type: string;
|
|
9909
|
-
};
|
|
9910
|
-
error_code?: never;
|
|
9911
|
-
};
|
|
9912
|
-
required: string[];
|
|
9913
|
-
type: string;
|
|
9914
|
-
})[];
|
|
10031
|
+
}[];
|
|
9915
10032
|
};
|
|
9916
10033
|
type: string;
|
|
9917
10034
|
};
|
|
@@ -9964,35 +10081,14 @@ declare const _default: {
|
|
|
9964
10081
|
warnings: {
|
|
9965
10082
|
items: {
|
|
9966
10083
|
description: string;
|
|
9967
|
-
oneOf:
|
|
9968
|
-
description: string;
|
|
9969
|
-
properties: {
|
|
9970
|
-
created_at: {
|
|
9971
|
-
format: string;
|
|
9972
|
-
type: string;
|
|
9973
|
-
description?: never;
|
|
9974
|
-
};
|
|
9975
|
-
message: {
|
|
9976
|
-
type: string;
|
|
9977
|
-
description?: never;
|
|
9978
|
-
};
|
|
9979
|
-
warning_code: {
|
|
9980
|
-
enum: string[];
|
|
9981
|
-
type: string;
|
|
9982
|
-
};
|
|
9983
|
-
};
|
|
9984
|
-
required: string[];
|
|
9985
|
-
type: string;
|
|
9986
|
-
} | {
|
|
10084
|
+
oneOf: {
|
|
9987
10085
|
description: string;
|
|
9988
10086
|
properties: {
|
|
9989
10087
|
created_at: {
|
|
9990
|
-
description: string;
|
|
9991
10088
|
format: string;
|
|
9992
10089
|
type: string;
|
|
9993
10090
|
};
|
|
9994
10091
|
message: {
|
|
9995
|
-
description: string;
|
|
9996
10092
|
type: string;
|
|
9997
10093
|
};
|
|
9998
10094
|
warning_code: {
|
|
@@ -10002,7 +10098,7 @@ declare const _default: {
|
|
|
10002
10098
|
};
|
|
10003
10099
|
required: string[];
|
|
10004
10100
|
type: string;
|
|
10005
|
-
}
|
|
10101
|
+
}[];
|
|
10006
10102
|
};
|
|
10007
10103
|
type: string;
|
|
10008
10104
|
};
|
|
@@ -11352,6 +11448,30 @@ declare const _default: {
|
|
|
11352
11448
|
feature_value: {
|
|
11353
11449
|
type: string;
|
|
11354
11450
|
};
|
|
11451
|
+
features: {
|
|
11452
|
+
properties: {
|
|
11453
|
+
incomplete_keyboard_passcode: {
|
|
11454
|
+
type: string;
|
|
11455
|
+
};
|
|
11456
|
+
lock_command: {
|
|
11457
|
+
type: string;
|
|
11458
|
+
};
|
|
11459
|
+
passcode: {
|
|
11460
|
+
type: string;
|
|
11461
|
+
};
|
|
11462
|
+
passcode_management: {
|
|
11463
|
+
type: string;
|
|
11464
|
+
};
|
|
11465
|
+
unlock_via_gateway: {
|
|
11466
|
+
type: string;
|
|
11467
|
+
};
|
|
11468
|
+
};
|
|
11469
|
+
required: string[];
|
|
11470
|
+
type: string;
|
|
11471
|
+
};
|
|
11472
|
+
has_gateway: {
|
|
11473
|
+
type: string;
|
|
11474
|
+
};
|
|
11355
11475
|
lock_alias: {
|
|
11356
11476
|
type: string;
|
|
11357
11477
|
};
|
|
@@ -11359,6 +11479,22 @@ declare const _default: {
|
|
|
11359
11479
|
format: string;
|
|
11360
11480
|
type: string;
|
|
11361
11481
|
};
|
|
11482
|
+
wireless_keypads: {
|
|
11483
|
+
items: {
|
|
11484
|
+
properties: {
|
|
11485
|
+
wireless_keypad_id: {
|
|
11486
|
+
format: string;
|
|
11487
|
+
type: string;
|
|
11488
|
+
};
|
|
11489
|
+
wireless_keypad_name: {
|
|
11490
|
+
type: string;
|
|
11491
|
+
};
|
|
11492
|
+
};
|
|
11493
|
+
required: string[];
|
|
11494
|
+
type: string;
|
|
11495
|
+
};
|
|
11496
|
+
type: string;
|
|
11497
|
+
};
|
|
11362
11498
|
};
|
|
11363
11499
|
required: string[];
|
|
11364
11500
|
type: string;
|
|
@@ -18156,7 +18292,7 @@ declare const _default: {
|
|
|
18156
18292
|
errors: {
|
|
18157
18293
|
items: {
|
|
18158
18294
|
description: string;
|
|
18159
|
-
oneOf:
|
|
18295
|
+
oneOf: {
|
|
18160
18296
|
description: string;
|
|
18161
18297
|
properties: {
|
|
18162
18298
|
created_at: {
|
|
@@ -18172,31 +18308,10 @@ declare const _default: {
|
|
|
18172
18308
|
description: string;
|
|
18173
18309
|
type: string;
|
|
18174
18310
|
};
|
|
18175
|
-
warning_code?: never;
|
|
18176
18311
|
};
|
|
18177
18312
|
required: string[];
|
|
18178
18313
|
type: string;
|
|
18179
|
-
}
|
|
18180
|
-
description: string;
|
|
18181
|
-
properties: {
|
|
18182
|
-
created_at: {
|
|
18183
|
-
description: string;
|
|
18184
|
-
format: string;
|
|
18185
|
-
type: string;
|
|
18186
|
-
};
|
|
18187
|
-
message: {
|
|
18188
|
-
description: string;
|
|
18189
|
-
type: string;
|
|
18190
|
-
};
|
|
18191
|
-
warning_code: {
|
|
18192
|
-
enum: string[];
|
|
18193
|
-
type: string;
|
|
18194
|
-
};
|
|
18195
|
-
error_code?: never;
|
|
18196
|
-
};
|
|
18197
|
-
required: string[];
|
|
18198
|
-
type: string;
|
|
18199
|
-
})[];
|
|
18314
|
+
}[];
|
|
18200
18315
|
};
|
|
18201
18316
|
type: string;
|
|
18202
18317
|
};
|
|
@@ -18249,35 +18364,14 @@ declare const _default: {
|
|
|
18249
18364
|
warnings: {
|
|
18250
18365
|
items: {
|
|
18251
18366
|
description: string;
|
|
18252
|
-
oneOf:
|
|
18253
|
-
description: string;
|
|
18254
|
-
properties: {
|
|
18255
|
-
created_at: {
|
|
18256
|
-
format: string;
|
|
18257
|
-
type: string;
|
|
18258
|
-
description?: never;
|
|
18259
|
-
};
|
|
18260
|
-
message: {
|
|
18261
|
-
type: string;
|
|
18262
|
-
description?: never;
|
|
18263
|
-
};
|
|
18264
|
-
warning_code: {
|
|
18265
|
-
enum: string[];
|
|
18266
|
-
type: string;
|
|
18267
|
-
};
|
|
18268
|
-
};
|
|
18269
|
-
required: string[];
|
|
18270
|
-
type: string;
|
|
18271
|
-
} | {
|
|
18367
|
+
oneOf: {
|
|
18272
18368
|
description: string;
|
|
18273
18369
|
properties: {
|
|
18274
18370
|
created_at: {
|
|
18275
|
-
description: string;
|
|
18276
18371
|
format: string;
|
|
18277
18372
|
type: string;
|
|
18278
18373
|
};
|
|
18279
18374
|
message: {
|
|
18280
|
-
description: string;
|
|
18281
18375
|
type: string;
|
|
18282
18376
|
};
|
|
18283
18377
|
warning_code: {
|
|
@@ -18287,7 +18381,7 @@ declare const _default: {
|
|
|
18287
18381
|
};
|
|
18288
18382
|
required: string[];
|
|
18289
18383
|
type: string;
|
|
18290
|
-
}
|
|
18384
|
+
}[];
|
|
18291
18385
|
};
|
|
18292
18386
|
type: string;
|
|
18293
18387
|
};
|
|
@@ -18410,7 +18504,7 @@ declare const _default: {
|
|
|
18410
18504
|
errors: {
|
|
18411
18505
|
items: {
|
|
18412
18506
|
description: string;
|
|
18413
|
-
oneOf:
|
|
18507
|
+
oneOf: {
|
|
18414
18508
|
description: string;
|
|
18415
18509
|
properties: {
|
|
18416
18510
|
created_at: {
|
|
@@ -18426,31 +18520,10 @@ declare const _default: {
|
|
|
18426
18520
|
description: string;
|
|
18427
18521
|
type: string;
|
|
18428
18522
|
};
|
|
18429
|
-
warning_code?: never;
|
|
18430
18523
|
};
|
|
18431
18524
|
required: string[];
|
|
18432
18525
|
type: string;
|
|
18433
|
-
}
|
|
18434
|
-
description: string;
|
|
18435
|
-
properties: {
|
|
18436
|
-
created_at: {
|
|
18437
|
-
description: string;
|
|
18438
|
-
format: string;
|
|
18439
|
-
type: string;
|
|
18440
|
-
};
|
|
18441
|
-
message: {
|
|
18442
|
-
description: string;
|
|
18443
|
-
type: string;
|
|
18444
|
-
};
|
|
18445
|
-
warning_code: {
|
|
18446
|
-
enum: string[];
|
|
18447
|
-
type: string;
|
|
18448
|
-
};
|
|
18449
|
-
error_code?: never;
|
|
18450
|
-
};
|
|
18451
|
-
required: string[];
|
|
18452
|
-
type: string;
|
|
18453
|
-
})[];
|
|
18526
|
+
}[];
|
|
18454
18527
|
};
|
|
18455
18528
|
type: string;
|
|
18456
18529
|
};
|
|
@@ -18503,35 +18576,14 @@ declare const _default: {
|
|
|
18503
18576
|
warnings: {
|
|
18504
18577
|
items: {
|
|
18505
18578
|
description: string;
|
|
18506
|
-
oneOf:
|
|
18507
|
-
description: string;
|
|
18508
|
-
properties: {
|
|
18509
|
-
created_at: {
|
|
18510
|
-
format: string;
|
|
18511
|
-
type: string;
|
|
18512
|
-
description?: never;
|
|
18513
|
-
};
|
|
18514
|
-
message: {
|
|
18515
|
-
type: string;
|
|
18516
|
-
description?: never;
|
|
18517
|
-
};
|
|
18518
|
-
warning_code: {
|
|
18519
|
-
enum: string[];
|
|
18520
|
-
type: string;
|
|
18521
|
-
};
|
|
18522
|
-
};
|
|
18523
|
-
required: string[];
|
|
18524
|
-
type: string;
|
|
18525
|
-
} | {
|
|
18579
|
+
oneOf: {
|
|
18526
18580
|
description: string;
|
|
18527
18581
|
properties: {
|
|
18528
18582
|
created_at: {
|
|
18529
|
-
description: string;
|
|
18530
18583
|
format: string;
|
|
18531
18584
|
type: string;
|
|
18532
18585
|
};
|
|
18533
18586
|
message: {
|
|
18534
|
-
description: string;
|
|
18535
18587
|
type: string;
|
|
18536
18588
|
};
|
|
18537
18589
|
warning_code: {
|
|
@@ -18541,7 +18593,7 @@ declare const _default: {
|
|
|
18541
18593
|
};
|
|
18542
18594
|
required: string[];
|
|
18543
18595
|
type: string;
|
|
18544
|
-
}
|
|
18596
|
+
}[];
|
|
18545
18597
|
};
|
|
18546
18598
|
type: string;
|
|
18547
18599
|
};
|
|
@@ -29593,12 +29645,6 @@ interface Routes {
|
|
|
29593
29645
|
created_at: string;
|
|
29594
29646
|
message: string;
|
|
29595
29647
|
warning_code: 'being_deleted';
|
|
29596
|
-
} | {
|
|
29597
|
-
/** Date and time at which Seam created the error. */
|
|
29598
|
-
created_at: string;
|
|
29599
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29600
|
-
message: string;
|
|
29601
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
29602
29648
|
} | {
|
|
29603
29649
|
created_at: string;
|
|
29604
29650
|
message: string;
|
|
@@ -29621,19 +29667,19 @@ interface Routes {
|
|
|
29621
29667
|
created_at: string;
|
|
29622
29668
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29623
29669
|
message: string;
|
|
29624
|
-
|
|
29670
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
29625
29671
|
} | {
|
|
29626
29672
|
/** Date and time at which Seam created the error. */
|
|
29627
29673
|
created_at: string;
|
|
29628
29674
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29629
29675
|
message: string;
|
|
29630
|
-
|
|
29676
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
29631
29677
|
} | {
|
|
29632
29678
|
/** Date and time at which Seam created the error. */
|
|
29633
29679
|
created_at: string;
|
|
29634
29680
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29635
29681
|
message: string;
|
|
29636
|
-
|
|
29682
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
29637
29683
|
}>;
|
|
29638
29684
|
full_name?: string | undefined;
|
|
29639
29685
|
/**
|
|
@@ -30726,12 +30772,6 @@ interface Routes {
|
|
|
30726
30772
|
created_at: string;
|
|
30727
30773
|
message: string;
|
|
30728
30774
|
warning_code: 'being_deleted';
|
|
30729
|
-
} | {
|
|
30730
|
-
/** Date and time at which Seam created the error. */
|
|
30731
|
-
created_at: string;
|
|
30732
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30733
|
-
message: string;
|
|
30734
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
30735
30775
|
} | {
|
|
30736
30776
|
created_at: string;
|
|
30737
30777
|
message: string;
|
|
@@ -30754,19 +30794,19 @@ interface Routes {
|
|
|
30754
30794
|
created_at: string;
|
|
30755
30795
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30756
30796
|
message: string;
|
|
30757
|
-
|
|
30797
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
30758
30798
|
} | {
|
|
30759
30799
|
/** Date and time at which Seam created the error. */
|
|
30760
30800
|
created_at: string;
|
|
30761
30801
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30762
30802
|
message: string;
|
|
30763
|
-
|
|
30803
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
30764
30804
|
} | {
|
|
30765
30805
|
/** Date and time at which Seam created the error. */
|
|
30766
30806
|
created_at: string;
|
|
30767
30807
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30768
30808
|
message: string;
|
|
30769
|
-
|
|
30809
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
30770
30810
|
}>;
|
|
30771
30811
|
full_name?: string | undefined;
|
|
30772
30812
|
/**
|
|
@@ -30823,12 +30863,6 @@ interface Routes {
|
|
|
30823
30863
|
created_at: string;
|
|
30824
30864
|
message: string;
|
|
30825
30865
|
warning_code: 'being_deleted';
|
|
30826
|
-
} | {
|
|
30827
|
-
/** Date and time at which Seam created the error. */
|
|
30828
|
-
created_at: string;
|
|
30829
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30830
|
-
message: string;
|
|
30831
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
30832
30866
|
} | {
|
|
30833
30867
|
created_at: string;
|
|
30834
30868
|
message: string;
|
|
@@ -30851,19 +30885,19 @@ interface Routes {
|
|
|
30851
30885
|
created_at: string;
|
|
30852
30886
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30853
30887
|
message: string;
|
|
30854
|
-
|
|
30888
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
30855
30889
|
} | {
|
|
30856
30890
|
/** Date and time at which Seam created the error. */
|
|
30857
30891
|
created_at: string;
|
|
30858
30892
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30859
30893
|
message: string;
|
|
30860
|
-
|
|
30894
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
30861
30895
|
} | {
|
|
30862
30896
|
/** Date and time at which Seam created the error. */
|
|
30863
30897
|
created_at: string;
|
|
30864
30898
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30865
30899
|
message: string;
|
|
30866
|
-
|
|
30900
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
30867
30901
|
}>;
|
|
30868
30902
|
full_name?: string | undefined;
|
|
30869
30903
|
/**
|
|
@@ -30914,12 +30948,6 @@ interface Routes {
|
|
|
30914
30948
|
created_at: string;
|
|
30915
30949
|
message: string;
|
|
30916
30950
|
warning_code: 'being_deleted';
|
|
30917
|
-
} | {
|
|
30918
|
-
/** Date and time at which Seam created the error. */
|
|
30919
|
-
created_at: string;
|
|
30920
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30921
|
-
message: string;
|
|
30922
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
30923
30951
|
} | {
|
|
30924
30952
|
created_at: string;
|
|
30925
30953
|
message: string;
|
|
@@ -30942,19 +30970,19 @@ interface Routes {
|
|
|
30942
30970
|
created_at: string;
|
|
30943
30971
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30944
30972
|
message: string;
|
|
30945
|
-
|
|
30973
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
30946
30974
|
} | {
|
|
30947
30975
|
/** Date and time at which Seam created the error. */
|
|
30948
30976
|
created_at: string;
|
|
30949
30977
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30950
30978
|
message: string;
|
|
30951
|
-
|
|
30979
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
30952
30980
|
} | {
|
|
30953
30981
|
/** Date and time at which Seam created the error. */
|
|
30954
30982
|
created_at: string;
|
|
30955
30983
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
30956
30984
|
message: string;
|
|
30957
|
-
|
|
30985
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
30958
30986
|
}>;
|
|
30959
30987
|
full_name?: string | undefined;
|
|
30960
30988
|
/**
|
|
@@ -31070,12 +31098,6 @@ interface Routes {
|
|
|
31070
31098
|
created_at: string;
|
|
31071
31099
|
message: string;
|
|
31072
31100
|
warning_code: 'being_deleted';
|
|
31073
|
-
} | {
|
|
31074
|
-
/** Date and time at which Seam created the error. */
|
|
31075
|
-
created_at: string;
|
|
31076
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31077
|
-
message: string;
|
|
31078
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
31079
31101
|
} | {
|
|
31080
31102
|
created_at: string;
|
|
31081
31103
|
message: string;
|
|
@@ -31098,19 +31120,19 @@ interface Routes {
|
|
|
31098
31120
|
created_at: string;
|
|
31099
31121
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31100
31122
|
message: string;
|
|
31101
|
-
|
|
31123
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
31102
31124
|
} | {
|
|
31103
31125
|
/** Date and time at which Seam created the error. */
|
|
31104
31126
|
created_at: string;
|
|
31105
31127
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31106
31128
|
message: string;
|
|
31107
|
-
|
|
31129
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
31108
31130
|
} | {
|
|
31109
31131
|
/** Date and time at which Seam created the error. */
|
|
31110
31132
|
created_at: string;
|
|
31111
31133
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31112
31134
|
message: string;
|
|
31113
|
-
|
|
31135
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
31114
31136
|
}>;
|
|
31115
31137
|
full_name?: string | undefined;
|
|
31116
31138
|
/**
|
|
@@ -31160,12 +31182,6 @@ interface Routes {
|
|
|
31160
31182
|
created_at: string;
|
|
31161
31183
|
message: string;
|
|
31162
31184
|
warning_code: 'being_deleted';
|
|
31163
|
-
} | {
|
|
31164
|
-
/** Date and time at which Seam created the error. */
|
|
31165
|
-
created_at: string;
|
|
31166
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31167
|
-
message: string;
|
|
31168
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
31169
31185
|
} | {
|
|
31170
31186
|
created_at: string;
|
|
31171
31187
|
message: string;
|
|
@@ -31188,19 +31204,19 @@ interface Routes {
|
|
|
31188
31204
|
created_at: string;
|
|
31189
31205
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31190
31206
|
message: string;
|
|
31191
|
-
|
|
31207
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
31192
31208
|
} | {
|
|
31193
31209
|
/** Date and time at which Seam created the error. */
|
|
31194
31210
|
created_at: string;
|
|
31195
31211
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31196
31212
|
message: string;
|
|
31197
|
-
|
|
31213
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
31198
31214
|
} | {
|
|
31199
31215
|
/** Date and time at which Seam created the error. */
|
|
31200
31216
|
created_at: string;
|
|
31201
31217
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31202
31218
|
message: string;
|
|
31203
|
-
|
|
31219
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
31204
31220
|
}>;
|
|
31205
31221
|
full_name?: string | undefined;
|
|
31206
31222
|
/**
|
|
@@ -32681,6 +32697,18 @@ interface Routes {
|
|
|
32681
32697
|
lock_id: number;
|
|
32682
32698
|
lock_alias: string;
|
|
32683
32699
|
feature_value: string;
|
|
32700
|
+
features: {
|
|
32701
|
+
passcode: boolean;
|
|
32702
|
+
passcode_management: boolean;
|
|
32703
|
+
unlock_via_gateway: boolean;
|
|
32704
|
+
lock_command: boolean;
|
|
32705
|
+
incomplete_keyboard_passcode: boolean;
|
|
32706
|
+
};
|
|
32707
|
+
has_gateway?: boolean | undefined;
|
|
32708
|
+
wireless_keypads?: Array<{
|
|
32709
|
+
wireless_keypad_id: number;
|
|
32710
|
+
wireless_keypad_name: string;
|
|
32711
|
+
}> | undefined;
|
|
32684
32712
|
} | undefined;
|
|
32685
32713
|
seam_bridge_metadata?: {
|
|
32686
32714
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -33125,6 +33153,18 @@ interface Routes {
|
|
|
33125
33153
|
lock_id: number;
|
|
33126
33154
|
lock_alias: string;
|
|
33127
33155
|
feature_value: string;
|
|
33156
|
+
features: {
|
|
33157
|
+
passcode: boolean;
|
|
33158
|
+
passcode_management: boolean;
|
|
33159
|
+
unlock_via_gateway: boolean;
|
|
33160
|
+
lock_command: boolean;
|
|
33161
|
+
incomplete_keyboard_passcode: boolean;
|
|
33162
|
+
};
|
|
33163
|
+
has_gateway?: boolean | undefined;
|
|
33164
|
+
wireless_keypads?: Array<{
|
|
33165
|
+
wireless_keypad_id: number;
|
|
33166
|
+
wireless_keypad_name: string;
|
|
33167
|
+
}> | undefined;
|
|
33128
33168
|
} | undefined;
|
|
33129
33169
|
seam_bridge_metadata?: {
|
|
33130
33170
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -33949,6 +33989,18 @@ interface Routes {
|
|
|
33949
33989
|
lock_id: number;
|
|
33950
33990
|
lock_alias: string;
|
|
33951
33991
|
feature_value: string;
|
|
33992
|
+
features: {
|
|
33993
|
+
passcode: boolean;
|
|
33994
|
+
passcode_management: boolean;
|
|
33995
|
+
unlock_via_gateway: boolean;
|
|
33996
|
+
lock_command: boolean;
|
|
33997
|
+
incomplete_keyboard_passcode: boolean;
|
|
33998
|
+
};
|
|
33999
|
+
has_gateway?: boolean | undefined;
|
|
34000
|
+
wireless_keypads?: Array<{
|
|
34001
|
+
wireless_keypad_id: number;
|
|
34002
|
+
wireless_keypad_name: string;
|
|
34003
|
+
}> | undefined;
|
|
33952
34004
|
} | undefined;
|
|
33953
34005
|
seam_bridge_metadata?: {
|
|
33954
34006
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -34368,6 +34420,18 @@ interface Routes {
|
|
|
34368
34420
|
lock_id: number;
|
|
34369
34421
|
lock_alias: string;
|
|
34370
34422
|
feature_value: string;
|
|
34423
|
+
features: {
|
|
34424
|
+
passcode: boolean;
|
|
34425
|
+
passcode_management: boolean;
|
|
34426
|
+
unlock_via_gateway: boolean;
|
|
34427
|
+
lock_command: boolean;
|
|
34428
|
+
incomplete_keyboard_passcode: boolean;
|
|
34429
|
+
};
|
|
34430
|
+
has_gateway?: boolean | undefined;
|
|
34431
|
+
wireless_keypads?: Array<{
|
|
34432
|
+
wireless_keypad_id: number;
|
|
34433
|
+
wireless_keypad_name: string;
|
|
34434
|
+
}> | undefined;
|
|
34371
34435
|
} | undefined;
|
|
34372
34436
|
seam_bridge_metadata?: {
|
|
34373
34437
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -34812,6 +34876,18 @@ interface Routes {
|
|
|
34812
34876
|
lock_id: number;
|
|
34813
34877
|
lock_alias: string;
|
|
34814
34878
|
feature_value: string;
|
|
34879
|
+
features: {
|
|
34880
|
+
passcode: boolean;
|
|
34881
|
+
passcode_management: boolean;
|
|
34882
|
+
unlock_via_gateway: boolean;
|
|
34883
|
+
lock_command: boolean;
|
|
34884
|
+
incomplete_keyboard_passcode: boolean;
|
|
34885
|
+
};
|
|
34886
|
+
has_gateway?: boolean | undefined;
|
|
34887
|
+
wireless_keypads?: Array<{
|
|
34888
|
+
wireless_keypad_id: number;
|
|
34889
|
+
wireless_keypad_name: string;
|
|
34890
|
+
}> | undefined;
|
|
34815
34891
|
} | undefined;
|
|
34816
34892
|
seam_bridge_metadata?: {
|
|
34817
34893
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -35231,6 +35307,18 @@ interface Routes {
|
|
|
35231
35307
|
lock_id: number;
|
|
35232
35308
|
lock_alias: string;
|
|
35233
35309
|
feature_value: string;
|
|
35310
|
+
features: {
|
|
35311
|
+
passcode: boolean;
|
|
35312
|
+
passcode_management: boolean;
|
|
35313
|
+
unlock_via_gateway: boolean;
|
|
35314
|
+
lock_command: boolean;
|
|
35315
|
+
incomplete_keyboard_passcode: boolean;
|
|
35316
|
+
};
|
|
35317
|
+
has_gateway?: boolean | undefined;
|
|
35318
|
+
wireless_keypads?: Array<{
|
|
35319
|
+
wireless_keypad_id: number;
|
|
35320
|
+
wireless_keypad_name: string;
|
|
35321
|
+
}> | undefined;
|
|
35234
35322
|
} | undefined;
|
|
35235
35323
|
seam_bridge_metadata?: {
|
|
35236
35324
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -36505,6 +36593,18 @@ interface Routes {
|
|
|
36505
36593
|
lock_id: number;
|
|
36506
36594
|
lock_alias: string;
|
|
36507
36595
|
feature_value: string;
|
|
36596
|
+
features: {
|
|
36597
|
+
passcode: boolean;
|
|
36598
|
+
passcode_management: boolean;
|
|
36599
|
+
unlock_via_gateway: boolean;
|
|
36600
|
+
lock_command: boolean;
|
|
36601
|
+
incomplete_keyboard_passcode: boolean;
|
|
36602
|
+
};
|
|
36603
|
+
has_gateway?: boolean | undefined;
|
|
36604
|
+
wireless_keypads?: Array<{
|
|
36605
|
+
wireless_keypad_id: number;
|
|
36606
|
+
wireless_keypad_name: string;
|
|
36607
|
+
}> | undefined;
|
|
36508
36608
|
} | undefined;
|
|
36509
36609
|
seam_bridge_metadata?: {
|
|
36510
36610
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -36924,6 +37024,18 @@ interface Routes {
|
|
|
36924
37024
|
lock_id: number;
|
|
36925
37025
|
lock_alias: string;
|
|
36926
37026
|
feature_value: string;
|
|
37027
|
+
features: {
|
|
37028
|
+
passcode: boolean;
|
|
37029
|
+
passcode_management: boolean;
|
|
37030
|
+
unlock_via_gateway: boolean;
|
|
37031
|
+
lock_command: boolean;
|
|
37032
|
+
incomplete_keyboard_passcode: boolean;
|
|
37033
|
+
};
|
|
37034
|
+
has_gateway?: boolean | undefined;
|
|
37035
|
+
wireless_keypads?: Array<{
|
|
37036
|
+
wireless_keypad_id: number;
|
|
37037
|
+
wireless_keypad_name: string;
|
|
37038
|
+
}> | undefined;
|
|
36927
37039
|
} | undefined;
|
|
36928
37040
|
seam_bridge_metadata?: {
|
|
36929
37041
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -39641,6 +39753,18 @@ interface Routes {
|
|
|
39641
39753
|
lock_id: number;
|
|
39642
39754
|
lock_alias: string;
|
|
39643
39755
|
feature_value: string;
|
|
39756
|
+
features: {
|
|
39757
|
+
passcode: boolean;
|
|
39758
|
+
passcode_management: boolean;
|
|
39759
|
+
unlock_via_gateway: boolean;
|
|
39760
|
+
lock_command: boolean;
|
|
39761
|
+
incomplete_keyboard_passcode: boolean;
|
|
39762
|
+
};
|
|
39763
|
+
has_gateway?: boolean | undefined;
|
|
39764
|
+
wireless_keypads?: Array<{
|
|
39765
|
+
wireless_keypad_id: number;
|
|
39766
|
+
wireless_keypad_name: string;
|
|
39767
|
+
}> | undefined;
|
|
39644
39768
|
} | undefined;
|
|
39645
39769
|
seam_bridge_metadata?: {
|
|
39646
39770
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -40887,6 +41011,18 @@ interface Routes {
|
|
|
40887
41011
|
lock_id: number;
|
|
40888
41012
|
lock_alias: string;
|
|
40889
41013
|
feature_value: string;
|
|
41014
|
+
features: {
|
|
41015
|
+
passcode: boolean;
|
|
41016
|
+
passcode_management: boolean;
|
|
41017
|
+
unlock_via_gateway: boolean;
|
|
41018
|
+
lock_command: boolean;
|
|
41019
|
+
incomplete_keyboard_passcode: boolean;
|
|
41020
|
+
};
|
|
41021
|
+
has_gateway?: boolean | undefined;
|
|
41022
|
+
wireless_keypads?: Array<{
|
|
41023
|
+
wireless_keypad_id: number;
|
|
41024
|
+
wireless_keypad_name: string;
|
|
41025
|
+
}> | undefined;
|
|
40890
41026
|
} | undefined;
|
|
40891
41027
|
seam_bridge_metadata?: {
|
|
40892
41028
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -42462,6 +42598,18 @@ interface Routes {
|
|
|
42462
42598
|
lock_id: number;
|
|
42463
42599
|
lock_alias: string;
|
|
42464
42600
|
feature_value: string;
|
|
42601
|
+
features: {
|
|
42602
|
+
passcode: boolean;
|
|
42603
|
+
passcode_management: boolean;
|
|
42604
|
+
unlock_via_gateway: boolean;
|
|
42605
|
+
lock_command: boolean;
|
|
42606
|
+
incomplete_keyboard_passcode: boolean;
|
|
42607
|
+
};
|
|
42608
|
+
has_gateway?: boolean | undefined;
|
|
42609
|
+
wireless_keypads?: Array<{
|
|
42610
|
+
wireless_keypad_id: number;
|
|
42611
|
+
wireless_keypad_name: string;
|
|
42612
|
+
}> | undefined;
|
|
42465
42613
|
} | undefined;
|
|
42466
42614
|
seam_bridge_metadata?: {
|
|
42467
42615
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -42883,6 +43031,18 @@ interface Routes {
|
|
|
42883
43031
|
lock_id: number;
|
|
42884
43032
|
lock_alias: string;
|
|
42885
43033
|
feature_value: string;
|
|
43034
|
+
features: {
|
|
43035
|
+
passcode: boolean;
|
|
43036
|
+
passcode_management: boolean;
|
|
43037
|
+
unlock_via_gateway: boolean;
|
|
43038
|
+
lock_command: boolean;
|
|
43039
|
+
incomplete_keyboard_passcode: boolean;
|
|
43040
|
+
};
|
|
43041
|
+
has_gateway?: boolean | undefined;
|
|
43042
|
+
wireless_keypads?: Array<{
|
|
43043
|
+
wireless_keypad_id: number;
|
|
43044
|
+
wireless_keypad_name: string;
|
|
43045
|
+
}> | undefined;
|
|
42886
43046
|
} | undefined;
|
|
42887
43047
|
seam_bridge_metadata?: {
|
|
42888
43048
|
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
@@ -43229,12 +43389,6 @@ interface Routes {
|
|
|
43229
43389
|
created_at: string;
|
|
43230
43390
|
message: string;
|
|
43231
43391
|
warning_code: 'being_deleted';
|
|
43232
|
-
} | {
|
|
43233
|
-
/** Date and time at which Seam created the error. */
|
|
43234
|
-
created_at: string;
|
|
43235
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43236
|
-
message: string;
|
|
43237
|
-
warning_code: 'failed_to_update_on_acs_system';
|
|
43238
43392
|
} | {
|
|
43239
43393
|
created_at: string;
|
|
43240
43394
|
message: string;
|
|
@@ -43257,19 +43411,19 @@ interface Routes {
|
|
|
43257
43411
|
created_at: string;
|
|
43258
43412
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43259
43413
|
message: string;
|
|
43260
|
-
|
|
43414
|
+
error_code: 'failed_to_create_on_acs_system';
|
|
43261
43415
|
} | {
|
|
43262
43416
|
/** Date and time at which Seam created the error. */
|
|
43263
43417
|
created_at: string;
|
|
43264
43418
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43265
43419
|
message: string;
|
|
43266
|
-
|
|
43420
|
+
error_code: 'failed_to_update_on_acs_system';
|
|
43267
43421
|
} | {
|
|
43268
43422
|
/** Date and time at which Seam created the error. */
|
|
43269
43423
|
created_at: string;
|
|
43270
43424
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43271
43425
|
message: string;
|
|
43272
|
-
|
|
43426
|
+
error_code: 'failed_to_delete_on_acs_system';
|
|
43273
43427
|
}>;
|
|
43274
43428
|
full_name?: string | undefined;
|
|
43275
43429
|
/**
|