@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
@@ -4123,14 +4123,17 @@ declare const access_grant: z.ZodObject<{
4123
4123
  message: z.ZodString;
4124
4124
  } & {
4125
4125
  error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
4126
+ missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4126
4127
  }, "strip", z.ZodTypeAny, {
4127
4128
  message: string;
4128
4129
  created_at: string;
4129
4130
  error_code: "cannot_create_requested_access_methods";
4131
+ missing_device_ids?: string[] | undefined;
4130
4132
  }, {
4131
4133
  message: string;
4132
4134
  created_at: string;
4133
4135
  error_code: "cannot_create_requested_access_methods";
4136
+ missing_device_ids?: string[] | undefined;
4134
4137
  }>]>, "many">;
4135
4138
  customization_profile_id: z.ZodOptional<z.ZodString>;
4136
4139
  pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
@@ -4241,6 +4244,7 @@ declare const access_grant: z.ZodObject<{
4241
4244
  message: string;
4242
4245
  created_at: string;
4243
4246
  error_code: "cannot_create_requested_access_methods";
4247
+ missing_device_ids?: string[] | undefined;
4244
4248
  }[];
4245
4249
  warnings: ({
4246
4250
  message: string;
@@ -4337,6 +4341,7 @@ declare const access_grant: z.ZodObject<{
4337
4341
  message: string;
4338
4342
  created_at: string;
4339
4343
  error_code: "cannot_create_requested_access_methods";
4344
+ missing_device_ids?: string[] | undefined;
4340
4345
  }[];
4341
4346
  warnings: ({
4342
4347
  message: string;
@@ -6527,6 +6532,31 @@ declare const acs_entrance: z.ZodObject<{
6527
6532
  site_name: string;
6528
6533
  access_point_id: string;
6529
6534
  }>>;
6535
+ avigilon_alta_metadata: z.ZodOptional<z.ZodObject<{
6536
+ entry_name: z.ZodString;
6537
+ org_name: z.ZodString;
6538
+ zone_id: z.ZodNumber;
6539
+ zone_name: z.ZodString;
6540
+ site_id: z.ZodNumber;
6541
+ site_name: z.ZodString;
6542
+ entry_relays_total_count: z.ZodNumber;
6543
+ }, "strip", z.ZodTypeAny, {
6544
+ site_id: number;
6545
+ site_name: string;
6546
+ entry_name: string;
6547
+ org_name: string;
6548
+ zone_id: number;
6549
+ zone_name: string;
6550
+ entry_relays_total_count: number;
6551
+ }, {
6552
+ site_id: number;
6553
+ site_name: string;
6554
+ entry_name: string;
6555
+ org_name: string;
6556
+ zone_id: number;
6557
+ zone_name: string;
6558
+ entry_relays_total_count: number;
6559
+ }>>;
6530
6560
  } & {
6531
6561
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
6532
6562
  can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
@@ -6554,6 +6584,15 @@ declare const acs_entrance: z.ZodObject<{
6554
6584
  intrusion_alarm?: boolean | undefined;
6555
6585
  privacy_mode?: boolean | undefined;
6556
6586
  } | undefined;
6587
+ avigilon_alta_metadata?: {
6588
+ site_id: number;
6589
+ site_name: string;
6590
+ entry_name: string;
6591
+ org_name: string;
6592
+ zone_id: number;
6593
+ zone_name: string;
6594
+ entry_relays_total_count: number;
6595
+ } | undefined;
6557
6596
  brivo_metadata?: {
6558
6597
  site_id: number;
6559
6598
  site_name: string;
@@ -6625,6 +6664,15 @@ declare const acs_entrance: z.ZodObject<{
6625
6664
  intrusion_alarm?: boolean | undefined;
6626
6665
  privacy_mode?: boolean | undefined;
6627
6666
  } | undefined;
6667
+ avigilon_alta_metadata?: {
6668
+ site_id: number;
6669
+ site_name: string;
6670
+ entry_name: string;
6671
+ org_name: string;
6672
+ zone_id: number;
6673
+ zone_name: string;
6674
+ entry_relays_total_count: number;
6675
+ } | undefined;
6628
6676
  brivo_metadata?: {
6629
6677
  site_id: number;
6630
6678
  site_name: string;
@@ -6683,7 +6731,7 @@ declare const acs_system: z.ZodObject<{
6683
6731
  acs_system_id: z.ZodString;
6684
6732
  acs_user_count: z.ZodOptional<z.ZodNumber>;
6685
6733
  acs_access_group_count: z.ZodOptional<z.ZodNumber>;
6686
- external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
6734
+ external_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
6687
6735
  external_type_display_name: z.ZodOptional<z.ZodString>;
6688
6736
  is_credential_manager: z.ZodBoolean;
6689
6737
  visionline_metadata: z.ZodOptional<z.ZodObject<{
@@ -6699,7 +6747,7 @@ declare const acs_system: z.ZodObject<{
6699
6747
  system_id: string;
6700
6748
  lan_address: string;
6701
6749
  }>>;
6702
- system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
6750
+ system_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
6703
6751
  system_type_display_name: z.ZodOptional<z.ZodString>;
6704
6752
  location: z.ZodObject<{
6705
6753
  time_zone: z.ZodNullable<z.ZodString>;
@@ -6898,12 +6946,12 @@ declare const acs_system: z.ZodObject<{
6898
6946
  system_id: string;
6899
6947
  lan_address: string;
6900
6948
  } | undefined;
6901
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
6949
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
6902
6950
  external_type_display_name?: string | undefined;
6903
6951
  default_credential_manager_acs_system_id?: string | null | undefined;
6904
6952
  acs_user_count?: number | undefined;
6905
6953
  acs_access_group_count?: number | undefined;
6906
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
6954
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
6907
6955
  system_type_display_name?: string | undefined;
6908
6956
  }, {
6909
6957
  name: string;
@@ -6963,12 +7011,12 @@ declare const acs_system: z.ZodObject<{
6963
7011
  system_id: string;
6964
7012
  lan_address: string;
6965
7013
  } | undefined;
6966
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
7014
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
6967
7015
  external_type_display_name?: string | undefined;
6968
7016
  default_credential_manager_acs_system_id?: string | null | undefined;
6969
7017
  acs_user_count?: number | undefined;
6970
7018
  acs_access_group_count?: number | undefined;
6971
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
7019
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
6972
7020
  system_type_display_name?: string | undefined;
6973
7021
  }>;
6974
7022
  type AcsSystem = z.output<typeof acs_system>;
@@ -17764,6 +17812,31 @@ declare const batch: z.ZodObject<{
17764
17812
  site_name: string;
17765
17813
  access_point_id: string;
17766
17814
  }>>;
17815
+ avigilon_alta_metadata: z.ZodOptional<z.ZodObject<{
17816
+ entry_name: z.ZodString;
17817
+ org_name: z.ZodString;
17818
+ zone_id: z.ZodNumber;
17819
+ zone_name: z.ZodString;
17820
+ site_id: z.ZodNumber;
17821
+ site_name: z.ZodString;
17822
+ entry_relays_total_count: z.ZodNumber;
17823
+ }, "strip", z.ZodTypeAny, {
17824
+ site_id: number;
17825
+ site_name: string;
17826
+ entry_name: string;
17827
+ org_name: string;
17828
+ zone_id: number;
17829
+ zone_name: string;
17830
+ entry_relays_total_count: number;
17831
+ }, {
17832
+ site_id: number;
17833
+ site_name: string;
17834
+ entry_name: string;
17835
+ org_name: string;
17836
+ zone_id: number;
17837
+ zone_name: string;
17838
+ entry_relays_total_count: number;
17839
+ }>>;
17767
17840
  } & {
17768
17841
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
17769
17842
  can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
@@ -17791,6 +17864,15 @@ declare const batch: z.ZodObject<{
17791
17864
  intrusion_alarm?: boolean | undefined;
17792
17865
  privacy_mode?: boolean | undefined;
17793
17866
  } | undefined;
17867
+ avigilon_alta_metadata?: {
17868
+ site_id: number;
17869
+ site_name: string;
17870
+ entry_name: string;
17871
+ org_name: string;
17872
+ zone_id: number;
17873
+ zone_name: string;
17874
+ entry_relays_total_count: number;
17875
+ } | undefined;
17794
17876
  brivo_metadata?: {
17795
17877
  site_id: number;
17796
17878
  site_name: string;
@@ -17862,6 +17944,15 @@ declare const batch: z.ZodObject<{
17862
17944
  intrusion_alarm?: boolean | undefined;
17863
17945
  privacy_mode?: boolean | undefined;
17864
17946
  } | undefined;
17947
+ avigilon_alta_metadata?: {
17948
+ site_id: number;
17949
+ site_name: string;
17950
+ entry_name: string;
17951
+ org_name: string;
17952
+ zone_id: number;
17953
+ zone_name: string;
17954
+ entry_relays_total_count: number;
17955
+ } | undefined;
17865
17956
  brivo_metadata?: {
17866
17957
  site_id: number;
17867
17958
  site_name: string;
@@ -17918,7 +18009,7 @@ declare const batch: z.ZodObject<{
17918
18009
  acs_system_id: z.ZodString;
17919
18010
  acs_user_count: z.ZodOptional<z.ZodNumber>;
17920
18011
  acs_access_group_count: z.ZodOptional<z.ZodNumber>;
17921
- external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
18012
+ external_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
17922
18013
  external_type_display_name: z.ZodOptional<z.ZodString>;
17923
18014
  is_credential_manager: z.ZodBoolean;
17924
18015
  visionline_metadata: z.ZodOptional<z.ZodObject<{
@@ -17934,7 +18025,7 @@ declare const batch: z.ZodObject<{
17934
18025
  system_id: string;
17935
18026
  lan_address: string;
17936
18027
  }>>;
17937
- system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
18028
+ system_type: z.ZodOptional<z.ZodEnum<["pti_site", "avigilon_alta_org", "salto_ks_site", "salto_space_system", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community_site", "dormakaba_ambiance_site", "legic_connect_credential_service", "assa_abloy_vostio", "assa_abloy_vostio_credential_service", "hotek_site"]>>;
17938
18029
  system_type_display_name: z.ZodOptional<z.ZodString>;
17939
18030
  location: z.ZodObject<{
17940
18031
  time_zone: z.ZodNullable<z.ZodString>;
@@ -18133,12 +18224,12 @@ declare const batch: z.ZodObject<{
18133
18224
  system_id: string;
18134
18225
  lan_address: string;
18135
18226
  } | undefined;
18136
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18227
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18137
18228
  external_type_display_name?: string | undefined;
18138
18229
  default_credential_manager_acs_system_id?: string | null | undefined;
18139
18230
  acs_user_count?: number | undefined;
18140
18231
  acs_access_group_count?: number | undefined;
18141
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18232
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18142
18233
  system_type_display_name?: string | undefined;
18143
18234
  }, {
18144
18235
  name: string;
@@ -18198,12 +18289,12 @@ declare const batch: z.ZodObject<{
18198
18289
  system_id: string;
18199
18290
  lan_address: string;
18200
18291
  } | undefined;
18201
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18292
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18202
18293
  external_type_display_name?: string | undefined;
18203
18294
  default_credential_manager_acs_system_id?: string | null | undefined;
18204
18295
  acs_user_count?: number | undefined;
18205
18296
  acs_access_group_count?: number | undefined;
18206
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18297
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
18207
18298
  system_type_display_name?: string | undefined;
18208
18299
  }>, "many">>;
18209
18300
  acs_users: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -29581,14 +29672,17 @@ declare const batch: z.ZodObject<{
29581
29672
  message: z.ZodString;
29582
29673
  } & {
29583
29674
  error_code: z.ZodLiteral<"cannot_create_requested_access_methods">;
29675
+ missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29584
29676
  }, "strip", z.ZodTypeAny, {
29585
29677
  message: string;
29586
29678
  created_at: string;
29587
29679
  error_code: "cannot_create_requested_access_methods";
29680
+ missing_device_ids?: string[] | undefined;
29588
29681
  }, {
29589
29682
  message: string;
29590
29683
  created_at: string;
29591
29684
  error_code: "cannot_create_requested_access_methods";
29685
+ missing_device_ids?: string[] | undefined;
29592
29686
  }>]>, "many">;
29593
29687
  customization_profile_id: z.ZodOptional<z.ZodString>;
29594
29688
  pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
@@ -29699,6 +29793,7 @@ declare const batch: z.ZodObject<{
29699
29793
  message: string;
29700
29794
  created_at: string;
29701
29795
  error_code: "cannot_create_requested_access_methods";
29796
+ missing_device_ids?: string[] | undefined;
29702
29797
  }[];
29703
29798
  warnings: ({
29704
29799
  message: string;
@@ -29795,6 +29890,7 @@ declare const batch: z.ZodObject<{
29795
29890
  message: string;
29796
29891
  created_at: string;
29797
29892
  error_code: "cannot_create_requested_access_methods";
29893
+ missing_device_ids?: string[] | undefined;
29798
29894
  }[];
29799
29895
  warnings: ({
29800
29896
  message: string;
@@ -31346,6 +31442,7 @@ declare const batch: z.ZodObject<{
31346
31442
  } & {
31347
31443
  event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
31348
31444
  error_message: z.ZodString;
31445
+ missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
31349
31446
  }, "strip", z.ZodTypeAny, {
31350
31447
  workspace_id: string;
31351
31448
  created_at: string;
@@ -31354,6 +31451,7 @@ declare const batch: z.ZodObject<{
31354
31451
  occurred_at: string;
31355
31452
  event_type: "access_grant.could_not_create_requested_access_methods";
31356
31453
  error_message: string;
31454
+ missing_device_ids?: string[] | undefined;
31357
31455
  }, {
31358
31456
  workspace_id: string;
31359
31457
  created_at: string;
@@ -31362,6 +31460,7 @@ declare const batch: z.ZodObject<{
31362
31460
  occurred_at: string;
31363
31461
  event_type: "access_grant.could_not_create_requested_access_methods";
31364
31462
  error_message: string;
31463
+ missing_device_ids?: string[] | undefined;
31365
31464
  }>, z.ZodObject<{
31366
31465
  event_id: z.ZodString;
31367
31466
  workspace_id: z.ZodString;
@@ -39258,6 +39357,15 @@ declare const batch: z.ZodObject<{
39258
39357
  intrusion_alarm?: boolean | undefined;
39259
39358
  privacy_mode?: boolean | undefined;
39260
39359
  } | undefined;
39360
+ avigilon_alta_metadata?: {
39361
+ site_id: number;
39362
+ site_name: string;
39363
+ entry_name: string;
39364
+ org_name: string;
39365
+ zone_id: number;
39366
+ zone_name: string;
39367
+ entry_relays_total_count: number;
39368
+ } | undefined;
39261
39369
  brivo_metadata?: {
39262
39370
  site_id: number;
39263
39371
  site_name: string;
@@ -39367,12 +39475,12 @@ declare const batch: z.ZodObject<{
39367
39475
  system_id: string;
39368
39476
  lan_address: string;
39369
39477
  } | undefined;
39370
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
39478
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
39371
39479
  external_type_display_name?: string | undefined;
39372
39480
  default_credential_manager_acs_system_id?: string | null | undefined;
39373
39481
  acs_user_count?: number | undefined;
39374
39482
  acs_access_group_count?: number | undefined;
39375
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
39483
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
39376
39484
  system_type_display_name?: string | undefined;
39377
39485
  }[] | undefined;
39378
39486
  acs_users?: {
@@ -41137,6 +41245,7 @@ declare const batch: z.ZodObject<{
41137
41245
  message: string;
41138
41246
  created_at: string;
41139
41247
  error_code: "cannot_create_requested_access_methods";
41248
+ missing_device_ids?: string[] | undefined;
41140
41249
  }[];
41141
41250
  warnings: ({
41142
41251
  message: string;
@@ -41619,6 +41728,7 @@ declare const batch: z.ZodObject<{
41619
41728
  occurred_at: string;
41620
41729
  event_type: "access_grant.could_not_create_requested_access_methods";
41621
41730
  error_message: string;
41731
+ missing_device_ids?: string[] | undefined;
41622
41732
  } | {
41623
41733
  workspace_id: string;
41624
41734
  created_at: string;
@@ -44222,6 +44332,15 @@ declare const batch: z.ZodObject<{
44222
44332
  intrusion_alarm?: boolean | undefined;
44223
44333
  privacy_mode?: boolean | undefined;
44224
44334
  } | undefined;
44335
+ avigilon_alta_metadata?: {
44336
+ site_id: number;
44337
+ site_name: string;
44338
+ entry_name: string;
44339
+ org_name: string;
44340
+ zone_id: number;
44341
+ zone_name: string;
44342
+ entry_relays_total_count: number;
44343
+ } | undefined;
44225
44344
  brivo_metadata?: {
44226
44345
  site_id: number;
44227
44346
  site_name: string;
@@ -44331,12 +44450,12 @@ declare const batch: z.ZodObject<{
44331
44450
  system_id: string;
44332
44451
  lan_address: string;
44333
44452
  } | undefined;
44334
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
44453
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
44335
44454
  external_type_display_name?: string | undefined;
44336
44455
  default_credential_manager_acs_system_id?: string | null | undefined;
44337
44456
  acs_user_count?: number | undefined;
44338
44457
  acs_access_group_count?: number | undefined;
44339
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
44458
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | undefined;
44340
44459
  system_type_display_name?: string | undefined;
44341
44460
  }[] | undefined;
44342
44461
  acs_users?: {
@@ -46101,6 +46220,7 @@ declare const batch: z.ZodObject<{
46101
46220
  message: string;
46102
46221
  created_at: string;
46103
46222
  error_code: "cannot_create_requested_access_methods";
46223
+ missing_device_ids?: string[] | undefined;
46104
46224
  }[];
46105
46225
  warnings: ({
46106
46226
  message: string;
@@ -46583,6 +46703,7 @@ declare const batch: z.ZodObject<{
46583
46703
  occurred_at: string;
46584
46704
  event_type: "access_grant.could_not_create_requested_access_methods";
46585
46705
  error_message: string;
46706
+ missing_device_ids?: string[] | undefined;
46586
46707
  } | {
46587
46708
  workspace_id: string;
46588
46709
  created_at: string;
@@ -59720,6 +59841,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
59720
59841
  } & {
59721
59842
  event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
59722
59843
  error_message: z.ZodString;
59844
+ missing_device_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
59723
59845
  }, "strip", z.ZodTypeAny, {
59724
59846
  workspace_id: string;
59725
59847
  created_at: string;
@@ -59728,6 +59850,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
59728
59850
  occurred_at: string;
59729
59851
  event_type: "access_grant.could_not_create_requested_access_methods";
59730
59852
  error_message: string;
59853
+ missing_device_ids?: string[] | undefined;
59731
59854
  }, {
59732
59855
  workspace_id: string;
59733
59856
  created_at: string;
@@ -59736,6 +59859,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
59736
59859
  occurred_at: string;
59737
59860
  event_type: "access_grant.could_not_create_requested_access_methods";
59738
59861
  error_message: string;
59862
+ missing_device_ids?: string[] | undefined;
59739
59863
  }>, z.ZodObject<{
59740
59864
  event_id: z.ZodString;
59741
59865
  workspace_id: z.ZodString;
@@ -74916,6 +75040,8 @@ type Routes = {
74916
75040
  message: string;
74917
75041
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
74918
75042
  error_code: 'cannot_create_requested_access_methods';
75043
+ /** 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. */
75044
+ missing_device_ids?: string[] | undefined;
74919
75045
  }[];
74920
75046
  /** ID of the customization profile associated with the Access Grant. */
74921
75047
  customization_profile_id?: string | undefined;
@@ -75124,6 +75250,8 @@ type Routes = {
75124
75250
  message: string;
75125
75251
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
75126
75252
  error_code: 'cannot_create_requested_access_methods';
75253
+ /** 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. */
75254
+ missing_device_ids?: string[] | undefined;
75127
75255
  }[];
75128
75256
  /** ID of the customization profile associated with the Access Grant. */
75129
75257
  customization_profile_id?: string | undefined;
@@ -76676,6 +76804,23 @@ type Routes = {
76676
76804
  /** Name of the site that the access point belongs to. */
76677
76805
  site_name: string;
76678
76806
  } | undefined;
76807
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
76808
+ avigilon_alta_metadata?: {
76809
+ /** Entry name for an Avigilon Alta system. */
76810
+ entry_name: string;
76811
+ /** Organization name for an Avigilon Alta system. */
76812
+ org_name: string;
76813
+ /** Zone ID for an Avigilon Alta system. */
76814
+ zone_id: number;
76815
+ /** Zone name for an Avigilon Alta system. */
76816
+ zone_name: string;
76817
+ /** Site ID for an Avigilon Alta system. */
76818
+ site_id: number;
76819
+ /** Site name for an Avigilon Alta system. */
76820
+ site_name: string;
76821
+ /** Total count of entry relays for an Avigilon Alta system. */
76822
+ entry_relays_total_count: number;
76823
+ } | undefined;
76679
76824
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
76680
76825
  can_unlock_with_mobile_key?: boolean | undefined;
76681
76826
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -76833,7 +76978,7 @@ type Routes = {
76833
76978
  acs_user_count?: number | undefined;
76834
76979
  acs_access_group_count?: number | undefined;
76835
76980
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
76836
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
76981
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
76837
76982
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
76838
76983
  external_type_display_name?: string | undefined;
76839
76984
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -76848,7 +76993,7 @@ type Routes = {
76848
76993
  } | undefined;
76849
76994
  /**
76850
76995
  * @deprecated Use `external_type`.*/
76851
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
76996
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
76852
76997
  /**
76853
76998
  * @deprecated Use `external_type_display_name`.*/
76854
76999
  system_type_display_name?: string | undefined;
@@ -77431,6 +77576,8 @@ type Routes = {
77431
77576
  message: string;
77432
77577
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
77433
77578
  error_code: 'cannot_create_requested_access_methods';
77579
+ /** 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. */
77580
+ missing_device_ids?: string[] | undefined;
77434
77581
  }[];
77435
77582
  /** ID of the customization profile associated with the Access Grant. */
77436
77583
  customization_profile_id?: string | undefined;
@@ -77641,6 +77788,8 @@ type Routes = {
77641
77788
  message: string;
77642
77789
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
77643
77790
  error_code: 'cannot_create_requested_access_methods';
77791
+ /** 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. */
77792
+ missing_device_ids?: string[] | undefined;
77644
77793
  }[];
77645
77794
  /** ID of the customization profile associated with the Access Grant. */
77646
77795
  customization_profile_id?: string | undefined;
@@ -77825,6 +77974,8 @@ type Routes = {
77825
77974
  message: string;
77826
77975
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
77827
77976
  error_code: 'cannot_create_requested_access_methods';
77977
+ /** 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. */
77978
+ missing_device_ids?: string[] | undefined;
77828
77979
  }[];
77829
77980
  /** List of pending mutations for the access grant. This shows updates that are in progress. */
77830
77981
  pending_mutations: ({
@@ -78018,6 +78169,8 @@ type Routes = {
78018
78169
  message: string;
78019
78170
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
78020
78171
  error_code: 'cannot_create_requested_access_methods';
78172
+ /** 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. */
78173
+ missing_device_ids?: string[] | undefined;
78021
78174
  }[];
78022
78175
  /** List of pending mutations for the access grant. This shows updates that are in progress. */
78023
78176
  pending_mutations: ({
@@ -81099,6 +81252,23 @@ type Routes = {
81099
81252
  /** Name of the site that the access point belongs to. */
81100
81253
  site_name: string;
81101
81254
  } | undefined;
81255
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
81256
+ avigilon_alta_metadata?: {
81257
+ /** Entry name for an Avigilon Alta system. */
81258
+ entry_name: string;
81259
+ /** Organization name for an Avigilon Alta system. */
81260
+ org_name: string;
81261
+ /** Zone ID for an Avigilon Alta system. */
81262
+ zone_id: number;
81263
+ /** Zone name for an Avigilon Alta system. */
81264
+ zone_name: string;
81265
+ /** Site ID for an Avigilon Alta system. */
81266
+ site_id: number;
81267
+ /** Site name for an Avigilon Alta system. */
81268
+ site_name: string;
81269
+ /** Total count of entry relays for an Avigilon Alta system. */
81270
+ entry_relays_total_count: number;
81271
+ } | undefined;
81102
81272
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
81103
81273
  can_unlock_with_mobile_key?: boolean | undefined;
81104
81274
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -81239,6 +81409,8 @@ type Routes = {
81239
81409
  message: string;
81240
81410
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
81241
81411
  error_code: 'cannot_create_requested_access_methods';
81412
+ /** 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. */
81413
+ missing_device_ids?: string[] | undefined;
81242
81414
  }[];
81243
81415
  /** ID of the customization profile associated with the Access Grant. */
81244
81416
  customization_profile_id?: string | undefined;
@@ -82491,6 +82663,23 @@ type Routes = {
82491
82663
  /** Name of the site that the access point belongs to. */
82492
82664
  site_name: string;
82493
82665
  } | undefined;
82666
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
82667
+ avigilon_alta_metadata?: {
82668
+ /** Entry name for an Avigilon Alta system. */
82669
+ entry_name: string;
82670
+ /** Organization name for an Avigilon Alta system. */
82671
+ org_name: string;
82672
+ /** Zone ID for an Avigilon Alta system. */
82673
+ zone_id: number;
82674
+ /** Zone name for an Avigilon Alta system. */
82675
+ zone_name: string;
82676
+ /** Site ID for an Avigilon Alta system. */
82677
+ site_id: number;
82678
+ /** Site name for an Avigilon Alta system. */
82679
+ site_name: string;
82680
+ /** Total count of entry relays for an Avigilon Alta system. */
82681
+ entry_relays_total_count: number;
82682
+ } | undefined;
82494
82683
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
82495
82684
  can_unlock_with_mobile_key?: boolean | undefined;
82496
82685
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -84169,6 +84358,23 @@ type Routes = {
84169
84358
  /** Name of the site that the access point belongs to. */
84170
84359
  site_name: string;
84171
84360
  } | undefined;
84361
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
84362
+ avigilon_alta_metadata?: {
84363
+ /** Entry name for an Avigilon Alta system. */
84364
+ entry_name: string;
84365
+ /** Organization name for an Avigilon Alta system. */
84366
+ org_name: string;
84367
+ /** Zone ID for an Avigilon Alta system. */
84368
+ zone_id: number;
84369
+ /** Zone name for an Avigilon Alta system. */
84370
+ zone_name: string;
84371
+ /** Site ID for an Avigilon Alta system. */
84372
+ site_id: number;
84373
+ /** Site name for an Avigilon Alta system. */
84374
+ site_name: string;
84375
+ /** Total count of entry relays for an Avigilon Alta system. */
84376
+ entry_relays_total_count: number;
84377
+ } | undefined;
84172
84378
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
84173
84379
  can_unlock_with_mobile_key?: boolean | undefined;
84174
84380
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -87805,6 +88011,23 @@ type Routes = {
87805
88011
  /** Name of the site that the access point belongs to. */
87806
88012
  site_name: string;
87807
88013
  } | undefined;
88014
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
88015
+ avigilon_alta_metadata?: {
88016
+ /** Entry name for an Avigilon Alta system. */
88017
+ entry_name: string;
88018
+ /** Organization name for an Avigilon Alta system. */
88019
+ org_name: string;
88020
+ /** Zone ID for an Avigilon Alta system. */
88021
+ zone_id: number;
88022
+ /** Zone name for an Avigilon Alta system. */
88023
+ zone_name: string;
88024
+ /** Site ID for an Avigilon Alta system. */
88025
+ site_id: number;
88026
+ /** Site name for an Avigilon Alta system. */
88027
+ site_name: string;
88028
+ /** Total count of entry relays for an Avigilon Alta system. */
88029
+ entry_relays_total_count: number;
88030
+ } | undefined;
87808
88031
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
87809
88032
  can_unlock_with_mobile_key?: boolean | undefined;
87810
88033
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -87986,6 +88209,23 @@ type Routes = {
87986
88209
  /** Name of the site that the access point belongs to. */
87987
88210
  site_name: string;
87988
88211
  } | undefined;
88212
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
88213
+ avigilon_alta_metadata?: {
88214
+ /** Entry name for an Avigilon Alta system. */
88215
+ entry_name: string;
88216
+ /** Organization name for an Avigilon Alta system. */
88217
+ org_name: string;
88218
+ /** Zone ID for an Avigilon Alta system. */
88219
+ zone_id: number;
88220
+ /** Zone name for an Avigilon Alta system. */
88221
+ zone_name: string;
88222
+ /** Site ID for an Avigilon Alta system. */
88223
+ site_id: number;
88224
+ /** Site name for an Avigilon Alta system. */
88225
+ site_name: string;
88226
+ /** Total count of entry relays for an Avigilon Alta system. */
88227
+ entry_relays_total_count: number;
88228
+ } | undefined;
87989
88229
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
87990
88230
  can_unlock_with_mobile_key?: boolean | undefined;
87991
88231
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -89522,7 +89762,7 @@ type Routes = {
89522
89762
  acs_user_count?: number | undefined;
89523
89763
  acs_access_group_count?: number | undefined;
89524
89764
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
89525
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89765
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89526
89766
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
89527
89767
  external_type_display_name?: string | undefined;
89528
89768
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -89537,7 +89777,7 @@ type Routes = {
89537
89777
  } | undefined;
89538
89778
  /**
89539
89779
  * @deprecated Use `external_type`.*/
89540
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89780
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89541
89781
  /**
89542
89782
  * @deprecated Use `external_type_display_name`.*/
89543
89783
  system_type_display_name?: string | undefined;
@@ -89658,7 +89898,7 @@ type Routes = {
89658
89898
  acs_user_count?: number | undefined;
89659
89899
  acs_access_group_count?: number | undefined;
89660
89900
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
89661
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89901
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89662
89902
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
89663
89903
  external_type_display_name?: string | undefined;
89664
89904
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -89673,7 +89913,7 @@ type Routes = {
89673
89913
  } | undefined;
89674
89914
  /**
89675
89915
  * @deprecated Use `external_type`.*/
89676
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89916
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89677
89917
  /**
89678
89918
  * @deprecated Use `external_type_display_name`.*/
89679
89919
  system_type_display_name?: string | undefined;
@@ -89790,7 +90030,7 @@ type Routes = {
89790
90030
  acs_user_count?: number | undefined;
89791
90031
  acs_access_group_count?: number | undefined;
89792
90032
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
89793
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
90033
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89794
90034
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
89795
90035
  external_type_display_name?: string | undefined;
89796
90036
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -89805,7 +90045,7 @@ type Routes = {
89805
90045
  } | undefined;
89806
90046
  /**
89807
90047
  * @deprecated Use `external_type`.*/
89808
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
90048
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
89809
90049
  /**
89810
90050
  * @deprecated Use `external_type_display_name`.*/
89811
90051
  system_type_display_name?: string | undefined;
@@ -90910,6 +91150,23 @@ type Routes = {
90910
91150
  /** Name of the site that the access point belongs to. */
90911
91151
  site_name: string;
90912
91152
  } | undefined;
91153
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
91154
+ avigilon_alta_metadata?: {
91155
+ /** Entry name for an Avigilon Alta system. */
91156
+ entry_name: string;
91157
+ /** Organization name for an Avigilon Alta system. */
91158
+ org_name: string;
91159
+ /** Zone ID for an Avigilon Alta system. */
91160
+ zone_id: number;
91161
+ /** Zone name for an Avigilon Alta system. */
91162
+ zone_name: string;
91163
+ /** Site ID for an Avigilon Alta system. */
91164
+ site_id: number;
91165
+ /** Site name for an Avigilon Alta system. */
91166
+ site_name: string;
91167
+ /** Total count of entry relays for an Avigilon Alta system. */
91168
+ entry_relays_total_count: number;
91169
+ } | undefined;
90913
91170
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
90914
91171
  can_unlock_with_mobile_key?: boolean | undefined;
90915
91172
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -100897,6 +101154,8 @@ type Routes = {
100897
101154
  event_type: 'access_grant.could_not_create_requested_access_methods';
100898
101155
  /** Description of why the access methods could not be created. */
100899
101156
  error_message: string;
101157
+ /** 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. */
101158
+ missing_device_ids?: string[] | undefined;
100900
101159
  } | {
100901
101160
  /** ID of the event. */
100902
101161
  event_id: string;
@@ -103741,6 +104000,8 @@ type Routes = {
103741
104000
  event_type: 'access_grant.could_not_create_requested_access_methods';
103742
104001
  /** Description of why the access methods could not be created. */
103743
104002
  error_message: string;
104003
+ /** 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. */
104004
+ missing_device_ids?: string[] | undefined;
103744
104005
  } | {
103745
104006
  /** ID of the event. */
103746
104007
  event_id: string;
@@ -125764,6 +126025,8 @@ type Routes = {
125764
126025
  message: string;
125765
126026
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
125766
126027
  error_code: 'cannot_create_requested_access_methods';
126028
+ /** 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. */
126029
+ missing_device_ids?: string[] | undefined;
125767
126030
  }[];
125768
126031
  /** ID of the customization profile associated with the Access Grant. */
125769
126032
  customization_profile_id?: string | undefined;
@@ -128789,6 +129052,8 @@ type Routes = {
128789
129052
  event_type: 'access_grant.could_not_create_requested_access_methods';
128790
129053
  /** Description of why the access methods could not be created. */
128791
129054
  error_message: string;
129055
+ /** 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. */
129056
+ missing_device_ids?: string[] | undefined;
128792
129057
  } | {
128793
129058
  /** ID of the event. */
128794
129059
  event_id: string;
@@ -131338,6 +131603,8 @@ type Routes = {
131338
131603
  message: string;
131339
131604
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
131340
131605
  error_code: 'cannot_create_requested_access_methods';
131606
+ /** 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. */
131607
+ missing_device_ids?: string[] | undefined;
131341
131608
  }[];
131342
131609
  /** ID of the customization profile associated with the Access Grant. */
131343
131610
  customization_profile_id?: string | undefined;
@@ -131802,6 +132069,8 @@ type Routes = {
131802
132069
  message: string;
131803
132070
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
131804
132071
  error_code: 'cannot_create_requested_access_methods';
132072
+ /** 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. */
132073
+ missing_device_ids?: string[] | undefined;
131805
132074
  }[];
131806
132075
  /** ID of the customization profile associated with the Access Grant. */
131807
132076
  customization_profile_id?: string | undefined;
@@ -132443,6 +132712,23 @@ type Routes = {
132443
132712
  /** Name of the site that the access point belongs to. */
132444
132713
  site_name: string;
132445
132714
  } | undefined;
132715
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
132716
+ avigilon_alta_metadata?: {
132717
+ /** Entry name for an Avigilon Alta system. */
132718
+ entry_name: string;
132719
+ /** Organization name for an Avigilon Alta system. */
132720
+ org_name: string;
132721
+ /** Zone ID for an Avigilon Alta system. */
132722
+ zone_id: number;
132723
+ /** Zone name for an Avigilon Alta system. */
132724
+ zone_name: string;
132725
+ /** Site ID for an Avigilon Alta system. */
132726
+ site_id: number;
132727
+ /** Site name for an Avigilon Alta system. */
132728
+ site_name: string;
132729
+ /** Total count of entry relays for an Avigilon Alta system. */
132730
+ entry_relays_total_count: number;
132731
+ } | undefined;
132446
132732
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
132447
132733
  can_unlock_with_mobile_key?: boolean | undefined;
132448
132734
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -134237,6 +134523,23 @@ type Routes = {
134237
134523
  /** Name of the site that the access point belongs to. */
134238
134524
  site_name: string;
134239
134525
  } | undefined;
134526
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
134527
+ avigilon_alta_metadata?: {
134528
+ /** Entry name for an Avigilon Alta system. */
134529
+ entry_name: string;
134530
+ /** Organization name for an Avigilon Alta system. */
134531
+ org_name: string;
134532
+ /** Zone ID for an Avigilon Alta system. */
134533
+ zone_id: number;
134534
+ /** Zone name for an Avigilon Alta system. */
134535
+ zone_name: string;
134536
+ /** Site ID for an Avigilon Alta system. */
134537
+ site_id: number;
134538
+ /** Site name for an Avigilon Alta system. */
134539
+ site_name: string;
134540
+ /** Total count of entry relays for an Avigilon Alta system. */
134541
+ entry_relays_total_count: number;
134542
+ } | undefined;
134240
134543
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
134241
134544
  can_unlock_with_mobile_key?: boolean | undefined;
134242
134545
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -134394,7 +134697,7 @@ type Routes = {
134394
134697
  acs_user_count?: number | undefined;
134395
134698
  acs_access_group_count?: number | undefined;
134396
134699
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
134397
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
134700
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
134398
134701
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
134399
134702
  external_type_display_name?: string | undefined;
134400
134703
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -134409,7 +134712,7 @@ type Routes = {
134409
134712
  } | undefined;
134410
134713
  /**
134411
134714
  * @deprecated Use `external_type`.*/
134412
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
134715
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
134413
134716
  /**
134414
134717
  * @deprecated Use `external_type_display_name`.*/
134415
134718
  system_type_display_name?: string | undefined;
@@ -154813,6 +155116,23 @@ type Routes = {
154813
155116
  /** Name of the site that the access point belongs to. */
154814
155117
  site_name: string;
154815
155118
  } | undefined;
155119
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
155120
+ avigilon_alta_metadata?: {
155121
+ /** Entry name for an Avigilon Alta system. */
155122
+ entry_name: string;
155123
+ /** Organization name for an Avigilon Alta system. */
155124
+ org_name: string;
155125
+ /** Zone ID for an Avigilon Alta system. */
155126
+ zone_id: number;
155127
+ /** Zone name for an Avigilon Alta system. */
155128
+ zone_name: string;
155129
+ /** Site ID for an Avigilon Alta system. */
155130
+ site_id: number;
155131
+ /** Site name for an Avigilon Alta system. */
155132
+ site_name: string;
155133
+ /** Total count of entry relays for an Avigilon Alta system. */
155134
+ entry_relays_total_count: number;
155135
+ } | undefined;
154816
155136
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
154817
155137
  can_unlock_with_mobile_key?: boolean | undefined;
154818
155138
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -154846,7 +155166,7 @@ type Routes = {
154846
155166
  acs_user_count?: number | undefined;
154847
155167
  acs_access_group_count?: number | undefined;
154848
155168
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
154849
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
155169
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
154850
155170
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
154851
155171
  external_type_display_name?: string | undefined;
154852
155172
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -154861,7 +155181,7 @@ type Routes = {
154861
155181
  } | undefined;
154862
155182
  /**
154863
155183
  * @deprecated Use `external_type`.*/
154864
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
155184
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
154865
155185
  /**
154866
155186
  * @deprecated Use `external_type_display_name`.*/
154867
155187
  system_type_display_name?: string | undefined;
@@ -157255,6 +157575,23 @@ type Routes = {
157255
157575
  /** Name of the site that the access point belongs to. */
157256
157576
  site_name: string;
157257
157577
  } | undefined;
157578
+ /** Avigilon Alta-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
157579
+ avigilon_alta_metadata?: {
157580
+ /** Entry name for an Avigilon Alta system. */
157581
+ entry_name: string;
157582
+ /** Organization name for an Avigilon Alta system. */
157583
+ org_name: string;
157584
+ /** Zone ID for an Avigilon Alta system. */
157585
+ zone_id: number;
157586
+ /** Zone name for an Avigilon Alta system. */
157587
+ zone_name: string;
157588
+ /** Site ID for an Avigilon Alta system. */
157589
+ site_id: number;
157590
+ /** Site name for an Avigilon Alta system. */
157591
+ site_name: string;
157592
+ /** Total count of entry relays for an Avigilon Alta system. */
157593
+ entry_relays_total_count: number;
157594
+ } | undefined;
157258
157595
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
157259
157596
  can_unlock_with_mobile_key?: boolean | undefined;
157260
157597
  /** Indicates whether the ACS entrance can be unlocked with card credentials. */
@@ -157274,7 +157611,7 @@ type Routes = {
157274
157611
  acs_user_count?: number | undefined;
157275
157612
  acs_access_group_count?: number | undefined;
157276
157613
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
157277
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
157614
+ external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
157278
157615
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) type. */
157279
157616
  external_type_display_name?: string | undefined;
157280
157617
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -157289,7 +157626,7 @@ type Routes = {
157289
157626
  } | undefined;
157290
157627
  /**
157291
157628
  * @deprecated Use `external_type`.*/
157292
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
157629
+ system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
157293
157630
  /**
157294
157631
  * @deprecated Use `external_type_display_name`.*/
157295
157632
  system_type_display_name?: string | undefined;
@@ -160312,6 +160649,8 @@ type Routes = {
160312
160649
  message: string;
160313
160650
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
160314
160651
  error_code: 'cannot_create_requested_access_methods';
160652
+ /** 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. */
160653
+ missing_device_ids?: string[] | undefined;
160315
160654
  }[];
160316
160655
  /** ID of the customization profile associated with the Access Grant. */
160317
160656
  customization_profile_id?: string | undefined;
@@ -161279,6 +161618,8 @@ type Routes = {
161279
161618
  event_type: 'access_grant.could_not_create_requested_access_methods';
161280
161619
  /** Description of why the access methods could not be created. */
161281
161620
  error_message: string;
161621
+ /** 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. */
161622
+ missing_device_ids?: string[] | undefined;
161282
161623
  } | {
161283
161624
  /** ID of the event. */
161284
161625
  event_id: string;