@seamapi/types 1.565.0 → 1.567.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 +308 -779
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +643 -1002
- package/dist/index.cjs +308 -779
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +552 -118
- package/lib/seam/connect/models/batch.js +5 -6
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +52 -2
- package/lib/seam/connect/models/customer/customer-portal.js +10 -2
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +538 -939
- package/lib/seam/connect/openapi.js +301 -775
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +39 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/batch.ts +5 -6
- package/src/lib/seam/connect/models/customer/customer-portal.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +303 -877
- package/src/lib/seam/connect/route-types.ts +103 -55
package/dist/index.cjs
CHANGED
|
@@ -2921,6 +2921,7 @@ var acs_entrance = zod.z.object({
|
|
|
2921
2921
|
acs_entrance_id: zod.z.string().uuid().describe(
|
|
2922
2922
|
"ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2923
2923
|
),
|
|
2924
|
+
space_ids: zod.z.array(zod.z.string().uuid()).describe("IDs of the spaces that the entrance is in."),
|
|
2924
2925
|
created_at: zod.z.string().datetime().describe(
|
|
2925
2926
|
"Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created."
|
|
2926
2927
|
),
|
|
@@ -5474,9 +5475,7 @@ zod.z.object({
|
|
|
5474
5475
|
devices: device.extend({
|
|
5475
5476
|
space_ids: zod.z.array(zod.z.string().uuid())
|
|
5476
5477
|
}).array().optional(),
|
|
5477
|
-
acs_entrances: acs_entrance.
|
|
5478
|
-
space_ids: zod.z.array(zod.z.string().uuid())
|
|
5479
|
-
}).array().optional(),
|
|
5478
|
+
acs_entrances: acs_entrance.array().optional(),
|
|
5480
5479
|
connected_accounts: connected_account.array().optional(),
|
|
5481
5480
|
acs_systems: acs_system.array().optional()
|
|
5482
5481
|
}).describe("ID of the affected access system user.");
|
|
@@ -5494,7 +5493,11 @@ zod.z.object({
|
|
|
5494
5493
|
batch_type: zod.z.literal("access_methods"),
|
|
5495
5494
|
spaces: space.array().optional(),
|
|
5496
5495
|
devices: device.array().optional(),
|
|
5497
|
-
acs_entrances: acs_entrance.array().optional()
|
|
5496
|
+
acs_entrances: acs_entrance.array().optional(),
|
|
5497
|
+
access_grants: access_grant.array().optional(),
|
|
5498
|
+
access_methods: access_method.array().optional(),
|
|
5499
|
+
instant_keys: instant_key.array().optional(),
|
|
5500
|
+
client_sessions: client_session.array().optional()
|
|
5498
5501
|
});
|
|
5499
5502
|
zod.z.object({
|
|
5500
5503
|
batch_type: zod.z.literal("workspaces"),
|
|
@@ -8364,6 +8367,11 @@ var openapi_default = {
|
|
|
8364
8367
|
},
|
|
8365
8368
|
type: "object"
|
|
8366
8369
|
},
|
|
8370
|
+
space_ids: {
|
|
8371
|
+
description: "IDs of the spaces that the entrance is in.",
|
|
8372
|
+
items: { format: "uuid", type: "string" },
|
|
8373
|
+
type: "array"
|
|
8374
|
+
},
|
|
8367
8375
|
visionline_metadata: {
|
|
8368
8376
|
description: "Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
8369
8377
|
properties: {
|
|
@@ -8412,6 +8420,7 @@ var openapi_default = {
|
|
|
8412
8420
|
required: [
|
|
8413
8421
|
"acs_system_id",
|
|
8414
8422
|
"acs_entrance_id",
|
|
8423
|
+
"space_ids",
|
|
8415
8424
|
"created_at",
|
|
8416
8425
|
"display_name",
|
|
8417
8426
|
"connected_account_id",
|
|
@@ -23723,6 +23732,11 @@ var openapi_default = {
|
|
|
23723
23732
|
},
|
|
23724
23733
|
type: "object"
|
|
23725
23734
|
},
|
|
23735
|
+
space_ids: {
|
|
23736
|
+
description: "IDs of the spaces that the entrance is in.",
|
|
23737
|
+
items: { format: "uuid", type: "string" },
|
|
23738
|
+
type: "array"
|
|
23739
|
+
},
|
|
23726
23740
|
visionline_metadata: {
|
|
23727
23741
|
description: "Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
23728
23742
|
properties: {
|
|
@@ -23771,6 +23785,7 @@ var openapi_default = {
|
|
|
23771
23785
|
required: [
|
|
23772
23786
|
"acs_system_id",
|
|
23773
23787
|
"acs_entrance_id",
|
|
23788
|
+
"space_ids",
|
|
23774
23789
|
"created_at",
|
|
23775
23790
|
"display_name",
|
|
23776
23791
|
"connected_account_id",
|
|
@@ -41022,6 +41037,11 @@ var openapi_default = {
|
|
|
41022
41037
|
default: false,
|
|
41023
41038
|
description: "Whether to exclude this feature from the portal.",
|
|
41024
41039
|
type: "boolean"
|
|
41040
|
+
},
|
|
41041
|
+
excluded_providers: {
|
|
41042
|
+
description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
|
|
41043
|
+
items: { type: "string" },
|
|
41044
|
+
type: "array"
|
|
41025
41045
|
}
|
|
41026
41046
|
},
|
|
41027
41047
|
type: "object"
|
|
@@ -41064,59 +41084,96 @@ var openapi_default = {
|
|
|
41064
41084
|
manage: {
|
|
41065
41085
|
oneOf: [
|
|
41066
41086
|
{
|
|
41067
|
-
|
|
41068
|
-
|
|
41069
|
-
|
|
41070
|
-
|
|
41071
|
-
|
|
41072
|
-
|
|
41073
|
-
|
|
41074
|
-
|
|
41075
|
-
|
|
41076
|
-
|
|
41077
|
-
|
|
41078
|
-
|
|
41079
|
-
|
|
41080
|
-
|
|
41081
|
-
|
|
41082
|
-
|
|
41083
|
-
|
|
41084
|
-
|
|
41085
|
-
|
|
41086
|
-
|
|
41087
|
-
|
|
41088
|
-
|
|
41089
|
-
|
|
41090
|
-
|
|
41091
|
-
|
|
41092
|
-
|
|
41093
|
-
|
|
41094
|
-
|
|
41095
|
-
|
|
41096
|
-
|
|
41097
|
-
|
|
41098
|
-
|
|
41099
|
-
|
|
41100
|
-
|
|
41101
|
-
|
|
41102
|
-
|
|
41103
|
-
|
|
41104
|
-
|
|
41105
|
-
|
|
41106
|
-
|
|
41107
|
-
|
|
41108
|
-
|
|
41109
|
-
|
|
41110
|
-
|
|
41111
|
-
|
|
41112
|
-
|
|
41087
|
+
oneOf: [
|
|
41088
|
+
{
|
|
41089
|
+
properties: {
|
|
41090
|
+
space_key: { type: "string" }
|
|
41091
|
+
},
|
|
41092
|
+
required: ["space_key"],
|
|
41093
|
+
type: "object"
|
|
41094
|
+
},
|
|
41095
|
+
{
|
|
41096
|
+
properties: {
|
|
41097
|
+
property_key: { type: "string" }
|
|
41098
|
+
},
|
|
41099
|
+
required: ["property_key"],
|
|
41100
|
+
type: "object"
|
|
41101
|
+
},
|
|
41102
|
+
{
|
|
41103
|
+
properties: {
|
|
41104
|
+
room_key: { type: "string" }
|
|
41105
|
+
},
|
|
41106
|
+
required: ["room_key"],
|
|
41107
|
+
type: "object"
|
|
41108
|
+
},
|
|
41109
|
+
{
|
|
41110
|
+
properties: {
|
|
41111
|
+
common_area_key: { type: "string" }
|
|
41112
|
+
},
|
|
41113
|
+
required: ["common_area_key"],
|
|
41114
|
+
type: "object"
|
|
41115
|
+
},
|
|
41116
|
+
{
|
|
41117
|
+
properties: {
|
|
41118
|
+
unit_key: { type: "string" }
|
|
41119
|
+
},
|
|
41120
|
+
required: ["unit_key"],
|
|
41121
|
+
type: "object"
|
|
41122
|
+
},
|
|
41123
|
+
{
|
|
41124
|
+
properties: {
|
|
41125
|
+
facility_key: { type: "string" }
|
|
41126
|
+
},
|
|
41127
|
+
required: ["facility_key"],
|
|
41128
|
+
type: "object"
|
|
41129
|
+
},
|
|
41130
|
+
{
|
|
41131
|
+
properties: {
|
|
41132
|
+
building_key: { type: "string" }
|
|
41133
|
+
},
|
|
41134
|
+
required: ["building_key"],
|
|
41135
|
+
type: "object"
|
|
41136
|
+
},
|
|
41137
|
+
{
|
|
41138
|
+
properties: {
|
|
41139
|
+
listing_key: { type: "string" }
|
|
41140
|
+
},
|
|
41141
|
+
required: ["listing_key"],
|
|
41142
|
+
type: "object"
|
|
41143
|
+
},
|
|
41144
|
+
{
|
|
41145
|
+
properties: {
|
|
41146
|
+
property_listing_key: { type: "string" }
|
|
41147
|
+
},
|
|
41148
|
+
required: ["property_listing_key"],
|
|
41149
|
+
type: "object"
|
|
41150
|
+
}
|
|
41151
|
+
]
|
|
41113
41152
|
},
|
|
41114
41153
|
{
|
|
41115
|
-
|
|
41116
|
-
|
|
41117
|
-
|
|
41118
|
-
|
|
41119
|
-
|
|
41154
|
+
oneOf: [
|
|
41155
|
+
{
|
|
41156
|
+
properties: {
|
|
41157
|
+
reservation_key: { type: "string" }
|
|
41158
|
+
},
|
|
41159
|
+
required: ["reservation_key"],
|
|
41160
|
+
type: "object"
|
|
41161
|
+
},
|
|
41162
|
+
{
|
|
41163
|
+
properties: {
|
|
41164
|
+
booking_key: { type: "string" }
|
|
41165
|
+
},
|
|
41166
|
+
required: ["booking_key"],
|
|
41167
|
+
type: "object"
|
|
41168
|
+
},
|
|
41169
|
+
{
|
|
41170
|
+
properties: {
|
|
41171
|
+
access_grant_key: { type: "string" }
|
|
41172
|
+
},
|
|
41173
|
+
required: ["access_grant_key"],
|
|
41174
|
+
type: "object"
|
|
41175
|
+
}
|
|
41176
|
+
]
|
|
41120
41177
|
}
|
|
41121
41178
|
]
|
|
41122
41179
|
}
|
|
@@ -51469,7 +51526,13 @@ var openapi_default = {
|
|
|
51469
51526
|
type: "object"
|
|
51470
51527
|
},
|
|
51471
51528
|
connect: {
|
|
51472
|
-
properties: {
|
|
51529
|
+
properties: {
|
|
51530
|
+
exclude: { type: "boolean" },
|
|
51531
|
+
excluded_providers: {
|
|
51532
|
+
items: { type: "string" },
|
|
51533
|
+
type: "array"
|
|
51534
|
+
}
|
|
51535
|
+
},
|
|
51473
51536
|
type: "object"
|
|
51474
51537
|
},
|
|
51475
51538
|
manage_devices: {
|
|
@@ -51489,61 +51552,98 @@ var openapi_default = {
|
|
|
51489
51552
|
manage: {
|
|
51490
51553
|
oneOf: [
|
|
51491
51554
|
{
|
|
51492
|
-
|
|
51493
|
-
|
|
51494
|
-
|
|
51495
|
-
|
|
51496
|
-
|
|
51497
|
-
|
|
51498
|
-
|
|
51499
|
-
|
|
51500
|
-
|
|
51501
|
-
|
|
51502
|
-
|
|
51503
|
-
|
|
51504
|
-
|
|
51505
|
-
|
|
51506
|
-
|
|
51507
|
-
|
|
51508
|
-
|
|
51509
|
-
|
|
51510
|
-
|
|
51511
|
-
|
|
51512
|
-
|
|
51513
|
-
|
|
51514
|
-
|
|
51515
|
-
|
|
51516
|
-
|
|
51517
|
-
|
|
51518
|
-
|
|
51519
|
-
|
|
51520
|
-
|
|
51521
|
-
|
|
51522
|
-
|
|
51523
|
-
|
|
51524
|
-
|
|
51525
|
-
|
|
51526
|
-
|
|
51527
|
-
|
|
51528
|
-
|
|
51529
|
-
|
|
51530
|
-
|
|
51531
|
-
|
|
51532
|
-
|
|
51533
|
-
|
|
51534
|
-
|
|
51535
|
-
|
|
51536
|
-
|
|
51537
|
-
|
|
51538
|
-
|
|
51539
|
-
|
|
51555
|
+
oneOf: [
|
|
51556
|
+
{
|
|
51557
|
+
properties: {
|
|
51558
|
+
space_key: { type: "string" }
|
|
51559
|
+
},
|
|
51560
|
+
required: ["space_key"],
|
|
51561
|
+
type: "object"
|
|
51562
|
+
},
|
|
51563
|
+
{
|
|
51564
|
+
properties: {
|
|
51565
|
+
property_key: { type: "string" }
|
|
51566
|
+
},
|
|
51567
|
+
required: ["property_key"],
|
|
51568
|
+
type: "object"
|
|
51569
|
+
},
|
|
51570
|
+
{
|
|
51571
|
+
properties: {
|
|
51572
|
+
room_key: { type: "string" }
|
|
51573
|
+
},
|
|
51574
|
+
required: ["room_key"],
|
|
51575
|
+
type: "object"
|
|
51576
|
+
},
|
|
51577
|
+
{
|
|
51578
|
+
properties: {
|
|
51579
|
+
common_area_key: { type: "string" }
|
|
51580
|
+
},
|
|
51581
|
+
required: ["common_area_key"],
|
|
51582
|
+
type: "object"
|
|
51583
|
+
},
|
|
51584
|
+
{
|
|
51585
|
+
properties: {
|
|
51586
|
+
unit_key: { type: "string" }
|
|
51587
|
+
},
|
|
51588
|
+
required: ["unit_key"],
|
|
51589
|
+
type: "object"
|
|
51590
|
+
},
|
|
51591
|
+
{
|
|
51592
|
+
properties: {
|
|
51593
|
+
facility_key: { type: "string" }
|
|
51594
|
+
},
|
|
51595
|
+
required: ["facility_key"],
|
|
51596
|
+
type: "object"
|
|
51597
|
+
},
|
|
51598
|
+
{
|
|
51599
|
+
properties: {
|
|
51600
|
+
building_key: { type: "string" }
|
|
51601
|
+
},
|
|
51602
|
+
required: ["building_key"],
|
|
51603
|
+
type: "object"
|
|
51604
|
+
},
|
|
51605
|
+
{
|
|
51606
|
+
properties: {
|
|
51607
|
+
listing_key: { type: "string" }
|
|
51608
|
+
},
|
|
51609
|
+
required: ["listing_key"],
|
|
51610
|
+
type: "object"
|
|
51611
|
+
},
|
|
51612
|
+
{
|
|
51613
|
+
properties: {
|
|
51614
|
+
property_listing_key: {
|
|
51615
|
+
type: "string"
|
|
51616
|
+
}
|
|
51617
|
+
},
|
|
51618
|
+
required: ["property_listing_key"],
|
|
51619
|
+
type: "object"
|
|
51620
|
+
}
|
|
51621
|
+
]
|
|
51540
51622
|
},
|
|
51541
51623
|
{
|
|
51542
|
-
|
|
51543
|
-
|
|
51544
|
-
|
|
51545
|
-
|
|
51546
|
-
|
|
51624
|
+
oneOf: [
|
|
51625
|
+
{
|
|
51626
|
+
properties: {
|
|
51627
|
+
reservation_key: { type: "string" }
|
|
51628
|
+
},
|
|
51629
|
+
required: ["reservation_key"],
|
|
51630
|
+
type: "object"
|
|
51631
|
+
},
|
|
51632
|
+
{
|
|
51633
|
+
properties: {
|
|
51634
|
+
booking_key: { type: "string" }
|
|
51635
|
+
},
|
|
51636
|
+
required: ["booking_key"],
|
|
51637
|
+
type: "object"
|
|
51638
|
+
},
|
|
51639
|
+
{
|
|
51640
|
+
properties: {
|
|
51641
|
+
access_grant_key: { type: "string" }
|
|
51642
|
+
},
|
|
51643
|
+
required: ["access_grant_key"],
|
|
51644
|
+
type: "object"
|
|
51645
|
+
}
|
|
51646
|
+
]
|
|
51547
51647
|
}
|
|
51548
51648
|
]
|
|
51549
51649
|
}
|
|
@@ -51629,7 +51729,13 @@ var openapi_default = {
|
|
|
51629
51729
|
type: "object"
|
|
51630
51730
|
},
|
|
51631
51731
|
connect: {
|
|
51632
|
-
properties: {
|
|
51732
|
+
properties: {
|
|
51733
|
+
exclude: { type: "boolean" },
|
|
51734
|
+
excluded_providers: {
|
|
51735
|
+
items: { type: "string" },
|
|
51736
|
+
type: "array"
|
|
51737
|
+
}
|
|
51738
|
+
},
|
|
51633
51739
|
type: "object"
|
|
51634
51740
|
},
|
|
51635
51741
|
manage_devices: {
|
|
@@ -51649,61 +51755,98 @@ var openapi_default = {
|
|
|
51649
51755
|
manage: {
|
|
51650
51756
|
oneOf: [
|
|
51651
51757
|
{
|
|
51652
|
-
|
|
51653
|
-
|
|
51654
|
-
|
|
51655
|
-
|
|
51656
|
-
|
|
51657
|
-
|
|
51658
|
-
|
|
51659
|
-
|
|
51660
|
-
|
|
51661
|
-
|
|
51662
|
-
|
|
51663
|
-
|
|
51664
|
-
|
|
51665
|
-
|
|
51666
|
-
|
|
51667
|
-
|
|
51668
|
-
|
|
51669
|
-
|
|
51670
|
-
|
|
51671
|
-
|
|
51672
|
-
|
|
51673
|
-
|
|
51674
|
-
|
|
51675
|
-
|
|
51676
|
-
|
|
51677
|
-
|
|
51678
|
-
|
|
51679
|
-
|
|
51680
|
-
|
|
51681
|
-
|
|
51682
|
-
|
|
51683
|
-
|
|
51684
|
-
|
|
51685
|
-
|
|
51686
|
-
|
|
51687
|
-
|
|
51688
|
-
|
|
51689
|
-
|
|
51690
|
-
|
|
51691
|
-
|
|
51692
|
-
|
|
51693
|
-
|
|
51694
|
-
|
|
51695
|
-
|
|
51696
|
-
|
|
51697
|
-
|
|
51698
|
-
|
|
51699
|
-
|
|
51758
|
+
oneOf: [
|
|
51759
|
+
{
|
|
51760
|
+
properties: {
|
|
51761
|
+
space_key: { type: "string" }
|
|
51762
|
+
},
|
|
51763
|
+
required: ["space_key"],
|
|
51764
|
+
type: "object"
|
|
51765
|
+
},
|
|
51766
|
+
{
|
|
51767
|
+
properties: {
|
|
51768
|
+
property_key: { type: "string" }
|
|
51769
|
+
},
|
|
51770
|
+
required: ["property_key"],
|
|
51771
|
+
type: "object"
|
|
51772
|
+
},
|
|
51773
|
+
{
|
|
51774
|
+
properties: {
|
|
51775
|
+
room_key: { type: "string" }
|
|
51776
|
+
},
|
|
51777
|
+
required: ["room_key"],
|
|
51778
|
+
type: "object"
|
|
51779
|
+
},
|
|
51780
|
+
{
|
|
51781
|
+
properties: {
|
|
51782
|
+
common_area_key: { type: "string" }
|
|
51783
|
+
},
|
|
51784
|
+
required: ["common_area_key"],
|
|
51785
|
+
type: "object"
|
|
51786
|
+
},
|
|
51787
|
+
{
|
|
51788
|
+
properties: {
|
|
51789
|
+
unit_key: { type: "string" }
|
|
51790
|
+
},
|
|
51791
|
+
required: ["unit_key"],
|
|
51792
|
+
type: "object"
|
|
51793
|
+
},
|
|
51794
|
+
{
|
|
51795
|
+
properties: {
|
|
51796
|
+
facility_key: { type: "string" }
|
|
51797
|
+
},
|
|
51798
|
+
required: ["facility_key"],
|
|
51799
|
+
type: "object"
|
|
51800
|
+
},
|
|
51801
|
+
{
|
|
51802
|
+
properties: {
|
|
51803
|
+
building_key: { type: "string" }
|
|
51804
|
+
},
|
|
51805
|
+
required: ["building_key"],
|
|
51806
|
+
type: "object"
|
|
51807
|
+
},
|
|
51808
|
+
{
|
|
51809
|
+
properties: {
|
|
51810
|
+
listing_key: { type: "string" }
|
|
51811
|
+
},
|
|
51812
|
+
required: ["listing_key"],
|
|
51813
|
+
type: "object"
|
|
51814
|
+
},
|
|
51815
|
+
{
|
|
51816
|
+
properties: {
|
|
51817
|
+
property_listing_key: {
|
|
51818
|
+
type: "string"
|
|
51819
|
+
}
|
|
51820
|
+
},
|
|
51821
|
+
required: ["property_listing_key"],
|
|
51822
|
+
type: "object"
|
|
51823
|
+
}
|
|
51824
|
+
]
|
|
51700
51825
|
},
|
|
51701
51826
|
{
|
|
51702
|
-
|
|
51703
|
-
|
|
51704
|
-
|
|
51705
|
-
|
|
51706
|
-
|
|
51827
|
+
oneOf: [
|
|
51828
|
+
{
|
|
51829
|
+
properties: {
|
|
51830
|
+
reservation_key: { type: "string" }
|
|
51831
|
+
},
|
|
51832
|
+
required: ["reservation_key"],
|
|
51833
|
+
type: "object"
|
|
51834
|
+
},
|
|
51835
|
+
{
|
|
51836
|
+
properties: {
|
|
51837
|
+
booking_key: { type: "string" }
|
|
51838
|
+
},
|
|
51839
|
+
required: ["booking_key"],
|
|
51840
|
+
type: "object"
|
|
51841
|
+
},
|
|
51842
|
+
{
|
|
51843
|
+
properties: {
|
|
51844
|
+
access_grant_key: { type: "string" }
|
|
51845
|
+
},
|
|
51846
|
+
required: ["access_grant_key"],
|
|
51847
|
+
type: "object"
|
|
51848
|
+
}
|
|
51849
|
+
]
|
|
51707
51850
|
}
|
|
51708
51851
|
]
|
|
51709
51852
|
}
|
|
@@ -53663,314 +53806,7 @@ var openapi_default = {
|
|
|
53663
53806
|
description: "ID of the affected access system user.",
|
|
53664
53807
|
properties: {
|
|
53665
53808
|
acs_entrances: {
|
|
53666
|
-
items: {
|
|
53667
|
-
description: "Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nIn an access control system, an entrance is a secured door, gate, zone, or other method of entry. You can list details for all the `acs_entrance` resources in your workspace or get these details for a specific `acs_entrance`. You can also list all entrances associated with a specific credential, and you can list all credentials associated with a specific entrance.",
|
|
53668
|
-
properties: {
|
|
53669
|
-
acs_entrance_id: {
|
|
53670
|
-
description: "ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53671
|
-
format: "uuid",
|
|
53672
|
-
type: "string"
|
|
53673
|
-
},
|
|
53674
|
-
acs_system_id: {
|
|
53675
|
-
description: "ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53676
|
-
format: "uuid",
|
|
53677
|
-
type: "string"
|
|
53678
|
-
},
|
|
53679
|
-
assa_abloy_vostio_metadata: {
|
|
53680
|
-
description: "ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53681
|
-
properties: {
|
|
53682
|
-
door_name: {
|
|
53683
|
-
description: "Name of the door in the Vostio access system.",
|
|
53684
|
-
type: "string"
|
|
53685
|
-
},
|
|
53686
|
-
door_number: {
|
|
53687
|
-
description: "Number of the door in the Vostio access system.",
|
|
53688
|
-
format: "float",
|
|
53689
|
-
type: "number"
|
|
53690
|
-
},
|
|
53691
|
-
door_type: {
|
|
53692
|
-
description: "Type of the door in the Vostio access system.",
|
|
53693
|
-
enum: [
|
|
53694
|
-
"CommonDoor",
|
|
53695
|
-
"EntranceDoor",
|
|
53696
|
-
"GuestDoor",
|
|
53697
|
-
"Elevator"
|
|
53698
|
-
],
|
|
53699
|
-
type: "string"
|
|
53700
|
-
},
|
|
53701
|
-
pms_id: {
|
|
53702
|
-
description: "PMS ID of the door in the Vostio access system.",
|
|
53703
|
-
type: "string"
|
|
53704
|
-
},
|
|
53705
|
-
stand_open: {
|
|
53706
|
-
description: "Indicates whether keys are allowed to set the door in stand open mode in the Vostio access system.",
|
|
53707
|
-
type: "boolean"
|
|
53708
|
-
}
|
|
53709
|
-
},
|
|
53710
|
-
required: ["door_type", "door_name"],
|
|
53711
|
-
type: "object"
|
|
53712
|
-
},
|
|
53713
|
-
can_unlock_with_card: {
|
|
53714
|
-
description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
|
|
53715
|
-
type: "boolean"
|
|
53716
|
-
},
|
|
53717
|
-
can_unlock_with_code: {
|
|
53718
|
-
description: "Indicates whether the ACS entrance can be unlocked with pin codes.",
|
|
53719
|
-
type: "boolean"
|
|
53720
|
-
},
|
|
53721
|
-
can_unlock_with_mobile_key: {
|
|
53722
|
-
description: "Indicates whether the ACS entrance can be unlocked with mobile key credentials.",
|
|
53723
|
-
type: "boolean"
|
|
53724
|
-
},
|
|
53725
|
-
connected_account_id: {
|
|
53726
|
-
description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53727
|
-
format: "uuid",
|
|
53728
|
-
type: "string"
|
|
53729
|
-
},
|
|
53730
|
-
created_at: {
|
|
53731
|
-
description: "Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.",
|
|
53732
|
-
format: "date-time",
|
|
53733
|
-
type: "string"
|
|
53734
|
-
},
|
|
53735
|
-
display_name: {
|
|
53736
|
-
description: "Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53737
|
-
type: "string"
|
|
53738
|
-
},
|
|
53739
|
-
dormakaba_ambiance_metadata: {
|
|
53740
|
-
description: "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53741
|
-
properties: {
|
|
53742
|
-
access_point_name: {
|
|
53743
|
-
description: "Name of the access point in the dormakaba Ambiance access system.",
|
|
53744
|
-
type: "string"
|
|
53745
|
-
}
|
|
53746
|
-
},
|
|
53747
|
-
required: ["access_point_name"],
|
|
53748
|
-
type: "object"
|
|
53749
|
-
},
|
|
53750
|
-
dormakaba_community_metadata: {
|
|
53751
|
-
description: "dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53752
|
-
properties: {
|
|
53753
|
-
access_point_name: {
|
|
53754
|
-
description: "Name of the access point in the dormakaba Community access system.",
|
|
53755
|
-
type: "string"
|
|
53756
|
-
},
|
|
53757
|
-
access_point_profile: {
|
|
53758
|
-
description: "Type of access point profile in the dormakaba Community access system.",
|
|
53759
|
-
type: "string"
|
|
53760
|
-
}
|
|
53761
|
-
},
|
|
53762
|
-
required: [
|
|
53763
|
-
"access_point_name",
|
|
53764
|
-
"access_point_profile"
|
|
53765
|
-
],
|
|
53766
|
-
type: "object"
|
|
53767
|
-
},
|
|
53768
|
-
errors: {
|
|
53769
|
-
description: "Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53770
|
-
items: {
|
|
53771
|
-
properties: {
|
|
53772
|
-
error_code: {
|
|
53773
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
53774
|
-
type: "string"
|
|
53775
|
-
},
|
|
53776
|
-
message: {
|
|
53777
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
53778
|
-
type: "string"
|
|
53779
|
-
}
|
|
53780
|
-
},
|
|
53781
|
-
required: ["error_code", "message"],
|
|
53782
|
-
type: "object"
|
|
53783
|
-
},
|
|
53784
|
-
type: "array"
|
|
53785
|
-
},
|
|
53786
|
-
hotek_metadata: {
|
|
53787
|
-
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53788
|
-
properties: {
|
|
53789
|
-
display_name: {
|
|
53790
|
-
description: "Display name of the entrance.",
|
|
53791
|
-
type: "string"
|
|
53792
|
-
},
|
|
53793
|
-
door_type: {
|
|
53794
|
-
description: "Type of door.",
|
|
53795
|
-
enum: ["common_area", "guest"],
|
|
53796
|
-
type: "string"
|
|
53797
|
-
},
|
|
53798
|
-
room_number: {
|
|
53799
|
-
description: "Room number of the entrance.",
|
|
53800
|
-
type: "string"
|
|
53801
|
-
}
|
|
53802
|
-
},
|
|
53803
|
-
required: [
|
|
53804
|
-
"room_number",
|
|
53805
|
-
"display_name",
|
|
53806
|
-
"door_type"
|
|
53807
|
-
],
|
|
53808
|
-
type: "object"
|
|
53809
|
-
},
|
|
53810
|
-
latch_metadata: {
|
|
53811
|
-
description: "Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53812
|
-
properties: {
|
|
53813
|
-
accessibility_type: {
|
|
53814
|
-
description: "Accessibility type in the Latch access system.",
|
|
53815
|
-
type: "string"
|
|
53816
|
-
},
|
|
53817
|
-
door_name: {
|
|
53818
|
-
description: "Name of the door in the Latch access system.",
|
|
53819
|
-
type: "string"
|
|
53820
|
-
},
|
|
53821
|
-
door_type: {
|
|
53822
|
-
description: "Type of the door in the Latch access system.",
|
|
53823
|
-
type: "string"
|
|
53824
|
-
},
|
|
53825
|
-
is_connected: {
|
|
53826
|
-
description: "Indicates whether the entrance is connected.",
|
|
53827
|
-
type: "boolean"
|
|
53828
|
-
}
|
|
53829
|
-
},
|
|
53830
|
-
required: [
|
|
53831
|
-
"accessibility_type",
|
|
53832
|
-
"door_name",
|
|
53833
|
-
"door_type",
|
|
53834
|
-
"is_connected"
|
|
53835
|
-
],
|
|
53836
|
-
type: "object"
|
|
53837
|
-
},
|
|
53838
|
-
salto_ks_metadata: {
|
|
53839
|
-
description: "Salto KS-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53840
|
-
properties: {
|
|
53841
|
-
battery_level: {
|
|
53842
|
-
description: "Battery level of the door access device.",
|
|
53843
|
-
type: "string"
|
|
53844
|
-
},
|
|
53845
|
-
door_name: {
|
|
53846
|
-
description: "Name of the door in the Salto KS access system.",
|
|
53847
|
-
type: "string"
|
|
53848
|
-
},
|
|
53849
|
-
intrusion_alarm: {
|
|
53850
|
-
description: "Indicates whether an intrusion alarm is active on the door.",
|
|
53851
|
-
type: "boolean"
|
|
53852
|
-
},
|
|
53853
|
-
left_open_alarm: {
|
|
53854
|
-
description: "Indicates whether the door is left open.",
|
|
53855
|
-
type: "boolean"
|
|
53856
|
-
},
|
|
53857
|
-
lock_type: {
|
|
53858
|
-
description: "Type of the lock in the Salto KS access system.",
|
|
53859
|
-
type: "string"
|
|
53860
|
-
},
|
|
53861
|
-
locked_state: {
|
|
53862
|
-
description: "Locked state of the door in the Salto KS access system.",
|
|
53863
|
-
type: "string"
|
|
53864
|
-
},
|
|
53865
|
-
online: {
|
|
53866
|
-
description: "Indicates whether the door access device is online.",
|
|
53867
|
-
type: "boolean"
|
|
53868
|
-
},
|
|
53869
|
-
privacy_mode: {
|
|
53870
|
-
description: "Indicates whether privacy mode is enabled for the lock.",
|
|
53871
|
-
type: "boolean"
|
|
53872
|
-
}
|
|
53873
|
-
},
|
|
53874
|
-
required: [
|
|
53875
|
-
"door_name",
|
|
53876
|
-
"locked_state",
|
|
53877
|
-
"lock_type",
|
|
53878
|
-
"battery_level"
|
|
53879
|
-
],
|
|
53880
|
-
type: "object"
|
|
53881
|
-
},
|
|
53882
|
-
salto_space_metadata: {
|
|
53883
|
-
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53884
|
-
properties: {
|
|
53885
|
-
door_description: {
|
|
53886
|
-
description: "Description of the door in the Salto Space access system.",
|
|
53887
|
-
type: "string"
|
|
53888
|
-
},
|
|
53889
|
-
door_id: {
|
|
53890
|
-
description: "Door ID in the Salto Space access system.",
|
|
53891
|
-
type: "string"
|
|
53892
|
-
},
|
|
53893
|
-
door_name: {
|
|
53894
|
-
description: "Name of the door in the Salto Space access system.",
|
|
53895
|
-
type: "string"
|
|
53896
|
-
},
|
|
53897
|
-
ext_door_id: {
|
|
53898
|
-
deprecated: true,
|
|
53899
|
-
type: "string",
|
|
53900
|
-
"x-deprecated": "use door_id."
|
|
53901
|
-
},
|
|
53902
|
-
room_description: {
|
|
53903
|
-
description: "Description of the room in the Salto Space access system.",
|
|
53904
|
-
type: "string"
|
|
53905
|
-
},
|
|
53906
|
-
room_name: {
|
|
53907
|
-
description: "Name of the room in the Salto Space access system.",
|
|
53908
|
-
type: "string"
|
|
53909
|
-
}
|
|
53910
|
-
},
|
|
53911
|
-
type: "object"
|
|
53912
|
-
},
|
|
53913
|
-
space_ids: {
|
|
53914
|
-
items: { format: "uuid", type: "string" },
|
|
53915
|
-
type: "array"
|
|
53916
|
-
},
|
|
53917
|
-
visionline_metadata: {
|
|
53918
|
-
description: "Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
53919
|
-
properties: {
|
|
53920
|
-
door_category: {
|
|
53921
|
-
description: "Category of the door in the Visionline access system.",
|
|
53922
|
-
enum: [
|
|
53923
|
-
"entrance",
|
|
53924
|
-
"guest",
|
|
53925
|
-
"elevator reader",
|
|
53926
|
-
"common",
|
|
53927
|
-
"common (PMS)"
|
|
53928
|
-
],
|
|
53929
|
-
type: "string"
|
|
53930
|
-
},
|
|
53931
|
-
door_name: {
|
|
53932
|
-
description: "Name of the door in the Visionline access system.",
|
|
53933
|
-
type: "string"
|
|
53934
|
-
},
|
|
53935
|
-
profiles: {
|
|
53936
|
-
description: "Profile for the door in the Visionline access system.",
|
|
53937
|
-
items: {
|
|
53938
|
-
properties: {
|
|
53939
|
-
visionline_door_profile_id: {
|
|
53940
|
-
description: "Door profile ID in the Visionline access system.",
|
|
53941
|
-
type: "string"
|
|
53942
|
-
},
|
|
53943
|
-
visionline_door_profile_type: {
|
|
53944
|
-
description: "Door profile type in the Visionline access system.",
|
|
53945
|
-
enum: ["BLE", "commonDoor", "touch"],
|
|
53946
|
-
type: "string"
|
|
53947
|
-
}
|
|
53948
|
-
},
|
|
53949
|
-
required: [
|
|
53950
|
-
"visionline_door_profile_id",
|
|
53951
|
-
"visionline_door_profile_type"
|
|
53952
|
-
],
|
|
53953
|
-
type: "object"
|
|
53954
|
-
},
|
|
53955
|
-
type: "array"
|
|
53956
|
-
}
|
|
53957
|
-
},
|
|
53958
|
-
required: ["door_name", "door_category"],
|
|
53959
|
-
type: "object"
|
|
53960
|
-
}
|
|
53961
|
-
},
|
|
53962
|
-
required: [
|
|
53963
|
-
"acs_system_id",
|
|
53964
|
-
"acs_entrance_id",
|
|
53965
|
-
"created_at",
|
|
53966
|
-
"display_name",
|
|
53967
|
-
"connected_account_id",
|
|
53968
|
-
"errors",
|
|
53969
|
-
"space_ids"
|
|
53970
|
-
],
|
|
53971
|
-
type: "object",
|
|
53972
|
-
"x-route-path": "/acs/entrances"
|
|
53973
|
-
},
|
|
53809
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
53974
53810
|
type: "array"
|
|
53975
53811
|
},
|
|
53976
53812
|
acs_systems: {
|
|
@@ -57592,314 +57428,7 @@ var openapi_default = {
|
|
|
57592
57428
|
description: "ID of the affected access system user.",
|
|
57593
57429
|
properties: {
|
|
57594
57430
|
acs_entrances: {
|
|
57595
|
-
items: {
|
|
57596
|
-
description: "Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nIn an access control system, an entrance is a secured door, gate, zone, or other method of entry. You can list details for all the `acs_entrance` resources in your workspace or get these details for a specific `acs_entrance`. You can also list all entrances associated with a specific credential, and you can list all credentials associated with a specific entrance.",
|
|
57597
|
-
properties: {
|
|
57598
|
-
acs_entrance_id: {
|
|
57599
|
-
description: "ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57600
|
-
format: "uuid",
|
|
57601
|
-
type: "string"
|
|
57602
|
-
},
|
|
57603
|
-
acs_system_id: {
|
|
57604
|
-
description: "ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57605
|
-
format: "uuid",
|
|
57606
|
-
type: "string"
|
|
57607
|
-
},
|
|
57608
|
-
assa_abloy_vostio_metadata: {
|
|
57609
|
-
description: "ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57610
|
-
properties: {
|
|
57611
|
-
door_name: {
|
|
57612
|
-
description: "Name of the door in the Vostio access system.",
|
|
57613
|
-
type: "string"
|
|
57614
|
-
},
|
|
57615
|
-
door_number: {
|
|
57616
|
-
description: "Number of the door in the Vostio access system.",
|
|
57617
|
-
format: "float",
|
|
57618
|
-
type: "number"
|
|
57619
|
-
},
|
|
57620
|
-
door_type: {
|
|
57621
|
-
description: "Type of the door in the Vostio access system.",
|
|
57622
|
-
enum: [
|
|
57623
|
-
"CommonDoor",
|
|
57624
|
-
"EntranceDoor",
|
|
57625
|
-
"GuestDoor",
|
|
57626
|
-
"Elevator"
|
|
57627
|
-
],
|
|
57628
|
-
type: "string"
|
|
57629
|
-
},
|
|
57630
|
-
pms_id: {
|
|
57631
|
-
description: "PMS ID of the door in the Vostio access system.",
|
|
57632
|
-
type: "string"
|
|
57633
|
-
},
|
|
57634
|
-
stand_open: {
|
|
57635
|
-
description: "Indicates whether keys are allowed to set the door in stand open mode in the Vostio access system.",
|
|
57636
|
-
type: "boolean"
|
|
57637
|
-
}
|
|
57638
|
-
},
|
|
57639
|
-
required: ["door_type", "door_name"],
|
|
57640
|
-
type: "object"
|
|
57641
|
-
},
|
|
57642
|
-
can_unlock_with_card: {
|
|
57643
|
-
description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
|
|
57644
|
-
type: "boolean"
|
|
57645
|
-
},
|
|
57646
|
-
can_unlock_with_code: {
|
|
57647
|
-
description: "Indicates whether the ACS entrance can be unlocked with pin codes.",
|
|
57648
|
-
type: "boolean"
|
|
57649
|
-
},
|
|
57650
|
-
can_unlock_with_mobile_key: {
|
|
57651
|
-
description: "Indicates whether the ACS entrance can be unlocked with mobile key credentials.",
|
|
57652
|
-
type: "boolean"
|
|
57653
|
-
},
|
|
57654
|
-
connected_account_id: {
|
|
57655
|
-
description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57656
|
-
format: "uuid",
|
|
57657
|
-
type: "string"
|
|
57658
|
-
},
|
|
57659
|
-
created_at: {
|
|
57660
|
-
description: "Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.",
|
|
57661
|
-
format: "date-time",
|
|
57662
|
-
type: "string"
|
|
57663
|
-
},
|
|
57664
|
-
display_name: {
|
|
57665
|
-
description: "Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57666
|
-
type: "string"
|
|
57667
|
-
},
|
|
57668
|
-
dormakaba_ambiance_metadata: {
|
|
57669
|
-
description: "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57670
|
-
properties: {
|
|
57671
|
-
access_point_name: {
|
|
57672
|
-
description: "Name of the access point in the dormakaba Ambiance access system.",
|
|
57673
|
-
type: "string"
|
|
57674
|
-
}
|
|
57675
|
-
},
|
|
57676
|
-
required: ["access_point_name"],
|
|
57677
|
-
type: "object"
|
|
57678
|
-
},
|
|
57679
|
-
dormakaba_community_metadata: {
|
|
57680
|
-
description: "dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57681
|
-
properties: {
|
|
57682
|
-
access_point_name: {
|
|
57683
|
-
description: "Name of the access point in the dormakaba Community access system.",
|
|
57684
|
-
type: "string"
|
|
57685
|
-
},
|
|
57686
|
-
access_point_profile: {
|
|
57687
|
-
description: "Type of access point profile in the dormakaba Community access system.",
|
|
57688
|
-
type: "string"
|
|
57689
|
-
}
|
|
57690
|
-
},
|
|
57691
|
-
required: [
|
|
57692
|
-
"access_point_name",
|
|
57693
|
-
"access_point_profile"
|
|
57694
|
-
],
|
|
57695
|
-
type: "object"
|
|
57696
|
-
},
|
|
57697
|
-
errors: {
|
|
57698
|
-
description: "Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57699
|
-
items: {
|
|
57700
|
-
properties: {
|
|
57701
|
-
error_code: {
|
|
57702
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
57703
|
-
type: "string"
|
|
57704
|
-
},
|
|
57705
|
-
message: {
|
|
57706
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
57707
|
-
type: "string"
|
|
57708
|
-
}
|
|
57709
|
-
},
|
|
57710
|
-
required: ["error_code", "message"],
|
|
57711
|
-
type: "object"
|
|
57712
|
-
},
|
|
57713
|
-
type: "array"
|
|
57714
|
-
},
|
|
57715
|
-
hotek_metadata: {
|
|
57716
|
-
description: "Hotek-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57717
|
-
properties: {
|
|
57718
|
-
display_name: {
|
|
57719
|
-
description: "Display name of the entrance.",
|
|
57720
|
-
type: "string"
|
|
57721
|
-
},
|
|
57722
|
-
door_type: {
|
|
57723
|
-
description: "Type of door.",
|
|
57724
|
-
enum: ["common_area", "guest"],
|
|
57725
|
-
type: "string"
|
|
57726
|
-
},
|
|
57727
|
-
room_number: {
|
|
57728
|
-
description: "Room number of the entrance.",
|
|
57729
|
-
type: "string"
|
|
57730
|
-
}
|
|
57731
|
-
},
|
|
57732
|
-
required: [
|
|
57733
|
-
"room_number",
|
|
57734
|
-
"display_name",
|
|
57735
|
-
"door_type"
|
|
57736
|
-
],
|
|
57737
|
-
type: "object"
|
|
57738
|
-
},
|
|
57739
|
-
latch_metadata: {
|
|
57740
|
-
description: "Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57741
|
-
properties: {
|
|
57742
|
-
accessibility_type: {
|
|
57743
|
-
description: "Accessibility type in the Latch access system.",
|
|
57744
|
-
type: "string"
|
|
57745
|
-
},
|
|
57746
|
-
door_name: {
|
|
57747
|
-
description: "Name of the door in the Latch access system.",
|
|
57748
|
-
type: "string"
|
|
57749
|
-
},
|
|
57750
|
-
door_type: {
|
|
57751
|
-
description: "Type of the door in the Latch access system.",
|
|
57752
|
-
type: "string"
|
|
57753
|
-
},
|
|
57754
|
-
is_connected: {
|
|
57755
|
-
description: "Indicates whether the entrance is connected.",
|
|
57756
|
-
type: "boolean"
|
|
57757
|
-
}
|
|
57758
|
-
},
|
|
57759
|
-
required: [
|
|
57760
|
-
"accessibility_type",
|
|
57761
|
-
"door_name",
|
|
57762
|
-
"door_type",
|
|
57763
|
-
"is_connected"
|
|
57764
|
-
],
|
|
57765
|
-
type: "object"
|
|
57766
|
-
},
|
|
57767
|
-
salto_ks_metadata: {
|
|
57768
|
-
description: "Salto KS-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57769
|
-
properties: {
|
|
57770
|
-
battery_level: {
|
|
57771
|
-
description: "Battery level of the door access device.",
|
|
57772
|
-
type: "string"
|
|
57773
|
-
},
|
|
57774
|
-
door_name: {
|
|
57775
|
-
description: "Name of the door in the Salto KS access system.",
|
|
57776
|
-
type: "string"
|
|
57777
|
-
},
|
|
57778
|
-
intrusion_alarm: {
|
|
57779
|
-
description: "Indicates whether an intrusion alarm is active on the door.",
|
|
57780
|
-
type: "boolean"
|
|
57781
|
-
},
|
|
57782
|
-
left_open_alarm: {
|
|
57783
|
-
description: "Indicates whether the door is left open.",
|
|
57784
|
-
type: "boolean"
|
|
57785
|
-
},
|
|
57786
|
-
lock_type: {
|
|
57787
|
-
description: "Type of the lock in the Salto KS access system.",
|
|
57788
|
-
type: "string"
|
|
57789
|
-
},
|
|
57790
|
-
locked_state: {
|
|
57791
|
-
description: "Locked state of the door in the Salto KS access system.",
|
|
57792
|
-
type: "string"
|
|
57793
|
-
},
|
|
57794
|
-
online: {
|
|
57795
|
-
description: "Indicates whether the door access device is online.",
|
|
57796
|
-
type: "boolean"
|
|
57797
|
-
},
|
|
57798
|
-
privacy_mode: {
|
|
57799
|
-
description: "Indicates whether privacy mode is enabled for the lock.",
|
|
57800
|
-
type: "boolean"
|
|
57801
|
-
}
|
|
57802
|
-
},
|
|
57803
|
-
required: [
|
|
57804
|
-
"door_name",
|
|
57805
|
-
"locked_state",
|
|
57806
|
-
"lock_type",
|
|
57807
|
-
"battery_level"
|
|
57808
|
-
],
|
|
57809
|
-
type: "object"
|
|
57810
|
-
},
|
|
57811
|
-
salto_space_metadata: {
|
|
57812
|
-
description: "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57813
|
-
properties: {
|
|
57814
|
-
door_description: {
|
|
57815
|
-
description: "Description of the door in the Salto Space access system.",
|
|
57816
|
-
type: "string"
|
|
57817
|
-
},
|
|
57818
|
-
door_id: {
|
|
57819
|
-
description: "Door ID in the Salto Space access system.",
|
|
57820
|
-
type: "string"
|
|
57821
|
-
},
|
|
57822
|
-
door_name: {
|
|
57823
|
-
description: "Name of the door in the Salto Space access system.",
|
|
57824
|
-
type: "string"
|
|
57825
|
-
},
|
|
57826
|
-
ext_door_id: {
|
|
57827
|
-
deprecated: true,
|
|
57828
|
-
type: "string",
|
|
57829
|
-
"x-deprecated": "use door_id."
|
|
57830
|
-
},
|
|
57831
|
-
room_description: {
|
|
57832
|
-
description: "Description of the room in the Salto Space access system.",
|
|
57833
|
-
type: "string"
|
|
57834
|
-
},
|
|
57835
|
-
room_name: {
|
|
57836
|
-
description: "Name of the room in the Salto Space access system.",
|
|
57837
|
-
type: "string"
|
|
57838
|
-
}
|
|
57839
|
-
},
|
|
57840
|
-
type: "object"
|
|
57841
|
-
},
|
|
57842
|
-
space_ids: {
|
|
57843
|
-
items: { format: "uuid", type: "string" },
|
|
57844
|
-
type: "array"
|
|
57845
|
-
},
|
|
57846
|
-
visionline_metadata: {
|
|
57847
|
-
description: "Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
57848
|
-
properties: {
|
|
57849
|
-
door_category: {
|
|
57850
|
-
description: "Category of the door in the Visionline access system.",
|
|
57851
|
-
enum: [
|
|
57852
|
-
"entrance",
|
|
57853
|
-
"guest",
|
|
57854
|
-
"elevator reader",
|
|
57855
|
-
"common",
|
|
57856
|
-
"common (PMS)"
|
|
57857
|
-
],
|
|
57858
|
-
type: "string"
|
|
57859
|
-
},
|
|
57860
|
-
door_name: {
|
|
57861
|
-
description: "Name of the door in the Visionline access system.",
|
|
57862
|
-
type: "string"
|
|
57863
|
-
},
|
|
57864
|
-
profiles: {
|
|
57865
|
-
description: "Profile for the door in the Visionline access system.",
|
|
57866
|
-
items: {
|
|
57867
|
-
properties: {
|
|
57868
|
-
visionline_door_profile_id: {
|
|
57869
|
-
description: "Door profile ID in the Visionline access system.",
|
|
57870
|
-
type: "string"
|
|
57871
|
-
},
|
|
57872
|
-
visionline_door_profile_type: {
|
|
57873
|
-
description: "Door profile type in the Visionline access system.",
|
|
57874
|
-
enum: ["BLE", "commonDoor", "touch"],
|
|
57875
|
-
type: "string"
|
|
57876
|
-
}
|
|
57877
|
-
},
|
|
57878
|
-
required: [
|
|
57879
|
-
"visionline_door_profile_id",
|
|
57880
|
-
"visionline_door_profile_type"
|
|
57881
|
-
],
|
|
57882
|
-
type: "object"
|
|
57883
|
-
},
|
|
57884
|
-
type: "array"
|
|
57885
|
-
}
|
|
57886
|
-
},
|
|
57887
|
-
required: ["door_name", "door_category"],
|
|
57888
|
-
type: "object"
|
|
57889
|
-
}
|
|
57890
|
-
},
|
|
57891
|
-
required: [
|
|
57892
|
-
"acs_system_id",
|
|
57893
|
-
"acs_entrance_id",
|
|
57894
|
-
"created_at",
|
|
57895
|
-
"display_name",
|
|
57896
|
-
"connected_account_id",
|
|
57897
|
-
"errors",
|
|
57898
|
-
"space_ids"
|
|
57899
|
-
],
|
|
57900
|
-
type: "object",
|
|
57901
|
-
"x-route-path": "/acs/entrances"
|
|
57902
|
-
},
|
|
57431
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
57903
57432
|
type: "array"
|
|
57904
57433
|
},
|
|
57905
57434
|
acs_systems: {
|