@seamapi/types 1.827.0 → 1.829.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.
Files changed (34) hide show
  1. package/dist/connect.cjs +147 -5
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +371 -30
  4. package/dist/index.cjs +147 -5
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-grants/access-grant.d.ts +18 -0
  7. package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
  8. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-entrance.d.ts +43 -0
  10. package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
  11. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  13. package/lib/seam/connect/models/acs/acs-system.js +1 -1
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/acs/metadata/avigilon-alta.d.ts +27 -0
  16. package/lib/seam/connect/models/acs/metadata/avigilon-alta.js +17 -0
  17. package/lib/seam/connect/models/acs/metadata/avigilon-alta.js.map +1 -0
  18. package/lib/seam/connect/models/batch.d.ts +83 -10
  19. package/lib/seam/connect/models/events/access-grants.d.ts +6 -0
  20. package/lib/seam/connect/models/events/access-grants.js +4 -0
  21. package/lib/seam/connect/models/events/access-grants.js.map +1 -1
  22. package/lib/seam/connect/models/events/seam-event.d.ts +3 -0
  23. package/lib/seam/connect/models/phones/phone-session.d.ts +176 -0
  24. package/lib/seam/connect/openapi.js +124 -2
  25. package/lib/seam/connect/openapi.js.map +1 -1
  26. package/lib/seam/connect/route-types.d.ts +231 -14
  27. package/package.json +1 -1
  28. package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -0
  29. package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
  30. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -1
  31. package/src/lib/seam/connect/models/acs/metadata/avigilon-alta.ts +21 -0
  32. package/src/lib/seam/connect/models/events/access-grants.ts +6 -0
  33. package/src/lib/seam/connect/openapi.ts +140 -2
  34. package/src/lib/seam/connect/route-types.ts +253 -14
@@ -12581,6 +12581,8 @@ export type Routes = {
12581
12581
  message: string
12582
12582
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12583
12583
  error_code: 'cannot_create_requested_access_methods'
12584
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
12585
+ missing_device_ids?: string[] | undefined
12584
12586
  }[]
12585
12587
  /** ID of the customization profile associated with the Access Grant. */
12586
12588
  customization_profile_id?: string | undefined
@@ -12807,6 +12809,8 @@ export type Routes = {
12807
12809
  message: string
12808
12810
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12809
12811
  error_code: 'cannot_create_requested_access_methods'
12812
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
12813
+ missing_device_ids?: string[] | undefined
12810
12814
  }[]
12811
12815
  /** ID of the customization profile associated with the Access Grant. */
12812
12816
  customization_profile_id?: string | undefined
@@ -14775,6 +14779,25 @@ export type Routes = {
14775
14779
  site_name: string
14776
14780
  }
14777
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
14778
14801
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
14779
14802
  can_unlock_with_mobile_key?: boolean | undefined
14780
14803
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -14959,7 +14982,7 @@ export type Routes = {
14959
14982
  external_type?:
14960
14983
  | (
14961
14984
  | 'pti_site'
14962
- | 'alta_org'
14985
+ | 'avigilon_alta_org'
14963
14986
  | 'salto_ks_site'
14964
14987
  | 'salto_space_system'
14965
14988
  | 'brivo_account'
@@ -14994,7 +15017,7 @@ export type Routes = {
14994
15017
  system_type?:
14995
15018
  | (
14996
15019
  | 'pti_site'
14997
- | 'alta_org'
15020
+ | 'avigilon_alta_org'
14998
15021
  | 'salto_ks_site'
14999
15022
  | 'salto_space_system'
15000
15023
  | 'brivo_account'
@@ -15662,6 +15685,8 @@ export type Routes = {
15662
15685
  message: string
15663
15686
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
15664
15687
  error_code: 'cannot_create_requested_access_methods'
15688
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
15689
+ missing_device_ids?: string[] | undefined
15665
15690
  }[]
15666
15691
  /** ID of the customization profile associated with the Access Grant. */
15667
15692
  customization_profile_id?: string | undefined
@@ -15888,6 +15913,8 @@ export type Routes = {
15888
15913
  message: string
15889
15914
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
15890
15915
  error_code: 'cannot_create_requested_access_methods'
15916
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
15917
+ missing_device_ids?: string[] | undefined
15891
15918
  }[]
15892
15919
  /** ID of the customization profile associated with the Access Grant. */
15893
15920
  customization_profile_id?: string | undefined
@@ -16088,6 +16115,8 @@ export type Routes = {
16088
16115
  message: string
16089
16116
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
16090
16117
  error_code: 'cannot_create_requested_access_methods'
16118
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
16119
+ missing_device_ids?: string[] | undefined
16091
16120
  }[]
16092
16121
  /** List of pending mutations for the access grant. This shows updates that are in progress. */
16093
16122
  pending_mutations: (
@@ -16297,6 +16326,8 @@ export type Routes = {
16297
16326
  message: string
16298
16327
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
16299
16328
  error_code: 'cannot_create_requested_access_methods'
16329
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
16330
+ missing_device_ids?: string[] | undefined
16300
16331
  }[]
16301
16332
  /** List of pending mutations for the access grant. This shows updates that are in progress. */
16302
16333
  pending_mutations: (
@@ -20013,6 +20044,25 @@ export type Routes = {
20013
20044
  site_name: string
20014
20045
  }
20015
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
20016
20066
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
20017
20067
  can_unlock_with_mobile_key?: boolean | undefined
20018
20068
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -20168,6 +20218,8 @@ export type Routes = {
20168
20218
  message: string
20169
20219
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
20170
20220
  error_code: 'cannot_create_requested_access_methods'
20221
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
20222
+ missing_device_ids?: string[] | undefined
20171
20223
  }[]
20172
20224
  /** ID of the customization profile associated with the Access Grant. */
20173
20225
  customization_profile_id?: string | undefined
@@ -21579,6 +21631,25 @@ export type Routes = {
21579
21631
  site_name: string
21580
21632
  }
21581
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
21582
21653
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
21583
21654
  can_unlock_with_mobile_key?: boolean | undefined
21584
21655
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -23535,6 +23606,25 @@ export type Routes = {
23535
23606
  site_name: string
23536
23607
  }
23537
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
23538
23628
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
23539
23629
  can_unlock_with_mobile_key?: boolean | undefined
23540
23630
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -27746,6 +27836,25 @@ export type Routes = {
27746
27836
  site_name: string
27747
27837
  }
27748
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
27749
27858
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
27750
27859
  can_unlock_with_mobile_key?: boolean | undefined
27751
27860
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -27956,6 +28065,25 @@ export type Routes = {
27956
28065
  site_name: string
27957
28066
  }
27958
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
27959
28087
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
27960
28088
  can_unlock_with_mobile_key?: boolean | undefined
27961
28089
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -29731,7 +29859,7 @@ export type Routes = {
29731
29859
  external_type?:
29732
29860
  | (
29733
29861
  | 'pti_site'
29734
- | 'alta_org'
29862
+ | 'avigilon_alta_org'
29735
29863
  | 'salto_ks_site'
29736
29864
  | 'salto_space_system'
29737
29865
  | 'brivo_account'
@@ -29766,7 +29894,7 @@ export type Routes = {
29766
29894
  system_type?:
29767
29895
  | (
29768
29896
  | 'pti_site'
29769
- | 'alta_org'
29897
+ | 'avigilon_alta_org'
29770
29898
  | 'salto_ks_site'
29771
29899
  | 'salto_space_system'
29772
29900
  | 'brivo_account'
@@ -29916,7 +30044,7 @@ export type Routes = {
29916
30044
  external_type?:
29917
30045
  | (
29918
30046
  | 'pti_site'
29919
- | 'alta_org'
30047
+ | 'avigilon_alta_org'
29920
30048
  | 'salto_ks_site'
29921
30049
  | 'salto_space_system'
29922
30050
  | 'brivo_account'
@@ -29951,7 +30079,7 @@ export type Routes = {
29951
30079
  system_type?:
29952
30080
  | (
29953
30081
  | 'pti_site'
29954
- | 'alta_org'
30082
+ | 'avigilon_alta_org'
29955
30083
  | 'salto_ks_site'
29956
30084
  | 'salto_space_system'
29957
30085
  | 'brivo_account'
@@ -30097,7 +30225,7 @@ export type Routes = {
30097
30225
  external_type?:
30098
30226
  | (
30099
30227
  | 'pti_site'
30100
- | 'alta_org'
30228
+ | 'avigilon_alta_org'
30101
30229
  | 'salto_ks_site'
30102
30230
  | 'salto_space_system'
30103
30231
  | 'brivo_account'
@@ -30132,7 +30260,7 @@ export type Routes = {
30132
30260
  system_type?:
30133
30261
  | (
30134
30262
  | 'pti_site'
30135
- | 'alta_org'
30263
+ | 'avigilon_alta_org'
30136
30264
  | 'salto_ks_site'
30137
30265
  | 'salto_space_system'
30138
30266
  | 'brivo_account'
@@ -31409,6 +31537,25 @@ export type Routes = {
31409
31537
  site_name: string
31410
31538
  }
31411
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
31412
31559
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
31413
31560
  can_unlock_with_mobile_key?: boolean | undefined
31414
31561
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -44416,6 +44563,8 @@ export type Routes = {
44416
44563
  event_type: 'access_grant.could_not_create_requested_access_methods'
44417
44564
  /** Description of why the access methods could not be created. */
44418
44565
  error_message: string
44566
+ /** IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant. */
44567
+ missing_device_ids?: string[] | undefined
44419
44568
  }
44420
44569
  | {
44421
44570
  /** ID of the event. */
@@ -47834,6 +47983,8 @@ export type Routes = {
47834
47983
  event_type: 'access_grant.could_not_create_requested_access_methods'
47835
47984
  /** Description of why the access methods could not be created. */
47836
47985
  error_message: string
47986
+ /** IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant. */
47987
+ missing_device_ids?: string[] | undefined
47837
47988
  }
47838
47989
  | {
47839
47990
  /** ID of the event. */
@@ -73994,6 +74145,8 @@ export type Routes = {
73994
74145
  message: string
73995
74146
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
73996
74147
  error_code: 'cannot_create_requested_access_methods'
74148
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
74149
+ missing_device_ids?: string[] | undefined
73997
74150
  }[]
73998
74151
  /** ID of the customization profile associated with the Access Grant. */
73999
74152
  customization_profile_id?: string | undefined
@@ -77703,6 +77856,8 @@ export type Routes = {
77703
77856
  event_type: 'access_grant.could_not_create_requested_access_methods'
77704
77857
  /** Description of why the access methods could not be created. */
77705
77858
  error_message: string
77859
+ /** IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant. */
77860
+ missing_device_ids?: string[] | undefined
77706
77861
  }
77707
77862
  | {
77708
77863
  /** ID of the event. */
@@ -80601,6 +80756,8 @@ export type Routes = {
80601
80756
  message: string
80602
80757
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
80603
80758
  error_code: 'cannot_create_requested_access_methods'
80759
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
80760
+ missing_device_ids?: string[] | undefined
80604
80761
  }[]
80605
80762
  /** ID of the customization profile associated with the Access Grant. */
80606
80763
  customization_profile_id?: string | undefined
@@ -81114,6 +81271,8 @@ export type Routes = {
81114
81271
  message: string
81115
81272
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
81116
81273
  error_code: 'cannot_create_requested_access_methods'
81274
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
81275
+ missing_device_ids?: string[] | undefined
81117
81276
  }[]
81118
81277
  /** ID of the customization profile associated with the Access Grant. */
81119
81278
  customization_profile_id?: string | undefined
@@ -81848,6 +82007,25 @@ export type Routes = {
81848
82007
  site_name: string
81849
82008
  }
81850
82009
  | undefined
82010
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
82011
+ avigilon_alta_metadata?:
82012
+ | {
82013
+ /** Entry name for an Avigilon Alta system. */
82014
+ entry_name: string
82015
+ /** Organization name for an Avigilon Alta system. */
82016
+ org_name: string
82017
+ /** Zone ID for an Avigilon Alta system. */
82018
+ zone_id: number
82019
+ /** Zone name for an Avigilon Alta system. */
82020
+ zone_name: string
82021
+ /** Site ID for an Avigilon Alta system. */
82022
+ site_id: number
82023
+ /** Site name for an Avigilon Alta system. */
82024
+ site_name: string
82025
+ /** Total count of entry relays for an Avigilon Alta system. */
82026
+ entry_relays_total_count: number
82027
+ }
82028
+ | undefined
81851
82029
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
81852
82030
  can_unlock_with_mobile_key?: boolean | undefined
81853
82031
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -84062,6 +84240,25 @@ export type Routes = {
84062
84240
  site_name: string
84063
84241
  }
84064
84242
  | undefined
84243
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
84244
+ avigilon_alta_metadata?:
84245
+ | {
84246
+ /** Entry name for an Avigilon Alta system. */
84247
+ entry_name: string
84248
+ /** Organization name for an Avigilon Alta system. */
84249
+ org_name: string
84250
+ /** Zone ID for an Avigilon Alta system. */
84251
+ zone_id: number
84252
+ /** Zone name for an Avigilon Alta system. */
84253
+ zone_name: string
84254
+ /** Site ID for an Avigilon Alta system. */
84255
+ site_id: number
84256
+ /** Site name for an Avigilon Alta system. */
84257
+ site_name: string
84258
+ /** Total count of entry relays for an Avigilon Alta system. */
84259
+ entry_relays_total_count: number
84260
+ }
84261
+ | undefined
84065
84262
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
84066
84263
  can_unlock_with_mobile_key?: boolean | undefined
84067
84264
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -84246,7 +84443,7 @@ export type Routes = {
84246
84443
  external_type?:
84247
84444
  | (
84248
84445
  | 'pti_site'
84249
- | 'alta_org'
84446
+ | 'avigilon_alta_org'
84250
84447
  | 'salto_ks_site'
84251
84448
  | 'salto_space_system'
84252
84449
  | 'brivo_account'
@@ -84281,7 +84478,7 @@ export type Routes = {
84281
84478
  system_type?:
84282
84479
  | (
84283
84480
  | 'pti_site'
84284
- | 'alta_org'
84481
+ | 'avigilon_alta_org'
84285
84482
  | 'salto_ks_site'
84286
84483
  | 'salto_space_system'
84287
84484
  | 'brivo_account'
@@ -108376,6 +108573,25 @@ export type Routes = {
108376
108573
  site_name: string
108377
108574
  }
108378
108575
  | undefined
108576
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
108577
+ avigilon_alta_metadata?:
108578
+ | {
108579
+ /** Entry name for an Avigilon Alta system. */
108580
+ entry_name: string
108581
+ /** Organization name for an Avigilon Alta system. */
108582
+ org_name: string
108583
+ /** Zone ID for an Avigilon Alta system. */
108584
+ zone_id: number
108585
+ /** Zone name for an Avigilon Alta system. */
108586
+ zone_name: string
108587
+ /** Site ID for an Avigilon Alta system. */
108588
+ site_id: number
108589
+ /** Site name for an Avigilon Alta system. */
108590
+ site_name: string
108591
+ /** Total count of entry relays for an Avigilon Alta system. */
108592
+ entry_relays_total_count: number
108593
+ }
108594
+ | undefined
108379
108595
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
108380
108596
  can_unlock_with_mobile_key?: boolean | undefined
108381
108597
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -108412,7 +108628,7 @@ export type Routes = {
108412
108628
  external_type?:
108413
108629
  | (
108414
108630
  | 'pti_site'
108415
- | 'alta_org'
108631
+ | 'avigilon_alta_org'
108416
108632
  | 'salto_ks_site'
108417
108633
  | 'salto_space_system'
108418
108634
  | 'brivo_account'
@@ -108447,7 +108663,7 @@ export type Routes = {
108447
108663
  system_type?:
108448
108664
  | (
108449
108665
  | 'pti_site'
108450
- | 'alta_org'
108666
+ | 'avigilon_alta_org'
108451
108667
  | 'salto_ks_site'
108452
108668
  | 'salto_space_system'
108453
108669
  | 'brivo_account'
@@ -111319,6 +111535,25 @@ export type Routes = {
111319
111535
  site_name: string
111320
111536
  }
111321
111537
  | undefined
111538
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
111539
+ avigilon_alta_metadata?:
111540
+ | {
111541
+ /** Entry name for an Avigilon Alta system. */
111542
+ entry_name: string
111543
+ /** Organization name for an Avigilon Alta system. */
111544
+ org_name: string
111545
+ /** Zone ID for an Avigilon Alta system. */
111546
+ zone_id: number
111547
+ /** Zone name for an Avigilon Alta system. */
111548
+ zone_name: string
111549
+ /** Site ID for an Avigilon Alta system. */
111550
+ site_id: number
111551
+ /** Site name for an Avigilon Alta system. */
111552
+ site_name: string
111553
+ /** Total count of entry relays for an Avigilon Alta system. */
111554
+ entry_relays_total_count: number
111555
+ }
111556
+ | undefined
111322
111557
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
111323
111558
  can_unlock_with_mobile_key?: boolean | undefined
111324
111559
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -111345,7 +111580,7 @@ export type Routes = {
111345
111580
  external_type?:
111346
111581
  | (
111347
111582
  | 'pti_site'
111348
- | 'alta_org'
111583
+ | 'avigilon_alta_org'
111349
111584
  | 'salto_ks_site'
111350
111585
  | 'salto_space_system'
111351
111586
  | 'brivo_account'
@@ -111380,7 +111615,7 @@ export type Routes = {
111380
111615
  system_type?:
111381
111616
  | (
111382
111617
  | 'pti_site'
111383
- | 'alta_org'
111618
+ | 'avigilon_alta_org'
111384
111619
  | 'salto_ks_site'
111385
111620
  | 'salto_space_system'
111386
111621
  | 'brivo_account'
@@ -114960,6 +115195,8 @@ export type Routes = {
114960
115195
  message: string
114961
115196
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
114962
115197
  error_code: 'cannot_create_requested_access_methods'
115198
+ /** IDs of the devices that did not receive an access code at grant creation. Use these to identify which specific devices failed when the message reports a partial failure. */
115199
+ missing_device_ids?: string[] | undefined
114963
115200
  }[]
114964
115201
  /** ID of the customization profile associated with the Access Grant. */
114965
115202
  customization_profile_id?: string | undefined
@@ -116044,6 +116281,8 @@ export type Routes = {
116044
116281
  event_type: 'access_grant.could_not_create_requested_access_methods'
116045
116282
  /** Description of why the access methods could not be created. */
116046
116283
  error_message: string
116284
+ /** IDs of the devices that did not receive a requested access method. Use these to identify which specific devices failed without having to fetch the Access Grant. */
116285
+ missing_device_ids?: string[] | undefined
116047
116286
  }
116048
116287
  | {
116049
116288
  /** ID of the event. */