@seamapi/types 1.546.0 → 1.548.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 +43 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -10
- package/dist/index.cjs +43 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -4
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js +2 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/batch.d.ts +135 -30
- package/lib/seam/connect/models/phones/phone-session.d.ts +78 -18
- package/lib/seam/connect/openapi.d.ts +26 -0
- package/lib/seam/connect/openapi.js +37 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +60 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +5 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +39 -4
- package/src/lib/seam/connect/route-types.ts +60 -0
|
@@ -217,9 +217,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
217
217
|
}>>;
|
|
218
218
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
219
219
|
room_number: z.ZodString;
|
|
220
|
+
display_name: z.ZodString;
|
|
221
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
220
222
|
}, "strip", z.ZodTypeAny, {
|
|
223
|
+
display_name: string;
|
|
224
|
+
door_type: "common_area" | "guest";
|
|
221
225
|
room_number: string;
|
|
222
226
|
}, {
|
|
227
|
+
display_name: string;
|
|
228
|
+
door_type: "common_area" | "guest";
|
|
223
229
|
room_number: string;
|
|
224
230
|
}>>;
|
|
225
231
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -237,14 +243,14 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
237
243
|
}>, "many">>;
|
|
238
244
|
}, "strip", z.ZodTypeAny, {
|
|
239
245
|
door_name: string;
|
|
240
|
-
door_category: "
|
|
246
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
241
247
|
profiles?: {
|
|
242
248
|
visionline_door_profile_id: string;
|
|
243
249
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
244
250
|
}[] | undefined;
|
|
245
251
|
}, {
|
|
246
252
|
door_name: string;
|
|
247
|
-
door_category: "
|
|
253
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
248
254
|
profiles?: {
|
|
249
255
|
visionline_door_profile_id: string;
|
|
250
256
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -280,10 +286,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
280
286
|
}>>;
|
|
281
287
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
282
288
|
access_point_name: z.ZodString;
|
|
289
|
+
access_point_profile: z.ZodString;
|
|
283
290
|
}, "strip", z.ZodTypeAny, {
|
|
284
291
|
access_point_name: string;
|
|
292
|
+
access_point_profile: string;
|
|
285
293
|
}, {
|
|
286
294
|
access_point_name: string;
|
|
295
|
+
access_point_profile: string;
|
|
287
296
|
}>>;
|
|
288
297
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
289
298
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -359,7 +368,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
359
368
|
} | undefined;
|
|
360
369
|
visionline_metadata?: {
|
|
361
370
|
door_name: string;
|
|
362
|
-
door_category: "
|
|
371
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
363
372
|
profiles?: {
|
|
364
373
|
visionline_door_profile_id: string;
|
|
365
374
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -382,10 +391,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
382
391
|
accessibility_type: string;
|
|
383
392
|
} | undefined;
|
|
384
393
|
hotek_metadata?: {
|
|
394
|
+
display_name: string;
|
|
395
|
+
door_type: "common_area" | "guest";
|
|
385
396
|
room_number: string;
|
|
386
397
|
} | undefined;
|
|
387
398
|
dormakaba_community_metadata?: {
|
|
388
399
|
access_point_name: string;
|
|
400
|
+
access_point_profile: string;
|
|
389
401
|
} | undefined;
|
|
390
402
|
salto_space_metadata?: {
|
|
391
403
|
door_name?: string | undefined;
|
|
@@ -420,7 +432,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
420
432
|
} | undefined;
|
|
421
433
|
visionline_metadata?: {
|
|
422
434
|
door_name: string;
|
|
423
|
-
door_category: "
|
|
435
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
424
436
|
profiles?: {
|
|
425
437
|
visionline_door_profile_id: string;
|
|
426
438
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -443,10 +455,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
443
455
|
accessibility_type: string;
|
|
444
456
|
} | undefined;
|
|
445
457
|
hotek_metadata?: {
|
|
458
|
+
display_name: string;
|
|
459
|
+
door_type: "common_area" | "guest";
|
|
446
460
|
room_number: string;
|
|
447
461
|
} | undefined;
|
|
448
462
|
dormakaba_community_metadata?: {
|
|
449
463
|
access_point_name: string;
|
|
464
|
+
access_point_profile: string;
|
|
450
465
|
} | undefined;
|
|
451
466
|
salto_space_metadata?: {
|
|
452
467
|
door_name?: string | undefined;
|
|
@@ -520,7 +535,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
520
535
|
} | undefined;
|
|
521
536
|
visionline_metadata?: {
|
|
522
537
|
door_name: string;
|
|
523
|
-
door_category: "
|
|
538
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
524
539
|
profiles?: {
|
|
525
540
|
visionline_door_profile_id: string;
|
|
526
541
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -543,10 +558,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
543
558
|
accessibility_type: string;
|
|
544
559
|
} | undefined;
|
|
545
560
|
hotek_metadata?: {
|
|
561
|
+
display_name: string;
|
|
562
|
+
door_type: "common_area" | "guest";
|
|
546
563
|
room_number: string;
|
|
547
564
|
} | undefined;
|
|
548
565
|
dormakaba_community_metadata?: {
|
|
549
566
|
access_point_name: string;
|
|
567
|
+
access_point_profile: string;
|
|
550
568
|
} | undefined;
|
|
551
569
|
salto_space_metadata?: {
|
|
552
570
|
door_name?: string | undefined;
|
|
@@ -654,7 +672,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
654
672
|
} | undefined;
|
|
655
673
|
visionline_metadata?: {
|
|
656
674
|
door_name: string;
|
|
657
|
-
door_category: "
|
|
675
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
658
676
|
profiles?: {
|
|
659
677
|
visionline_door_profile_id: string;
|
|
660
678
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -677,10 +695,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
677
695
|
accessibility_type: string;
|
|
678
696
|
} | undefined;
|
|
679
697
|
hotek_metadata?: {
|
|
698
|
+
display_name: string;
|
|
699
|
+
door_type: "common_area" | "guest";
|
|
680
700
|
room_number: string;
|
|
681
701
|
} | undefined;
|
|
682
702
|
dormakaba_community_metadata?: {
|
|
683
703
|
access_point_name: string;
|
|
704
|
+
access_point_profile: string;
|
|
684
705
|
} | undefined;
|
|
685
706
|
salto_space_metadata?: {
|
|
686
707
|
door_name?: string | undefined;
|
|
@@ -790,7 +811,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
790
811
|
} | undefined;
|
|
791
812
|
visionline_metadata?: {
|
|
792
813
|
door_name: string;
|
|
793
|
-
door_category: "
|
|
814
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
794
815
|
profiles?: {
|
|
795
816
|
visionline_door_profile_id: string;
|
|
796
817
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -813,10 +834,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
813
834
|
accessibility_type: string;
|
|
814
835
|
} | undefined;
|
|
815
836
|
hotek_metadata?: {
|
|
837
|
+
display_name: string;
|
|
838
|
+
door_type: "common_area" | "guest";
|
|
816
839
|
room_number: string;
|
|
817
840
|
} | undefined;
|
|
818
841
|
dormakaba_community_metadata?: {
|
|
819
842
|
access_point_name: string;
|
|
843
|
+
access_point_profile: string;
|
|
820
844
|
} | undefined;
|
|
821
845
|
salto_space_metadata?: {
|
|
822
846
|
door_name?: string | undefined;
|
|
@@ -932,7 +956,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
932
956
|
} | undefined;
|
|
933
957
|
visionline_metadata?: {
|
|
934
958
|
door_name: string;
|
|
935
|
-
door_category: "
|
|
959
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
936
960
|
profiles?: {
|
|
937
961
|
visionline_door_profile_id: string;
|
|
938
962
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -955,10 +979,13 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
955
979
|
accessibility_type: string;
|
|
956
980
|
} | undefined;
|
|
957
981
|
hotek_metadata?: {
|
|
982
|
+
display_name: string;
|
|
983
|
+
door_type: "common_area" | "guest";
|
|
958
984
|
room_number: string;
|
|
959
985
|
} | undefined;
|
|
960
986
|
dormakaba_community_metadata?: {
|
|
961
987
|
access_point_name: string;
|
|
988
|
+
access_point_profile: string;
|
|
962
989
|
} | undefined;
|
|
963
990
|
salto_space_metadata?: {
|
|
964
991
|
door_name?: string | undefined;
|
|
@@ -1233,9 +1260,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1233
1260
|
}>>;
|
|
1234
1261
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
1235
1262
|
room_number: z.ZodString;
|
|
1263
|
+
display_name: z.ZodString;
|
|
1264
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
1236
1265
|
}, "strip", z.ZodTypeAny, {
|
|
1266
|
+
display_name: string;
|
|
1267
|
+
door_type: "common_area" | "guest";
|
|
1237
1268
|
room_number: string;
|
|
1238
1269
|
}, {
|
|
1270
|
+
display_name: string;
|
|
1271
|
+
door_type: "common_area" | "guest";
|
|
1239
1272
|
room_number: string;
|
|
1240
1273
|
}>>;
|
|
1241
1274
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -1253,14 +1286,14 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1253
1286
|
}>, "many">>;
|
|
1254
1287
|
}, "strip", z.ZodTypeAny, {
|
|
1255
1288
|
door_name: string;
|
|
1256
|
-
door_category: "
|
|
1289
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1257
1290
|
profiles?: {
|
|
1258
1291
|
visionline_door_profile_id: string;
|
|
1259
1292
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
1260
1293
|
}[] | undefined;
|
|
1261
1294
|
}, {
|
|
1262
1295
|
door_name: string;
|
|
1263
|
-
door_category: "
|
|
1296
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1264
1297
|
profiles?: {
|
|
1265
1298
|
visionline_door_profile_id: string;
|
|
1266
1299
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1296,10 +1329,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1296
1329
|
}>>;
|
|
1297
1330
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
1298
1331
|
access_point_name: z.ZodString;
|
|
1332
|
+
access_point_profile: z.ZodString;
|
|
1299
1333
|
}, "strip", z.ZodTypeAny, {
|
|
1300
1334
|
access_point_name: string;
|
|
1335
|
+
access_point_profile: string;
|
|
1301
1336
|
}, {
|
|
1302
1337
|
access_point_name: string;
|
|
1338
|
+
access_point_profile: string;
|
|
1303
1339
|
}>>;
|
|
1304
1340
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
1305
1341
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -1375,7 +1411,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1375
1411
|
} | undefined;
|
|
1376
1412
|
visionline_metadata?: {
|
|
1377
1413
|
door_name: string;
|
|
1378
|
-
door_category: "
|
|
1414
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1379
1415
|
profiles?: {
|
|
1380
1416
|
visionline_door_profile_id: string;
|
|
1381
1417
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1398,10 +1434,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1398
1434
|
accessibility_type: string;
|
|
1399
1435
|
} | undefined;
|
|
1400
1436
|
hotek_metadata?: {
|
|
1437
|
+
display_name: string;
|
|
1438
|
+
door_type: "common_area" | "guest";
|
|
1401
1439
|
room_number: string;
|
|
1402
1440
|
} | undefined;
|
|
1403
1441
|
dormakaba_community_metadata?: {
|
|
1404
1442
|
access_point_name: string;
|
|
1443
|
+
access_point_profile: string;
|
|
1405
1444
|
} | undefined;
|
|
1406
1445
|
salto_space_metadata?: {
|
|
1407
1446
|
door_name?: string | undefined;
|
|
@@ -1436,7 +1475,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1436
1475
|
} | undefined;
|
|
1437
1476
|
visionline_metadata?: {
|
|
1438
1477
|
door_name: string;
|
|
1439
|
-
door_category: "
|
|
1478
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1440
1479
|
profiles?: {
|
|
1441
1480
|
visionline_door_profile_id: string;
|
|
1442
1481
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1459,10 +1498,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1459
1498
|
accessibility_type: string;
|
|
1460
1499
|
} | undefined;
|
|
1461
1500
|
hotek_metadata?: {
|
|
1501
|
+
display_name: string;
|
|
1502
|
+
door_type: "common_area" | "guest";
|
|
1462
1503
|
room_number: string;
|
|
1463
1504
|
} | undefined;
|
|
1464
1505
|
dormakaba_community_metadata?: {
|
|
1465
1506
|
access_point_name: string;
|
|
1507
|
+
access_point_profile: string;
|
|
1466
1508
|
} | undefined;
|
|
1467
1509
|
salto_space_metadata?: {
|
|
1468
1510
|
door_name?: string | undefined;
|
|
@@ -1536,7 +1578,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1536
1578
|
} | undefined;
|
|
1537
1579
|
visionline_metadata?: {
|
|
1538
1580
|
door_name: string;
|
|
1539
|
-
door_category: "
|
|
1581
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1540
1582
|
profiles?: {
|
|
1541
1583
|
visionline_door_profile_id: string;
|
|
1542
1584
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1559,10 +1601,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1559
1601
|
accessibility_type: string;
|
|
1560
1602
|
} | undefined;
|
|
1561
1603
|
hotek_metadata?: {
|
|
1604
|
+
display_name: string;
|
|
1605
|
+
door_type: "common_area" | "guest";
|
|
1562
1606
|
room_number: string;
|
|
1563
1607
|
} | undefined;
|
|
1564
1608
|
dormakaba_community_metadata?: {
|
|
1565
1609
|
access_point_name: string;
|
|
1610
|
+
access_point_profile: string;
|
|
1566
1611
|
} | undefined;
|
|
1567
1612
|
salto_space_metadata?: {
|
|
1568
1613
|
door_name?: string | undefined;
|
|
@@ -1670,7 +1715,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1670
1715
|
} | undefined;
|
|
1671
1716
|
visionline_metadata?: {
|
|
1672
1717
|
door_name: string;
|
|
1673
|
-
door_category: "
|
|
1718
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1674
1719
|
profiles?: {
|
|
1675
1720
|
visionline_door_profile_id: string;
|
|
1676
1721
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1693,10 +1738,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1693
1738
|
accessibility_type: string;
|
|
1694
1739
|
} | undefined;
|
|
1695
1740
|
hotek_metadata?: {
|
|
1741
|
+
display_name: string;
|
|
1742
|
+
door_type: "common_area" | "guest";
|
|
1696
1743
|
room_number: string;
|
|
1697
1744
|
} | undefined;
|
|
1698
1745
|
dormakaba_community_metadata?: {
|
|
1699
1746
|
access_point_name: string;
|
|
1747
|
+
access_point_profile: string;
|
|
1700
1748
|
} | undefined;
|
|
1701
1749
|
salto_space_metadata?: {
|
|
1702
1750
|
door_name?: string | undefined;
|
|
@@ -1806,7 +1854,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1806
1854
|
} | undefined;
|
|
1807
1855
|
visionline_metadata?: {
|
|
1808
1856
|
door_name: string;
|
|
1809
|
-
door_category: "
|
|
1857
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1810
1858
|
profiles?: {
|
|
1811
1859
|
visionline_door_profile_id: string;
|
|
1812
1860
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1829,10 +1877,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1829
1877
|
accessibility_type: string;
|
|
1830
1878
|
} | undefined;
|
|
1831
1879
|
hotek_metadata?: {
|
|
1880
|
+
display_name: string;
|
|
1881
|
+
door_type: "common_area" | "guest";
|
|
1832
1882
|
room_number: string;
|
|
1833
1883
|
} | undefined;
|
|
1834
1884
|
dormakaba_community_metadata?: {
|
|
1835
1885
|
access_point_name: string;
|
|
1886
|
+
access_point_profile: string;
|
|
1836
1887
|
} | undefined;
|
|
1837
1888
|
salto_space_metadata?: {
|
|
1838
1889
|
door_name?: string | undefined;
|
|
@@ -1948,7 +1999,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1948
1999
|
} | undefined;
|
|
1949
2000
|
visionline_metadata?: {
|
|
1950
2001
|
door_name: string;
|
|
1951
|
-
door_category: "
|
|
2002
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
1952
2003
|
profiles?: {
|
|
1953
2004
|
visionline_door_profile_id: string;
|
|
1954
2005
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1971,10 +2022,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1971
2022
|
accessibility_type: string;
|
|
1972
2023
|
} | undefined;
|
|
1973
2024
|
hotek_metadata?: {
|
|
2025
|
+
display_name: string;
|
|
2026
|
+
door_type: "common_area" | "guest";
|
|
1974
2027
|
room_number: string;
|
|
1975
2028
|
} | undefined;
|
|
1976
2029
|
dormakaba_community_metadata?: {
|
|
1977
2030
|
access_point_name: string;
|
|
2031
|
+
access_point_profile: string;
|
|
1978
2032
|
} | undefined;
|
|
1979
2033
|
salto_space_metadata?: {
|
|
1980
2034
|
door_name?: string | undefined;
|
|
@@ -2204,7 +2258,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2204
2258
|
} | undefined;
|
|
2205
2259
|
visionline_metadata?: {
|
|
2206
2260
|
door_name: string;
|
|
2207
|
-
door_category: "
|
|
2261
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
2208
2262
|
profiles?: {
|
|
2209
2263
|
visionline_door_profile_id: string;
|
|
2210
2264
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -2227,10 +2281,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2227
2281
|
accessibility_type: string;
|
|
2228
2282
|
} | undefined;
|
|
2229
2283
|
hotek_metadata?: {
|
|
2284
|
+
display_name: string;
|
|
2285
|
+
door_type: "common_area" | "guest";
|
|
2230
2286
|
room_number: string;
|
|
2231
2287
|
} | undefined;
|
|
2232
2288
|
dormakaba_community_metadata?: {
|
|
2233
2289
|
access_point_name: string;
|
|
2290
|
+
access_point_profile: string;
|
|
2234
2291
|
} | undefined;
|
|
2235
2292
|
salto_space_metadata?: {
|
|
2236
2293
|
door_name?: string | undefined;
|
|
@@ -2376,7 +2433,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2376
2433
|
} | undefined;
|
|
2377
2434
|
visionline_metadata?: {
|
|
2378
2435
|
door_name: string;
|
|
2379
|
-
door_category: "
|
|
2436
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
2380
2437
|
profiles?: {
|
|
2381
2438
|
visionline_door_profile_id: string;
|
|
2382
2439
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -2399,10 +2456,13 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2399
2456
|
accessibility_type: string;
|
|
2400
2457
|
} | undefined;
|
|
2401
2458
|
hotek_metadata?: {
|
|
2459
|
+
display_name: string;
|
|
2460
|
+
door_type: "common_area" | "guest";
|
|
2402
2461
|
room_number: string;
|
|
2403
2462
|
} | undefined;
|
|
2404
2463
|
dormakaba_community_metadata?: {
|
|
2405
2464
|
access_point_name: string;
|
|
2465
|
+
access_point_profile: string;
|
|
2406
2466
|
} | undefined;
|
|
2407
2467
|
salto_space_metadata?: {
|
|
2408
2468
|
door_name?: string | undefined;
|
|
@@ -1135,6 +1135,10 @@ declare const _default: {
|
|
|
1135
1135
|
description: string;
|
|
1136
1136
|
type: string;
|
|
1137
1137
|
};
|
|
1138
|
+
access_point_profile: {
|
|
1139
|
+
description: string;
|
|
1140
|
+
type: string;
|
|
1141
|
+
};
|
|
1138
1142
|
};
|
|
1139
1143
|
required: string[];
|
|
1140
1144
|
type: string;
|
|
@@ -1160,6 +1164,15 @@ declare const _default: {
|
|
|
1160
1164
|
hotek_metadata: {
|
|
1161
1165
|
description: string;
|
|
1162
1166
|
properties: {
|
|
1167
|
+
display_name: {
|
|
1168
|
+
description: string;
|
|
1169
|
+
type: string;
|
|
1170
|
+
};
|
|
1171
|
+
door_type: {
|
|
1172
|
+
description: string;
|
|
1173
|
+
enum: string[];
|
|
1174
|
+
type: string;
|
|
1175
|
+
};
|
|
1163
1176
|
room_number: {
|
|
1164
1177
|
description: string;
|
|
1165
1178
|
type: string;
|
|
@@ -11097,6 +11110,10 @@ declare const _default: {
|
|
|
11097
11110
|
description: string;
|
|
11098
11111
|
type: string;
|
|
11099
11112
|
};
|
|
11113
|
+
access_point_profile: {
|
|
11114
|
+
description: string;
|
|
11115
|
+
type: string;
|
|
11116
|
+
};
|
|
11100
11117
|
};
|
|
11101
11118
|
required: string[];
|
|
11102
11119
|
type: string;
|
|
@@ -11122,6 +11139,15 @@ declare const _default: {
|
|
|
11122
11139
|
hotek_metadata: {
|
|
11123
11140
|
description: string;
|
|
11124
11141
|
properties: {
|
|
11142
|
+
display_name: {
|
|
11143
|
+
description: string;
|
|
11144
|
+
type: string;
|
|
11145
|
+
};
|
|
11146
|
+
door_type: {
|
|
11147
|
+
description: string;
|
|
11148
|
+
enum: string[];
|
|
11149
|
+
type: string;
|
|
11150
|
+
};
|
|
11125
11151
|
room_number: {
|
|
11126
11152
|
description: string;
|
|
11127
11153
|
type: string;
|
|
@@ -2461,8 +2461,12 @@ export default {
|
|
|
2461
2461
|
description: 'Name of the access point in the dormakaba Community access system.',
|
|
2462
2462
|
type: 'string',
|
|
2463
2463
|
},
|
|
2464
|
+
access_point_profile: {
|
|
2465
|
+
description: 'Type of access point profile in the dormakaba Community access system.',
|
|
2466
|
+
type: 'string',
|
|
2467
|
+
},
|
|
2464
2468
|
},
|
|
2465
|
-
required: ['access_point_name'],
|
|
2469
|
+
required: ['access_point_name', 'access_point_profile'],
|
|
2466
2470
|
type: 'object',
|
|
2467
2471
|
},
|
|
2468
2472
|
errors: {
|
|
@@ -2486,12 +2490,21 @@ export default {
|
|
|
2486
2490
|
hotek_metadata: {
|
|
2487
2491
|
description: 'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
2488
2492
|
properties: {
|
|
2493
|
+
display_name: {
|
|
2494
|
+
description: 'Display name of the entrance.',
|
|
2495
|
+
type: 'string',
|
|
2496
|
+
},
|
|
2497
|
+
door_type: {
|
|
2498
|
+
description: 'Type of door.',
|
|
2499
|
+
enum: ['common_area', 'guest'],
|
|
2500
|
+
type: 'string',
|
|
2501
|
+
},
|
|
2489
2502
|
room_number: {
|
|
2490
2503
|
description: 'Room number of the entrance.',
|
|
2491
2504
|
type: 'string',
|
|
2492
2505
|
},
|
|
2493
2506
|
},
|
|
2494
|
-
required: ['room_number'],
|
|
2507
|
+
required: ['room_number', 'display_name', 'door_type'],
|
|
2495
2508
|
type: 'object',
|
|
2496
2509
|
},
|
|
2497
2510
|
latch_metadata: {
|
|
@@ -17624,8 +17637,15 @@ export default {
|
|
|
17624
17637
|
description: 'Name of the access point in the dormakaba Community access system.',
|
|
17625
17638
|
type: 'string',
|
|
17626
17639
|
},
|
|
17640
|
+
access_point_profile: {
|
|
17641
|
+
description: 'Type of access point profile in the dormakaba Community access system.',
|
|
17642
|
+
type: 'string',
|
|
17643
|
+
},
|
|
17627
17644
|
},
|
|
17628
|
-
required: [
|
|
17645
|
+
required: [
|
|
17646
|
+
'access_point_name',
|
|
17647
|
+
'access_point_profile',
|
|
17648
|
+
],
|
|
17629
17649
|
type: 'object',
|
|
17630
17650
|
},
|
|
17631
17651
|
errors: {
|
|
@@ -17649,12 +17669,25 @@ export default {
|
|
|
17649
17669
|
hotek_metadata: {
|
|
17650
17670
|
description: 'Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
17651
17671
|
properties: {
|
|
17672
|
+
display_name: {
|
|
17673
|
+
description: 'Display name of the entrance.',
|
|
17674
|
+
type: 'string',
|
|
17675
|
+
},
|
|
17676
|
+
door_type: {
|
|
17677
|
+
description: 'Type of door.',
|
|
17678
|
+
enum: ['common_area', 'guest'],
|
|
17679
|
+
type: 'string',
|
|
17680
|
+
},
|
|
17652
17681
|
room_number: {
|
|
17653
17682
|
description: 'Room number of the entrance.',
|
|
17654
17683
|
type: 'string',
|
|
17655
17684
|
},
|
|
17656
17685
|
},
|
|
17657
|
-
required: [
|
|
17686
|
+
required: [
|
|
17687
|
+
'room_number',
|
|
17688
|
+
'display_name',
|
|
17689
|
+
'door_type',
|
|
17690
|
+
],
|
|
17658
17691
|
type: 'object',
|
|
17659
17692
|
},
|
|
17660
17693
|
latch_metadata: {
|