@seamapi/types 1.828.0 → 1.830.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 +114 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +324 -32
- package/dist/index.cjs +114 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +43 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/avigilon-alta.d.ts +27 -0
- package/lib/seam/connect/models/acs/metadata/avigilon-alta.js +17 -0
- package/lib/seam/connect/models/acs/metadata/avigilon-alta.js.map +1 -0
- package/lib/seam/connect/models/batch.d.ts +71 -10
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
- package/lib/seam/connect/models/devices/device-provider.js +3 -2
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +176 -0
- package/lib/seam/connect/openapi.js +96 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +203 -16
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -1
- package/src/lib/seam/connect/models/acs/metadata/avigilon-alta.ts +21 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -2
- package/src/lib/seam/connect/openapi.ts +106 -2
- package/src/lib/seam/connect/route-types.ts +225 -14
|
@@ -4301,6 +4301,54 @@ const openapi: OpenAPISpec = {
|
|
|
4301
4301
|
required: ['door_type', 'door_name'],
|
|
4302
4302
|
type: 'object',
|
|
4303
4303
|
},
|
|
4304
|
+
avigilon_alta_metadata: {
|
|
4305
|
+
description:
|
|
4306
|
+
'Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
4307
|
+
properties: {
|
|
4308
|
+
entry_name: {
|
|
4309
|
+
description: 'Entry name for an Avigilon Alta system.',
|
|
4310
|
+
type: 'string',
|
|
4311
|
+
},
|
|
4312
|
+
entry_relays_total_count: {
|
|
4313
|
+
description:
|
|
4314
|
+
'Total count of entry relays for an Avigilon Alta system.',
|
|
4315
|
+
format: 'float',
|
|
4316
|
+
type: 'number',
|
|
4317
|
+
},
|
|
4318
|
+
org_name: {
|
|
4319
|
+
description: 'Organization name for an Avigilon Alta system.',
|
|
4320
|
+
type: 'string',
|
|
4321
|
+
},
|
|
4322
|
+
site_id: {
|
|
4323
|
+
description: 'Site ID for an Avigilon Alta system.',
|
|
4324
|
+
format: 'float',
|
|
4325
|
+
type: 'number',
|
|
4326
|
+
},
|
|
4327
|
+
site_name: {
|
|
4328
|
+
description: 'Site name for an Avigilon Alta system.',
|
|
4329
|
+
type: 'string',
|
|
4330
|
+
},
|
|
4331
|
+
zone_id: {
|
|
4332
|
+
description: 'Zone ID for an Avigilon Alta system.',
|
|
4333
|
+
format: 'float',
|
|
4334
|
+
type: 'number',
|
|
4335
|
+
},
|
|
4336
|
+
zone_name: {
|
|
4337
|
+
description: 'Zone name for an Avigilon Alta system.',
|
|
4338
|
+
type: 'string',
|
|
4339
|
+
},
|
|
4340
|
+
},
|
|
4341
|
+
required: [
|
|
4342
|
+
'entry_name',
|
|
4343
|
+
'org_name',
|
|
4344
|
+
'zone_id',
|
|
4345
|
+
'zone_name',
|
|
4346
|
+
'site_id',
|
|
4347
|
+
'site_name',
|
|
4348
|
+
'entry_relays_total_count',
|
|
4349
|
+
],
|
|
4350
|
+
type: 'object',
|
|
4351
|
+
},
|
|
4304
4352
|
brivo_metadata: {
|
|
4305
4353
|
description:
|
|
4306
4354
|
'Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
@@ -4846,7 +4894,7 @@ const openapi: OpenAPISpec = {
|
|
|
4846
4894
|
'Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type.',
|
|
4847
4895
|
enum: [
|
|
4848
4896
|
'pti_site',
|
|
4849
|
-
'
|
|
4897
|
+
'avigilon_alta_org',
|
|
4850
4898
|
'salto_ks_site',
|
|
4851
4899
|
'salto_space_system',
|
|
4852
4900
|
'brivo_account',
|
|
@@ -4904,7 +4952,7 @@ const openapi: OpenAPISpec = {
|
|
|
4904
4952
|
deprecated: true,
|
|
4905
4953
|
enum: [
|
|
4906
4954
|
'pti_site',
|
|
4907
|
-
'
|
|
4955
|
+
'avigilon_alta_org',
|
|
4908
4956
|
'salto_ks_site',
|
|
4909
4957
|
'salto_space_system',
|
|
4910
4958
|
'brivo_account',
|
|
@@ -15649,6 +15697,7 @@ const openapi: OpenAPISpec = {
|
|
|
15649
15697
|
'assa_abloy_credential_service',
|
|
15650
15698
|
'tedee',
|
|
15651
15699
|
'honeywell_resideo',
|
|
15700
|
+
'first_alert',
|
|
15652
15701
|
'latch',
|
|
15653
15702
|
'akiles',
|
|
15654
15703
|
'assa_abloy_vostio',
|
|
@@ -24895,6 +24944,60 @@ const openapi: OpenAPISpec = {
|
|
|
24895
24944
|
required: ['door_type', 'door_name'],
|
|
24896
24945
|
type: 'object',
|
|
24897
24946
|
},
|
|
24947
|
+
avigilon_alta_metadata: {
|
|
24948
|
+
description:
|
|
24949
|
+
'Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
24950
|
+
properties: {
|
|
24951
|
+
entry_name: {
|
|
24952
|
+
description:
|
|
24953
|
+
'Entry name for an Avigilon Alta system.',
|
|
24954
|
+
type: 'string',
|
|
24955
|
+
},
|
|
24956
|
+
entry_relays_total_count: {
|
|
24957
|
+
description:
|
|
24958
|
+
'Total count of entry relays for an Avigilon Alta system.',
|
|
24959
|
+
format: 'float',
|
|
24960
|
+
type: 'number',
|
|
24961
|
+
},
|
|
24962
|
+
org_name: {
|
|
24963
|
+
description:
|
|
24964
|
+
'Organization name for an Avigilon Alta system.',
|
|
24965
|
+
type: 'string',
|
|
24966
|
+
},
|
|
24967
|
+
site_id: {
|
|
24968
|
+
description:
|
|
24969
|
+
'Site ID for an Avigilon Alta system.',
|
|
24970
|
+
format: 'float',
|
|
24971
|
+
type: 'number',
|
|
24972
|
+
},
|
|
24973
|
+
site_name: {
|
|
24974
|
+
description:
|
|
24975
|
+
'Site name for an Avigilon Alta system.',
|
|
24976
|
+
type: 'string',
|
|
24977
|
+
},
|
|
24978
|
+
zone_id: {
|
|
24979
|
+
description:
|
|
24980
|
+
'Zone ID for an Avigilon Alta system.',
|
|
24981
|
+
format: 'float',
|
|
24982
|
+
type: 'number',
|
|
24983
|
+
},
|
|
24984
|
+
zone_name: {
|
|
24985
|
+
description:
|
|
24986
|
+
'Zone name for an Avigilon Alta system.',
|
|
24987
|
+
type: 'string',
|
|
24988
|
+
},
|
|
24989
|
+
},
|
|
24990
|
+
required: [
|
|
24991
|
+
'entry_name',
|
|
24992
|
+
'org_name',
|
|
24993
|
+
'zone_id',
|
|
24994
|
+
'zone_name',
|
|
24995
|
+
'site_id',
|
|
24996
|
+
'site_name',
|
|
24997
|
+
'entry_relays_total_count',
|
|
24998
|
+
],
|
|
24999
|
+
type: 'object',
|
|
25000
|
+
},
|
|
24898
25001
|
brivo_metadata: {
|
|
24899
25002
|
description:
|
|
24900
25003
|
'Brivo-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
@@ -49486,6 +49589,7 @@ const openapi: OpenAPISpec = {
|
|
|
49486
49589
|
'assa_abloy_credential_service',
|
|
49487
49590
|
'tedee',
|
|
49488
49591
|
'honeywell_resideo',
|
|
49592
|
+
'first_alert',
|
|
49489
49593
|
'latch',
|
|
49490
49594
|
'akiles',
|
|
49491
49595
|
'assa_abloy_vostio',
|
|
@@ -14779,6 +14779,25 @@ export type Routes = {
|
|
|
14779
14779
|
site_name: string
|
|
14780
14780
|
}
|
|
14781
14781
|
| undefined
|
|
14782
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14783
|
+
avigilon_alta_metadata?:
|
|
14784
|
+
| {
|
|
14785
|
+
/** Entry name for an Avigilon Alta system. */
|
|
14786
|
+
entry_name: string
|
|
14787
|
+
/** Organization name for an Avigilon Alta system. */
|
|
14788
|
+
org_name: string
|
|
14789
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
14790
|
+
zone_id: number
|
|
14791
|
+
/** Zone name for an Avigilon Alta system. */
|
|
14792
|
+
zone_name: string
|
|
14793
|
+
/** Site ID for an Avigilon Alta system. */
|
|
14794
|
+
site_id: number
|
|
14795
|
+
/** Site name for an Avigilon Alta system. */
|
|
14796
|
+
site_name: string
|
|
14797
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
14798
|
+
entry_relays_total_count: number
|
|
14799
|
+
}
|
|
14800
|
+
| undefined
|
|
14782
14801
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
14783
14802
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
14784
14803
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -14963,7 +14982,7 @@ export type Routes = {
|
|
|
14963
14982
|
external_type?:
|
|
14964
14983
|
| (
|
|
14965
14984
|
| 'pti_site'
|
|
14966
|
-
| '
|
|
14985
|
+
| 'avigilon_alta_org'
|
|
14967
14986
|
| 'salto_ks_site'
|
|
14968
14987
|
| 'salto_space_system'
|
|
14969
14988
|
| 'brivo_account'
|
|
@@ -14998,7 +15017,7 @@ export type Routes = {
|
|
|
14998
15017
|
system_type?:
|
|
14999
15018
|
| (
|
|
15000
15019
|
| 'pti_site'
|
|
15001
|
-
| '
|
|
15020
|
+
| 'avigilon_alta_org'
|
|
15002
15021
|
| 'salto_ks_site'
|
|
15003
15022
|
| 'salto_space_system'
|
|
15004
15023
|
| 'brivo_account'
|
|
@@ -20025,6 +20044,25 @@ export type Routes = {
|
|
|
20025
20044
|
site_name: string
|
|
20026
20045
|
}
|
|
20027
20046
|
| undefined
|
|
20047
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
20048
|
+
avigilon_alta_metadata?:
|
|
20049
|
+
| {
|
|
20050
|
+
/** Entry name for an Avigilon Alta system. */
|
|
20051
|
+
entry_name: string
|
|
20052
|
+
/** Organization name for an Avigilon Alta system. */
|
|
20053
|
+
org_name: string
|
|
20054
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
20055
|
+
zone_id: number
|
|
20056
|
+
/** Zone name for an Avigilon Alta system. */
|
|
20057
|
+
zone_name: string
|
|
20058
|
+
/** Site ID for an Avigilon Alta system. */
|
|
20059
|
+
site_id: number
|
|
20060
|
+
/** Site name for an Avigilon Alta system. */
|
|
20061
|
+
site_name: string
|
|
20062
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
20063
|
+
entry_relays_total_count: number
|
|
20064
|
+
}
|
|
20065
|
+
| undefined
|
|
20028
20066
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
20029
20067
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
20030
20068
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -21593,6 +21631,25 @@ export type Routes = {
|
|
|
21593
21631
|
site_name: string
|
|
21594
21632
|
}
|
|
21595
21633
|
| undefined
|
|
21634
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21635
|
+
avigilon_alta_metadata?:
|
|
21636
|
+
| {
|
|
21637
|
+
/** Entry name for an Avigilon Alta system. */
|
|
21638
|
+
entry_name: string
|
|
21639
|
+
/** Organization name for an Avigilon Alta system. */
|
|
21640
|
+
org_name: string
|
|
21641
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
21642
|
+
zone_id: number
|
|
21643
|
+
/** Zone name for an Avigilon Alta system. */
|
|
21644
|
+
zone_name: string
|
|
21645
|
+
/** Site ID for an Avigilon Alta system. */
|
|
21646
|
+
site_id: number
|
|
21647
|
+
/** Site name for an Avigilon Alta system. */
|
|
21648
|
+
site_name: string
|
|
21649
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
21650
|
+
entry_relays_total_count: number
|
|
21651
|
+
}
|
|
21652
|
+
| undefined
|
|
21596
21653
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
21597
21654
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
21598
21655
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -23549,6 +23606,25 @@ export type Routes = {
|
|
|
23549
23606
|
site_name: string
|
|
23550
23607
|
}
|
|
23551
23608
|
| undefined
|
|
23609
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23610
|
+
avigilon_alta_metadata?:
|
|
23611
|
+
| {
|
|
23612
|
+
/** Entry name for an Avigilon Alta system. */
|
|
23613
|
+
entry_name: string
|
|
23614
|
+
/** Organization name for an Avigilon Alta system. */
|
|
23615
|
+
org_name: string
|
|
23616
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
23617
|
+
zone_id: number
|
|
23618
|
+
/** Zone name for an Avigilon Alta system. */
|
|
23619
|
+
zone_name: string
|
|
23620
|
+
/** Site ID for an Avigilon Alta system. */
|
|
23621
|
+
site_id: number
|
|
23622
|
+
/** Site name for an Avigilon Alta system. */
|
|
23623
|
+
site_name: string
|
|
23624
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
23625
|
+
entry_relays_total_count: number
|
|
23626
|
+
}
|
|
23627
|
+
| undefined
|
|
23552
23628
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
23553
23629
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
23554
23630
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -27760,6 +27836,25 @@ export type Routes = {
|
|
|
27760
27836
|
site_name: string
|
|
27761
27837
|
}
|
|
27762
27838
|
| undefined
|
|
27839
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27840
|
+
avigilon_alta_metadata?:
|
|
27841
|
+
| {
|
|
27842
|
+
/** Entry name for an Avigilon Alta system. */
|
|
27843
|
+
entry_name: string
|
|
27844
|
+
/** Organization name for an Avigilon Alta system. */
|
|
27845
|
+
org_name: string
|
|
27846
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
27847
|
+
zone_id: number
|
|
27848
|
+
/** Zone name for an Avigilon Alta system. */
|
|
27849
|
+
zone_name: string
|
|
27850
|
+
/** Site ID for an Avigilon Alta system. */
|
|
27851
|
+
site_id: number
|
|
27852
|
+
/** Site name for an Avigilon Alta system. */
|
|
27853
|
+
site_name: string
|
|
27854
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
27855
|
+
entry_relays_total_count: number
|
|
27856
|
+
}
|
|
27857
|
+
| undefined
|
|
27763
27858
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
27764
27859
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
27765
27860
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -27970,6 +28065,25 @@ export type Routes = {
|
|
|
27970
28065
|
site_name: string
|
|
27971
28066
|
}
|
|
27972
28067
|
| undefined
|
|
28068
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28069
|
+
avigilon_alta_metadata?:
|
|
28070
|
+
| {
|
|
28071
|
+
/** Entry name for an Avigilon Alta system. */
|
|
28072
|
+
entry_name: string
|
|
28073
|
+
/** Organization name for an Avigilon Alta system. */
|
|
28074
|
+
org_name: string
|
|
28075
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
28076
|
+
zone_id: number
|
|
28077
|
+
/** Zone name for an Avigilon Alta system. */
|
|
28078
|
+
zone_name: string
|
|
28079
|
+
/** Site ID for an Avigilon Alta system. */
|
|
28080
|
+
site_id: number
|
|
28081
|
+
/** Site name for an Avigilon Alta system. */
|
|
28082
|
+
site_name: string
|
|
28083
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
28084
|
+
entry_relays_total_count: number
|
|
28085
|
+
}
|
|
28086
|
+
| undefined
|
|
27973
28087
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
27974
28088
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
27975
28089
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -29745,7 +29859,7 @@ export type Routes = {
|
|
|
29745
29859
|
external_type?:
|
|
29746
29860
|
| (
|
|
29747
29861
|
| 'pti_site'
|
|
29748
|
-
| '
|
|
29862
|
+
| 'avigilon_alta_org'
|
|
29749
29863
|
| 'salto_ks_site'
|
|
29750
29864
|
| 'salto_space_system'
|
|
29751
29865
|
| 'brivo_account'
|
|
@@ -29780,7 +29894,7 @@ export type Routes = {
|
|
|
29780
29894
|
system_type?:
|
|
29781
29895
|
| (
|
|
29782
29896
|
| 'pti_site'
|
|
29783
|
-
| '
|
|
29897
|
+
| 'avigilon_alta_org'
|
|
29784
29898
|
| 'salto_ks_site'
|
|
29785
29899
|
| 'salto_space_system'
|
|
29786
29900
|
| 'brivo_account'
|
|
@@ -29930,7 +30044,7 @@ export type Routes = {
|
|
|
29930
30044
|
external_type?:
|
|
29931
30045
|
| (
|
|
29932
30046
|
| 'pti_site'
|
|
29933
|
-
| '
|
|
30047
|
+
| 'avigilon_alta_org'
|
|
29934
30048
|
| 'salto_ks_site'
|
|
29935
30049
|
| 'salto_space_system'
|
|
29936
30050
|
| 'brivo_account'
|
|
@@ -29965,7 +30079,7 @@ export type Routes = {
|
|
|
29965
30079
|
system_type?:
|
|
29966
30080
|
| (
|
|
29967
30081
|
| 'pti_site'
|
|
29968
|
-
| '
|
|
30082
|
+
| 'avigilon_alta_org'
|
|
29969
30083
|
| 'salto_ks_site'
|
|
29970
30084
|
| 'salto_space_system'
|
|
29971
30085
|
| 'brivo_account'
|
|
@@ -30111,7 +30225,7 @@ export type Routes = {
|
|
|
30111
30225
|
external_type?:
|
|
30112
30226
|
| (
|
|
30113
30227
|
| 'pti_site'
|
|
30114
|
-
| '
|
|
30228
|
+
| 'avigilon_alta_org'
|
|
30115
30229
|
| 'salto_ks_site'
|
|
30116
30230
|
| 'salto_space_system'
|
|
30117
30231
|
| 'brivo_account'
|
|
@@ -30146,7 +30260,7 @@ export type Routes = {
|
|
|
30146
30260
|
system_type?:
|
|
30147
30261
|
| (
|
|
30148
30262
|
| 'pti_site'
|
|
30149
|
-
| '
|
|
30263
|
+
| 'avigilon_alta_org'
|
|
30150
30264
|
| 'salto_ks_site'
|
|
30151
30265
|
| 'salto_space_system'
|
|
30152
30266
|
| 'brivo_account'
|
|
@@ -31423,6 +31537,25 @@ export type Routes = {
|
|
|
31423
31537
|
site_name: string
|
|
31424
31538
|
}
|
|
31425
31539
|
| undefined
|
|
31540
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31541
|
+
avigilon_alta_metadata?:
|
|
31542
|
+
| {
|
|
31543
|
+
/** Entry name for an Avigilon Alta system. */
|
|
31544
|
+
entry_name: string
|
|
31545
|
+
/** Organization name for an Avigilon Alta system. */
|
|
31546
|
+
org_name: string
|
|
31547
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
31548
|
+
zone_id: number
|
|
31549
|
+
/** Zone name for an Avigilon Alta system. */
|
|
31550
|
+
zone_name: string
|
|
31551
|
+
/** Site ID for an Avigilon Alta system. */
|
|
31552
|
+
site_id: number
|
|
31553
|
+
/** Site name for an Avigilon Alta system. */
|
|
31554
|
+
site_name: string
|
|
31555
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
31556
|
+
entry_relays_total_count: number
|
|
31557
|
+
}
|
|
31558
|
+
| undefined
|
|
31426
31559
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
31427
31560
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
31428
31561
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -35640,6 +35773,7 @@ export type Routes = {
|
|
|
35640
35773
|
| 'assa_abloy_credential_service'
|
|
35641
35774
|
| 'tedee'
|
|
35642
35775
|
| 'honeywell_resideo'
|
|
35776
|
+
| 'first_alert'
|
|
35643
35777
|
| 'latch'
|
|
35644
35778
|
| 'akiles'
|
|
35645
35779
|
| 'assa_abloy_vostio'
|
|
@@ -41134,6 +41268,7 @@ export type Routes = {
|
|
|
41134
41268
|
| 'assa_abloy_credential_service'
|
|
41135
41269
|
| 'tedee'
|
|
41136
41270
|
| 'honeywell_resideo'
|
|
41271
|
+
| 'first_alert'
|
|
41137
41272
|
| 'latch'
|
|
41138
41273
|
| 'akiles'
|
|
41139
41274
|
| 'assa_abloy_vostio'
|
|
@@ -81874,6 +82009,25 @@ export type Routes = {
|
|
|
81874
82009
|
site_name: string
|
|
81875
82010
|
}
|
|
81876
82011
|
| undefined
|
|
82012
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
82013
|
+
avigilon_alta_metadata?:
|
|
82014
|
+
| {
|
|
82015
|
+
/** Entry name for an Avigilon Alta system. */
|
|
82016
|
+
entry_name: string
|
|
82017
|
+
/** Organization name for an Avigilon Alta system. */
|
|
82018
|
+
org_name: string
|
|
82019
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
82020
|
+
zone_id: number
|
|
82021
|
+
/** Zone name for an Avigilon Alta system. */
|
|
82022
|
+
zone_name: string
|
|
82023
|
+
/** Site ID for an Avigilon Alta system. */
|
|
82024
|
+
site_id: number
|
|
82025
|
+
/** Site name for an Avigilon Alta system. */
|
|
82026
|
+
site_name: string
|
|
82027
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
82028
|
+
entry_relays_total_count: number
|
|
82029
|
+
}
|
|
82030
|
+
| undefined
|
|
81877
82031
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
81878
82032
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
81879
82033
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -84088,6 +84242,25 @@ export type Routes = {
|
|
|
84088
84242
|
site_name: string
|
|
84089
84243
|
}
|
|
84090
84244
|
| undefined
|
|
84245
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84246
|
+
avigilon_alta_metadata?:
|
|
84247
|
+
| {
|
|
84248
|
+
/** Entry name for an Avigilon Alta system. */
|
|
84249
|
+
entry_name: string
|
|
84250
|
+
/** Organization name for an Avigilon Alta system. */
|
|
84251
|
+
org_name: string
|
|
84252
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
84253
|
+
zone_id: number
|
|
84254
|
+
/** Zone name for an Avigilon Alta system. */
|
|
84255
|
+
zone_name: string
|
|
84256
|
+
/** Site ID for an Avigilon Alta system. */
|
|
84257
|
+
site_id: number
|
|
84258
|
+
/** Site name for an Avigilon Alta system. */
|
|
84259
|
+
site_name: string
|
|
84260
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
84261
|
+
entry_relays_total_count: number
|
|
84262
|
+
}
|
|
84263
|
+
| undefined
|
|
84091
84264
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
84092
84265
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
84093
84266
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -84272,7 +84445,7 @@ export type Routes = {
|
|
|
84272
84445
|
external_type?:
|
|
84273
84446
|
| (
|
|
84274
84447
|
| 'pti_site'
|
|
84275
|
-
| '
|
|
84448
|
+
| 'avigilon_alta_org'
|
|
84276
84449
|
| 'salto_ks_site'
|
|
84277
84450
|
| 'salto_space_system'
|
|
84278
84451
|
| 'brivo_account'
|
|
@@ -84307,7 +84480,7 @@ export type Routes = {
|
|
|
84307
84480
|
system_type?:
|
|
84308
84481
|
| (
|
|
84309
84482
|
| 'pti_site'
|
|
84310
|
-
| '
|
|
84483
|
+
| 'avigilon_alta_org'
|
|
84311
84484
|
| 'salto_ks_site'
|
|
84312
84485
|
| 'salto_space_system'
|
|
84313
84486
|
| 'brivo_account'
|
|
@@ -108402,6 +108575,25 @@ export type Routes = {
|
|
|
108402
108575
|
site_name: string
|
|
108403
108576
|
}
|
|
108404
108577
|
| undefined
|
|
108578
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
108579
|
+
avigilon_alta_metadata?:
|
|
108580
|
+
| {
|
|
108581
|
+
/** Entry name for an Avigilon Alta system. */
|
|
108582
|
+
entry_name: string
|
|
108583
|
+
/** Organization name for an Avigilon Alta system. */
|
|
108584
|
+
org_name: string
|
|
108585
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
108586
|
+
zone_id: number
|
|
108587
|
+
/** Zone name for an Avigilon Alta system. */
|
|
108588
|
+
zone_name: string
|
|
108589
|
+
/** Site ID for an Avigilon Alta system. */
|
|
108590
|
+
site_id: number
|
|
108591
|
+
/** Site name for an Avigilon Alta system. */
|
|
108592
|
+
site_name: string
|
|
108593
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
108594
|
+
entry_relays_total_count: number
|
|
108595
|
+
}
|
|
108596
|
+
| undefined
|
|
108405
108597
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
108406
108598
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
108407
108599
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -108438,7 +108630,7 @@ export type Routes = {
|
|
|
108438
108630
|
external_type?:
|
|
108439
108631
|
| (
|
|
108440
108632
|
| 'pti_site'
|
|
108441
|
-
| '
|
|
108633
|
+
| 'avigilon_alta_org'
|
|
108442
108634
|
| 'salto_ks_site'
|
|
108443
108635
|
| 'salto_space_system'
|
|
108444
108636
|
| 'brivo_account'
|
|
@@ -108473,7 +108665,7 @@ export type Routes = {
|
|
|
108473
108665
|
system_type?:
|
|
108474
108666
|
| (
|
|
108475
108667
|
| 'pti_site'
|
|
108476
|
-
| '
|
|
108668
|
+
| 'avigilon_alta_org'
|
|
108477
108669
|
| 'salto_ks_site'
|
|
108478
108670
|
| 'salto_space_system'
|
|
108479
108671
|
| 'brivo_account'
|
|
@@ -111345,6 +111537,25 @@ export type Routes = {
|
|
|
111345
111537
|
site_name: string
|
|
111346
111538
|
}
|
|
111347
111539
|
| undefined
|
|
111540
|
+
/** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111541
|
+
avigilon_alta_metadata?:
|
|
111542
|
+
| {
|
|
111543
|
+
/** Entry name for an Avigilon Alta system. */
|
|
111544
|
+
entry_name: string
|
|
111545
|
+
/** Organization name for an Avigilon Alta system. */
|
|
111546
|
+
org_name: string
|
|
111547
|
+
/** Zone ID for an Avigilon Alta system. */
|
|
111548
|
+
zone_id: number
|
|
111549
|
+
/** Zone name for an Avigilon Alta system. */
|
|
111550
|
+
zone_name: string
|
|
111551
|
+
/** Site ID for an Avigilon Alta system. */
|
|
111552
|
+
site_id: number
|
|
111553
|
+
/** Site name for an Avigilon Alta system. */
|
|
111554
|
+
site_name: string
|
|
111555
|
+
/** Total count of entry relays for an Avigilon Alta system. */
|
|
111556
|
+
entry_relays_total_count: number
|
|
111557
|
+
}
|
|
111558
|
+
| undefined
|
|
111348
111559
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
111349
111560
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
111350
111561
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -111371,7 +111582,7 @@ export type Routes = {
|
|
|
111371
111582
|
external_type?:
|
|
111372
111583
|
| (
|
|
111373
111584
|
| 'pti_site'
|
|
111374
|
-
| '
|
|
111585
|
+
| 'avigilon_alta_org'
|
|
111375
111586
|
| 'salto_ks_site'
|
|
111376
111587
|
| 'salto_space_system'
|
|
111377
111588
|
| 'brivo_account'
|
|
@@ -111406,7 +111617,7 @@ export type Routes = {
|
|
|
111406
111617
|
system_type?:
|
|
111407
111618
|
| (
|
|
111408
111619
|
| 'pti_site'
|
|
111409
|
-
| '
|
|
111620
|
+
| 'avigilon_alta_org'
|
|
111410
111621
|
| 'salto_ks_site'
|
|
111411
111622
|
| 'salto_space_system'
|
|
111412
111623
|
| 'brivo_account'
|