@seamapi/types 1.731.0 → 1.733.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 +58 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +195 -0
- package/dist/index.cjs +58 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +23 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -1
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/brivo.d.ts +15 -0
- package/lib/seam/connect/models/acs/metadata/brivo.js +15 -0
- package/lib/seam/connect/models/acs/metadata/brivo.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +33 -0
- package/lib/seam/connect/models/customer/customer-portal.d.ts +4 -0
- package/lib/seam/connect/models/customer/customer-portal.js +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +96 -0
- package/lib/seam/connect/openapi.d.ts +47 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +92 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/metadata/brivo.ts +19 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +58 -0
- package/src/lib/seam/connect/route-types.ts +112 -0
|
@@ -11894,6 +11894,15 @@ export type Routes = {
|
|
|
11894
11894
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
11895
11895
|
access_point_name: string;
|
|
11896
11896
|
} | undefined;
|
|
11897
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
11898
|
+
brivo_metadata?: {
|
|
11899
|
+
/** ID of the access point in the Brivo access system. */
|
|
11900
|
+
access_point_id: string;
|
|
11901
|
+
/** ID of the site that the access point belongs to. */
|
|
11902
|
+
site_id: number;
|
|
11903
|
+
/** Name of the site that the access point belongs to. */
|
|
11904
|
+
site_name: string;
|
|
11905
|
+
} | undefined;
|
|
11897
11906
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
11898
11907
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
11899
11908
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -15959,6 +15968,15 @@ export type Routes = {
|
|
|
15959
15968
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
15960
15969
|
access_point_name: string;
|
|
15961
15970
|
} | undefined;
|
|
15971
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
15972
|
+
brivo_metadata?: {
|
|
15973
|
+
/** ID of the access point in the Brivo access system. */
|
|
15974
|
+
access_point_id: string;
|
|
15975
|
+
/** ID of the site that the access point belongs to. */
|
|
15976
|
+
site_id: number;
|
|
15977
|
+
/** Name of the site that the access point belongs to. */
|
|
15978
|
+
site_name: string;
|
|
15979
|
+
} | undefined;
|
|
15962
15980
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
15963
15981
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
15964
15982
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -17042,6 +17060,15 @@ export type Routes = {
|
|
|
17042
17060
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
17043
17061
|
access_point_name: string;
|
|
17044
17062
|
} | undefined;
|
|
17063
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
17064
|
+
brivo_metadata?: {
|
|
17065
|
+
/** ID of the access point in the Brivo access system. */
|
|
17066
|
+
access_point_id: string;
|
|
17067
|
+
/** ID of the site that the access point belongs to. */
|
|
17068
|
+
site_id: number;
|
|
17069
|
+
/** Name of the site that the access point belongs to. */
|
|
17070
|
+
site_name: string;
|
|
17071
|
+
} | undefined;
|
|
17045
17072
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
17046
17073
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
17047
17074
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -18468,6 +18495,15 @@ export type Routes = {
|
|
|
18468
18495
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
18469
18496
|
access_point_name: string;
|
|
18470
18497
|
} | undefined;
|
|
18498
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
18499
|
+
brivo_metadata?: {
|
|
18500
|
+
/** ID of the access point in the Brivo access system. */
|
|
18501
|
+
access_point_id: string;
|
|
18502
|
+
/** ID of the site that the access point belongs to. */
|
|
18503
|
+
site_id: number;
|
|
18504
|
+
/** Name of the site that the access point belongs to. */
|
|
18505
|
+
site_name: string;
|
|
18506
|
+
} | undefined;
|
|
18471
18507
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
18472
18508
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
18473
18509
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -21963,6 +21999,15 @@ export type Routes = {
|
|
|
21963
21999
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
21964
22000
|
access_point_name: string;
|
|
21965
22001
|
} | undefined;
|
|
22002
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
22003
|
+
brivo_metadata?: {
|
|
22004
|
+
/** ID of the access point in the Brivo access system. */
|
|
22005
|
+
access_point_id: string;
|
|
22006
|
+
/** ID of the site that the access point belongs to. */
|
|
22007
|
+
site_id: number;
|
|
22008
|
+
/** Name of the site that the access point belongs to. */
|
|
22009
|
+
site_name: string;
|
|
22010
|
+
} | undefined;
|
|
21966
22011
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
21967
22012
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
21968
22013
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -22133,6 +22178,15 @@ export type Routes = {
|
|
|
22133
22178
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
22134
22179
|
access_point_name: string;
|
|
22135
22180
|
} | undefined;
|
|
22181
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
22182
|
+
brivo_metadata?: {
|
|
22183
|
+
/** ID of the access point in the Brivo access system. */
|
|
22184
|
+
access_point_id: string;
|
|
22185
|
+
/** ID of the site that the access point belongs to. */
|
|
22186
|
+
site_id: number;
|
|
22187
|
+
/** Name of the site that the access point belongs to. */
|
|
22188
|
+
site_name: string;
|
|
22189
|
+
} | undefined;
|
|
22136
22190
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
22137
22191
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
22138
22192
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -23671,6 +23725,15 @@ export type Routes = {
|
|
|
23671
23725
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
23672
23726
|
access_point_name: string;
|
|
23673
23727
|
} | undefined;
|
|
23728
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23729
|
+
brivo_metadata?: {
|
|
23730
|
+
/** ID of the access point in the Brivo access system. */
|
|
23731
|
+
access_point_id: string;
|
|
23732
|
+
/** ID of the site that the access point belongs to. */
|
|
23733
|
+
site_id: number;
|
|
23734
|
+
/** Name of the site that the access point belongs to. */
|
|
23735
|
+
site_name: string;
|
|
23736
|
+
} | undefined;
|
|
23674
23737
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
23675
23738
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
23676
23739
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -28093,6 +28156,8 @@ export type Routes = {
|
|
|
28093
28156
|
resource_type: 'reservation' | 'space';
|
|
28094
28157
|
resource_key: string;
|
|
28095
28158
|
} | undefined;
|
|
28159
|
+
/** Whether the portal is in developer mode. Only available for Seam employees. */
|
|
28160
|
+
_dev?: boolean;
|
|
28096
28161
|
} & {
|
|
28097
28162
|
customer_data?: {
|
|
28098
28163
|
/** Your unique identifier for the customer. */
|
|
@@ -61852,6 +61917,15 @@ export type Routes = {
|
|
|
61852
61917
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
61853
61918
|
access_point_name: string;
|
|
61854
61919
|
} | undefined;
|
|
61920
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
61921
|
+
brivo_metadata?: {
|
|
61922
|
+
/** ID of the access point in the Brivo access system. */
|
|
61923
|
+
access_point_id: string;
|
|
61924
|
+
/** ID of the site that the access point belongs to. */
|
|
61925
|
+
site_id: number;
|
|
61926
|
+
/** Name of the site that the access point belongs to. */
|
|
61927
|
+
site_name: string;
|
|
61928
|
+
} | undefined;
|
|
61855
61929
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
61856
61930
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
61857
61931
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -63545,6 +63619,15 @@ export type Routes = {
|
|
|
63545
63619
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
63546
63620
|
access_point_name: string;
|
|
63547
63621
|
} | undefined;
|
|
63622
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
63623
|
+
brivo_metadata?: {
|
|
63624
|
+
/** ID of the access point in the Brivo access system. */
|
|
63625
|
+
access_point_id: string;
|
|
63626
|
+
/** ID of the site that the access point belongs to. */
|
|
63627
|
+
site_id: number;
|
|
63628
|
+
/** Name of the site that the access point belongs to. */
|
|
63629
|
+
site_name: string;
|
|
63630
|
+
} | undefined;
|
|
63548
63631
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
63549
63632
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
63550
63633
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -85539,6 +85622,15 @@ export type Routes = {
|
|
|
85539
85622
|
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
85540
85623
|
access_point_name: string;
|
|
85541
85624
|
} | undefined;
|
|
85625
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
85626
|
+
brivo_metadata?: {
|
|
85627
|
+
/** ID of the access point in the Brivo access system. */
|
|
85628
|
+
access_point_id: string;
|
|
85629
|
+
/** ID of the site that the access point belongs to. */
|
|
85630
|
+
site_id: number;
|
|
85631
|
+
/** Name of the site that the access point belongs to. */
|
|
85632
|
+
site_name: string;
|
|
85633
|
+
} | undefined;
|
|
85542
85634
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
85543
85635
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
85544
85636
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ import { z } from 'zod'
|
|
|
3
3
|
import { acs_entrance_dormakaba_ambiance_metadata } from './metadata/dormakaba-ambiance.js'
|
|
4
4
|
import {
|
|
5
5
|
acs_entrance_assa_abloy_vostio_metadata,
|
|
6
|
+
acs_entrance_brivo_metadata,
|
|
6
7
|
acs_entrance_dormakaba_community_metadata,
|
|
7
8
|
acs_entrance_hotek_metadata,
|
|
8
9
|
acs_entrance_latch_metadata,
|
|
@@ -130,6 +131,11 @@ export const acs_entrance = z
|
|
|
130
131
|
.describe(
|
|
131
132
|
'dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
132
133
|
),
|
|
134
|
+
brivo_metadata: acs_entrance_brivo_metadata
|
|
135
|
+
.optional()
|
|
136
|
+
.describe(
|
|
137
|
+
'Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
138
|
+
),
|
|
133
139
|
})
|
|
134
140
|
.merge(acs_entrance_capability_flags).describe(`
|
|
135
141
|
---
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const acs_entrance_brivo_metadata = z
|
|
4
|
+
.object({
|
|
5
|
+
access_point_id: z
|
|
6
|
+
.string()
|
|
7
|
+
.describe('ID of the access point in the Brivo access system.'),
|
|
8
|
+
site_id: z
|
|
9
|
+
.number()
|
|
10
|
+
.describe('ID of the site that the access point belongs to.'),
|
|
11
|
+
site_name: z
|
|
12
|
+
.string()
|
|
13
|
+
.describe('Name of the site that the access point belongs to.'),
|
|
14
|
+
})
|
|
15
|
+
.describe('Brivo-specific metadata associated with the entrance.')
|
|
16
|
+
|
|
17
|
+
export type AcsEntranceBrivoMetadata = z.infer<
|
|
18
|
+
typeof acs_entrance_brivo_metadata
|
|
19
|
+
>
|
|
@@ -173,6 +173,14 @@ export const portal_configuration_base = z.object({
|
|
|
173
173
|
})
|
|
174
174
|
|
|
175
175
|
export const portal_configuration = portal_configuration_base
|
|
176
|
+
.extend({
|
|
177
|
+
_dev: z.boolean().default(false).describe(`
|
|
178
|
+
---
|
|
179
|
+
undocumented: Internal developer mode flag.
|
|
180
|
+
---
|
|
181
|
+
Whether the portal is in developer mode. Only available for Seam employees.
|
|
182
|
+
`),
|
|
183
|
+
})
|
|
176
184
|
.default({
|
|
177
185
|
features: {
|
|
178
186
|
connect: { exclude: false },
|
|
@@ -3452,6 +3452,29 @@ export default {
|
|
|
3452
3452
|
required: ['door_type', 'door_name'],
|
|
3453
3453
|
type: 'object',
|
|
3454
3454
|
},
|
|
3455
|
+
brivo_metadata: {
|
|
3456
|
+
description:
|
|
3457
|
+
'Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
3458
|
+
properties: {
|
|
3459
|
+
access_point_id: {
|
|
3460
|
+
description:
|
|
3461
|
+
'ID of the access point in the Brivo access system.',
|
|
3462
|
+
type: 'string',
|
|
3463
|
+
},
|
|
3464
|
+
site_id: {
|
|
3465
|
+
description: 'ID of the site that the access point belongs to.',
|
|
3466
|
+
format: 'float',
|
|
3467
|
+
type: 'number',
|
|
3468
|
+
},
|
|
3469
|
+
site_name: {
|
|
3470
|
+
description:
|
|
3471
|
+
'Name of the site that the access point belongs to.',
|
|
3472
|
+
type: 'string',
|
|
3473
|
+
},
|
|
3474
|
+
},
|
|
3475
|
+
required: ['access_point_id', 'site_id', 'site_name'],
|
|
3476
|
+
type: 'object',
|
|
3477
|
+
},
|
|
3455
3478
|
can_belong_to_reservation: {
|
|
3456
3479
|
description:
|
|
3457
3480
|
'Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.',
|
|
@@ -23387,6 +23410,34 @@ export default {
|
|
|
23387
23410
|
required: ['door_type', 'door_name'],
|
|
23388
23411
|
type: 'object',
|
|
23389
23412
|
},
|
|
23413
|
+
brivo_metadata: {
|
|
23414
|
+
description:
|
|
23415
|
+
'Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
23416
|
+
properties: {
|
|
23417
|
+
access_point_id: {
|
|
23418
|
+
description:
|
|
23419
|
+
'ID of the access point in the Brivo access system.',
|
|
23420
|
+
type: 'string',
|
|
23421
|
+
},
|
|
23422
|
+
site_id: {
|
|
23423
|
+
description:
|
|
23424
|
+
'ID of the site that the access point belongs to.',
|
|
23425
|
+
format: 'float',
|
|
23426
|
+
type: 'number',
|
|
23427
|
+
},
|
|
23428
|
+
site_name: {
|
|
23429
|
+
description:
|
|
23430
|
+
'Name of the site that the access point belongs to.',
|
|
23431
|
+
type: 'string',
|
|
23432
|
+
},
|
|
23433
|
+
},
|
|
23434
|
+
required: [
|
|
23435
|
+
'access_point_id',
|
|
23436
|
+
'site_id',
|
|
23437
|
+
'site_name',
|
|
23438
|
+
],
|
|
23439
|
+
type: 'object',
|
|
23440
|
+
},
|
|
23390
23441
|
can_belong_to_reservation: {
|
|
23391
23442
|
description:
|
|
23392
23443
|
'Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.',
|
|
@@ -47937,6 +47988,13 @@ export default {
|
|
|
47937
47988
|
},
|
|
47938
47989
|
description: 'Configuration for a customer portal',
|
|
47939
47990
|
properties: {
|
|
47991
|
+
_dev: {
|
|
47992
|
+
default: false,
|
|
47993
|
+
description:
|
|
47994
|
+
'Whether the portal is in developer mode. Only available for Seam employees.',
|
|
47995
|
+
type: 'boolean',
|
|
47996
|
+
'x-undocumented': 'Internal developer mode flag.',
|
|
47997
|
+
},
|
|
47940
47998
|
customer_resources_filters: {
|
|
47941
47999
|
description:
|
|
47942
48000
|
'Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata.',
|
|
@@ -13615,6 +13615,17 @@ export type Routes = {
|
|
|
13615
13615
|
access_point_name: string
|
|
13616
13616
|
}
|
|
13617
13617
|
| undefined
|
|
13618
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
13619
|
+
brivo_metadata?:
|
|
13620
|
+
| {
|
|
13621
|
+
/** ID of the access point in the Brivo access system. */
|
|
13622
|
+
access_point_id: string
|
|
13623
|
+
/** ID of the site that the access point belongs to. */
|
|
13624
|
+
site_id: number
|
|
13625
|
+
/** Name of the site that the access point belongs to. */
|
|
13626
|
+
site_name: string
|
|
13627
|
+
}
|
|
13628
|
+
| undefined
|
|
13618
13629
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
13619
13630
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
13620
13631
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -18426,6 +18437,17 @@ export type Routes = {
|
|
|
18426
18437
|
access_point_name: string
|
|
18427
18438
|
}
|
|
18428
18439
|
| undefined
|
|
18440
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
18441
|
+
brivo_metadata?:
|
|
18442
|
+
| {
|
|
18443
|
+
/** ID of the access point in the Brivo access system. */
|
|
18444
|
+
access_point_id: string
|
|
18445
|
+
/** ID of the site that the access point belongs to. */
|
|
18446
|
+
site_id: number
|
|
18447
|
+
/** Name of the site that the access point belongs to. */
|
|
18448
|
+
site_name: string
|
|
18449
|
+
}
|
|
18450
|
+
| undefined
|
|
18429
18451
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
18430
18452
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
18431
18453
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -19653,6 +19675,17 @@ export type Routes = {
|
|
|
19653
19675
|
access_point_name: string
|
|
19654
19676
|
}
|
|
19655
19677
|
| undefined
|
|
19678
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19679
|
+
brivo_metadata?:
|
|
19680
|
+
| {
|
|
19681
|
+
/** ID of the access point in the Brivo access system. */
|
|
19682
|
+
access_point_id: string
|
|
19683
|
+
/** ID of the site that the access point belongs to. */
|
|
19684
|
+
site_id: number
|
|
19685
|
+
/** Name of the site that the access point belongs to. */
|
|
19686
|
+
site_name: string
|
|
19687
|
+
}
|
|
19688
|
+
| undefined
|
|
19656
19689
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
19657
19690
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
19658
19691
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -21336,6 +21369,17 @@ export type Routes = {
|
|
|
21336
21369
|
access_point_name: string
|
|
21337
21370
|
}
|
|
21338
21371
|
| undefined
|
|
21372
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21373
|
+
brivo_metadata?:
|
|
21374
|
+
| {
|
|
21375
|
+
/** ID of the access point in the Brivo access system. */
|
|
21376
|
+
access_point_id: string
|
|
21377
|
+
/** ID of the site that the access point belongs to. */
|
|
21378
|
+
site_id: number
|
|
21379
|
+
/** Name of the site that the access point belongs to. */
|
|
21380
|
+
site_name: string
|
|
21381
|
+
}
|
|
21382
|
+
| undefined
|
|
21339
21383
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
21340
21384
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
21341
21385
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -25370,6 +25414,17 @@ export type Routes = {
|
|
|
25370
25414
|
access_point_name: string
|
|
25371
25415
|
}
|
|
25372
25416
|
| undefined
|
|
25417
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25418
|
+
brivo_metadata?:
|
|
25419
|
+
| {
|
|
25420
|
+
/** ID of the access point in the Brivo access system. */
|
|
25421
|
+
access_point_id: string
|
|
25422
|
+
/** ID of the site that the access point belongs to. */
|
|
25423
|
+
site_id: number
|
|
25424
|
+
/** Name of the site that the access point belongs to. */
|
|
25425
|
+
site_name: string
|
|
25426
|
+
}
|
|
25427
|
+
| undefined
|
|
25373
25428
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
25374
25429
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
25375
25430
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -25567,6 +25622,17 @@ export type Routes = {
|
|
|
25567
25622
|
access_point_name: string
|
|
25568
25623
|
}
|
|
25569
25624
|
| undefined
|
|
25625
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25626
|
+
brivo_metadata?:
|
|
25627
|
+
| {
|
|
25628
|
+
/** ID of the access point in the Brivo access system. */
|
|
25629
|
+
access_point_id: string
|
|
25630
|
+
/** ID of the site that the access point belongs to. */
|
|
25631
|
+
site_id: number
|
|
25632
|
+
/** Name of the site that the access point belongs to. */
|
|
25633
|
+
site_name: string
|
|
25634
|
+
}
|
|
25635
|
+
| undefined
|
|
25570
25636
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
25571
25637
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
25572
25638
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -27421,6 +27487,17 @@ export type Routes = {
|
|
|
27421
27487
|
access_point_name: string
|
|
27422
27488
|
}
|
|
27423
27489
|
| undefined
|
|
27490
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27491
|
+
brivo_metadata?:
|
|
27492
|
+
| {
|
|
27493
|
+
/** ID of the access point in the Brivo access system. */
|
|
27494
|
+
access_point_id: string
|
|
27495
|
+
/** ID of the site that the access point belongs to. */
|
|
27496
|
+
site_id: number
|
|
27497
|
+
/** Name of the site that the access point belongs to. */
|
|
27498
|
+
site_name: string
|
|
27499
|
+
}
|
|
27500
|
+
| undefined
|
|
27424
27501
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
27425
27502
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
27426
27503
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -32472,6 +32549,8 @@ export type Routes = {
|
|
|
32472
32549
|
resource_key: string
|
|
32473
32550
|
}
|
|
32474
32551
|
| undefined
|
|
32552
|
+
/** Whether the portal is in developer mode. Only available for Seam employees. */
|
|
32553
|
+
_dev?: boolean
|
|
32475
32554
|
} & {
|
|
32476
32555
|
customer_data?:
|
|
32477
32556
|
| {
|
|
@@ -73375,6 +73454,17 @@ export type Routes = {
|
|
|
73375
73454
|
access_point_name: string
|
|
73376
73455
|
}
|
|
73377
73456
|
| undefined
|
|
73457
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
73458
|
+
brivo_metadata?:
|
|
73459
|
+
| {
|
|
73460
|
+
/** ID of the access point in the Brivo access system. */
|
|
73461
|
+
access_point_id: string
|
|
73462
|
+
/** ID of the site that the access point belongs to. */
|
|
73463
|
+
site_id: number
|
|
73464
|
+
/** Name of the site that the access point belongs to. */
|
|
73465
|
+
site_name: string
|
|
73466
|
+
}
|
|
73467
|
+
| undefined
|
|
73378
73468
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
73379
73469
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
73380
73470
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -75469,6 +75559,17 @@ export type Routes = {
|
|
|
75469
75559
|
access_point_name: string
|
|
75470
75560
|
}
|
|
75471
75561
|
| undefined
|
|
75562
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
75563
|
+
brivo_metadata?:
|
|
75564
|
+
| {
|
|
75565
|
+
/** ID of the access point in the Brivo access system. */
|
|
75566
|
+
access_point_id: string
|
|
75567
|
+
/** ID of the site that the access point belongs to. */
|
|
75568
|
+
site_id: number
|
|
75569
|
+
/** Name of the site that the access point belongs to. */
|
|
75570
|
+
site_name: string
|
|
75571
|
+
}
|
|
75572
|
+
| undefined
|
|
75472
75573
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
75473
75574
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
75474
75575
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -101463,6 +101564,17 @@ export type Routes = {
|
|
|
101463
101564
|
access_point_name: string
|
|
101464
101565
|
}
|
|
101465
101566
|
| undefined
|
|
101567
|
+
/** Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
101568
|
+
brivo_metadata?:
|
|
101569
|
+
| {
|
|
101570
|
+
/** ID of the access point in the Brivo access system. */
|
|
101571
|
+
access_point_id: string
|
|
101572
|
+
/** ID of the site that the access point belongs to. */
|
|
101573
|
+
site_id: number
|
|
101574
|
+
/** Name of the site that the access point belongs to. */
|
|
101575
|
+
site_name: string
|
|
101576
|
+
}
|
|
101577
|
+
| undefined
|
|
101466
101578
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
101467
101579
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
101468
101580
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|