@seamapi/types 1.566.0 → 1.567.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4591,6 +4591,7 @@ type AcsEncoder = z.infer<typeof acs_encoder>;
4591
4591
  declare const acs_entrance: z.ZodObject<{
4592
4592
  acs_system_id: z.ZodString;
4593
4593
  acs_entrance_id: z.ZodString;
4594
+ space_ids: z.ZodArray<z.ZodString, "many">;
4594
4595
  created_at: z.ZodString;
4595
4596
  display_name: z.ZodString;
4596
4597
  connected_account_id: z.ZodString;
@@ -4759,6 +4760,7 @@ declare const acs_entrance: z.ZodObject<{
4759
4760
  error_code: string;
4760
4761
  }[];
4761
4762
  connected_account_id: string;
4763
+ space_ids: string[];
4762
4764
  acs_system_id: string;
4763
4765
  acs_entrance_id: string;
4764
4766
  salto_ks_metadata?: {
@@ -4823,6 +4825,7 @@ declare const acs_entrance: z.ZodObject<{
4823
4825
  error_code: string;
4824
4826
  }[];
4825
4827
  connected_account_id: string;
4828
+ space_ids: string[];
4826
4829
  acs_system_id: string;
4827
4830
  acs_entrance_id: string;
4828
4831
  salto_ks_metadata?: {
@@ -14604,6 +14607,7 @@ declare const batch: z.ZodObject<{
14604
14607
  acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
14605
14608
  acs_system_id: z.ZodString;
14606
14609
  acs_entrance_id: z.ZodString;
14610
+ space_ids: z.ZodArray<z.ZodString, "many">;
14607
14611
  created_at: z.ZodString;
14608
14612
  display_name: z.ZodString;
14609
14613
  connected_account_id: z.ZodString;
@@ -14772,6 +14776,7 @@ declare const batch: z.ZodObject<{
14772
14776
  error_code: string;
14773
14777
  }[];
14774
14778
  connected_account_id: string;
14779
+ space_ids: string[];
14775
14780
  acs_system_id: string;
14776
14781
  acs_entrance_id: string;
14777
14782
  salto_ks_metadata?: {
@@ -14836,6 +14841,7 @@ declare const batch: z.ZodObject<{
14836
14841
  error_code: string;
14837
14842
  }[];
14838
14843
  connected_account_id: string;
14844
+ space_ids: string[];
14839
14845
  acs_system_id: string;
14840
14846
  acs_entrance_id: string;
14841
14847
  salto_ks_metadata?: {
@@ -31644,6 +31650,7 @@ declare const batch: z.ZodObject<{
31644
31650
  error_code: string;
31645
31651
  }[];
31646
31652
  connected_account_id: string;
31653
+ space_ids: string[];
31647
31654
  acs_system_id: string;
31648
31655
  acs_entrance_id: string;
31649
31656
  salto_ks_metadata?: {
@@ -31861,6 +31868,35 @@ declare const batch: z.ZodObject<{
31861
31868
  customization_profile_id?: string | undefined;
31862
31869
  is_encoding_required?: boolean | undefined;
31863
31870
  }[] | undefined;
31871
+ instant_keys?: {
31872
+ workspace_id: string;
31873
+ created_at: string;
31874
+ user_identity_id: string;
31875
+ instant_key_url: string;
31876
+ client_session_id: string;
31877
+ expires_at: string;
31878
+ instant_key_id: string;
31879
+ customization_profile_id?: string | undefined;
31880
+ customization?: {
31881
+ logo_url?: string | undefined;
31882
+ primary_color?: string | undefined;
31883
+ secondary_color?: string | undefined;
31884
+ } | undefined;
31885
+ }[] | undefined;
31886
+ client_sessions?: {
31887
+ workspace_id: string;
31888
+ created_at: string;
31889
+ connected_account_ids: string[];
31890
+ client_session_id: string;
31891
+ expires_at: string;
31892
+ token: string;
31893
+ user_identifier_key: string | null;
31894
+ device_count: number;
31895
+ connect_webview_ids: string[];
31896
+ user_identity_ids: string[];
31897
+ customer_key?: string | undefined;
31898
+ user_identity_id?: string | undefined;
31899
+ }[] | undefined;
31864
31900
  workspaces?: {
31865
31901
  name: string;
31866
31902
  workspace_id: string;
@@ -32880,20 +32916,6 @@ declare const batch: z.ZodObject<{
32880
32916
  result: null;
32881
32917
  action_type: "UNLOCK_DOOR";
32882
32918
  })[] | undefined;
32883
- client_sessions?: {
32884
- workspace_id: string;
32885
- created_at: string;
32886
- connected_account_ids: string[];
32887
- client_session_id: string;
32888
- expires_at: string;
32889
- token: string;
32890
- user_identifier_key: string | null;
32891
- device_count: number;
32892
- connect_webview_ids: string[];
32893
- user_identity_ids: string[];
32894
- customer_key?: string | undefined;
32895
- user_identity_id?: string | undefined;
32896
- }[] | undefined;
32897
32919
  unmanaged_acs_users?: {
32898
32920
  display_name: string;
32899
32921
  workspace_id: string;
@@ -34217,21 +34239,6 @@ declare const batch: z.ZodObject<{
34217
34239
  event_type: "phone.deactivated";
34218
34240
  device_custom_metadata?: Record<string, string | boolean> | undefined;
34219
34241
  })[] | undefined;
34220
- instant_keys?: {
34221
- workspace_id: string;
34222
- created_at: string;
34223
- user_identity_id: string;
34224
- instant_key_url: string;
34225
- client_session_id: string;
34226
- expires_at: string;
34227
- instant_key_id: string;
34228
- customization_profile_id?: string | undefined;
34229
- customization?: {
34230
- logo_url?: string | undefined;
34231
- primary_color?: string | undefined;
34232
- secondary_color?: string | undefined;
34233
- } | undefined;
34234
- }[] | undefined;
34235
34242
  access_codes?: {
34236
34243
  code: string | null;
34237
34244
  type: "time_bound" | "ongoing";
@@ -35543,6 +35550,7 @@ declare const batch: z.ZodObject<{
35543
35550
  error_code: string;
35544
35551
  }[];
35545
35552
  connected_account_id: string;
35553
+ space_ids: string[];
35546
35554
  acs_system_id: string;
35547
35555
  acs_entrance_id: string;
35548
35556
  salto_ks_metadata?: {
@@ -35760,6 +35768,35 @@ declare const batch: z.ZodObject<{
35760
35768
  customization_profile_id?: string | undefined;
35761
35769
  is_encoding_required?: boolean | undefined;
35762
35770
  }[] | undefined;
35771
+ instant_keys?: {
35772
+ workspace_id: string;
35773
+ created_at: string;
35774
+ user_identity_id: string;
35775
+ instant_key_url: string;
35776
+ client_session_id: string;
35777
+ expires_at: string;
35778
+ instant_key_id: string;
35779
+ customization_profile_id?: string | undefined;
35780
+ customization?: {
35781
+ logo_url?: string | undefined;
35782
+ primary_color?: string | undefined;
35783
+ secondary_color?: string | undefined;
35784
+ } | undefined;
35785
+ }[] | undefined;
35786
+ client_sessions?: {
35787
+ workspace_id: string;
35788
+ created_at: string;
35789
+ connected_account_ids: string[];
35790
+ client_session_id: string;
35791
+ expires_at: string;
35792
+ token: string;
35793
+ user_identifier_key: string | null;
35794
+ device_count: number;
35795
+ connect_webview_ids: string[];
35796
+ user_identity_ids: string[];
35797
+ customer_key?: string | undefined;
35798
+ user_identity_id?: string | undefined;
35799
+ }[] | undefined;
35763
35800
  workspaces?: {
35764
35801
  name: string;
35765
35802
  workspace_id: string;
@@ -36779,20 +36816,6 @@ declare const batch: z.ZodObject<{
36779
36816
  result: null;
36780
36817
  action_type: "UNLOCK_DOOR";
36781
36818
  })[] | undefined;
36782
- client_sessions?: {
36783
- workspace_id: string;
36784
- created_at: string;
36785
- connected_account_ids: string[];
36786
- client_session_id: string;
36787
- expires_at: string;
36788
- token: string;
36789
- user_identifier_key: string | null;
36790
- device_count: number;
36791
- connect_webview_ids: string[];
36792
- user_identity_ids: string[];
36793
- customer_key?: string | undefined;
36794
- user_identity_id?: string | undefined;
36795
- }[] | undefined;
36796
36819
  unmanaged_acs_users?: {
36797
36820
  display_name: string;
36798
36821
  workspace_id: string;
@@ -38116,21 +38139,6 @@ declare const batch: z.ZodObject<{
38116
38139
  event_type: "phone.deactivated";
38117
38140
  device_custom_metadata?: Record<string, string | boolean> | undefined;
38118
38141
  })[] | undefined;
38119
- instant_keys?: {
38120
- workspace_id: string;
38121
- created_at: string;
38122
- user_identity_id: string;
38123
- instant_key_url: string;
38124
- client_session_id: string;
38125
- expires_at: string;
38126
- instant_key_id: string;
38127
- customization_profile_id?: string | undefined;
38128
- customization?: {
38129
- logo_url?: string | undefined;
38130
- primary_color?: string | undefined;
38131
- secondary_color?: string | undefined;
38132
- } | undefined;
38133
- }[] | undefined;
38134
38142
  access_codes?: {
38135
38143
  code: string | null;
38136
38144
  type: "time_bound" | "ongoing";
@@ -52692,6 +52700,14 @@ declare const _default: {
52692
52700
  };
52693
52701
  type: string;
52694
52702
  };
52703
+ space_ids: {
52704
+ description: string;
52705
+ items: {
52706
+ format: string;
52707
+ type: string;
52708
+ };
52709
+ type: string;
52710
+ };
52695
52711
  visionline_metadata: {
52696
52712
  description: string;
52697
52713
  properties: {
@@ -63002,6 +63018,14 @@ declare const _default: {
63002
63018
  };
63003
63019
  type: string;
63004
63020
  };
63021
+ space_ids: {
63022
+ description: string;
63023
+ items: {
63024
+ format: string;
63025
+ type: string;
63026
+ };
63027
+ type: string;
63028
+ };
63005
63029
  visionline_metadata: {
63006
63030
  description: string;
63007
63031
  properties: {
@@ -94491,276 +94515,7 @@ declare const _default: {
94491
94515
  properties: {
94492
94516
  acs_entrances: {
94493
94517
  items: {
94494
- description: string;
94495
- properties: {
94496
- acs_entrance_id: {
94497
- description: string;
94498
- format: string;
94499
- type: string;
94500
- };
94501
- acs_system_id: {
94502
- description: string;
94503
- format: string;
94504
- type: string;
94505
- };
94506
- assa_abloy_vostio_metadata: {
94507
- description: string;
94508
- properties: {
94509
- door_name: {
94510
- description: string;
94511
- type: string;
94512
- };
94513
- door_number: {
94514
- description: string;
94515
- format: string;
94516
- type: string;
94517
- };
94518
- door_type: {
94519
- description: string;
94520
- enum: string[];
94521
- type: string;
94522
- };
94523
- pms_id: {
94524
- description: string;
94525
- type: string;
94526
- };
94527
- stand_open: {
94528
- description: string;
94529
- type: string;
94530
- };
94531
- };
94532
- required: string[];
94533
- type: string;
94534
- };
94535
- can_unlock_with_card: {
94536
- description: string;
94537
- type: string;
94538
- };
94539
- can_unlock_with_code: {
94540
- description: string;
94541
- type: string;
94542
- };
94543
- can_unlock_with_mobile_key: {
94544
- description: string;
94545
- type: string;
94546
- };
94547
- connected_account_id: {
94548
- description: string;
94549
- format: string;
94550
- type: string;
94551
- };
94552
- created_at: {
94553
- description: string;
94554
- format: string;
94555
- type: string;
94556
- };
94557
- display_name: {
94558
- description: string;
94559
- type: string;
94560
- };
94561
- dormakaba_ambiance_metadata: {
94562
- description: string;
94563
- properties: {
94564
- access_point_name: {
94565
- description: string;
94566
- type: string;
94567
- };
94568
- };
94569
- required: string[];
94570
- type: string;
94571
- };
94572
- dormakaba_community_metadata: {
94573
- description: string;
94574
- properties: {
94575
- access_point_name: {
94576
- description: string;
94577
- type: string;
94578
- };
94579
- access_point_profile: {
94580
- description: string;
94581
- type: string;
94582
- };
94583
- };
94584
- required: string[];
94585
- type: string;
94586
- };
94587
- errors: {
94588
- description: string;
94589
- items: {
94590
- properties: {
94591
- error_code: {
94592
- description: string;
94593
- type: string;
94594
- };
94595
- message: {
94596
- description: string;
94597
- type: string;
94598
- };
94599
- };
94600
- required: string[];
94601
- type: string;
94602
- };
94603
- type: string;
94604
- };
94605
- hotek_metadata: {
94606
- description: string;
94607
- properties: {
94608
- display_name: {
94609
- description: string;
94610
- type: string;
94611
- };
94612
- door_type: {
94613
- description: string;
94614
- enum: string[];
94615
- type: string;
94616
- };
94617
- room_number: {
94618
- description: string;
94619
- type: string;
94620
- };
94621
- };
94622
- required: string[];
94623
- type: string;
94624
- };
94625
- latch_metadata: {
94626
- description: string;
94627
- properties: {
94628
- accessibility_type: {
94629
- description: string;
94630
- type: string;
94631
- };
94632
- door_name: {
94633
- description: string;
94634
- type: string;
94635
- };
94636
- door_type: {
94637
- description: string;
94638
- type: string;
94639
- };
94640
- is_connected: {
94641
- description: string;
94642
- type: string;
94643
- };
94644
- };
94645
- required: string[];
94646
- type: string;
94647
- };
94648
- salto_ks_metadata: {
94649
- description: string;
94650
- properties: {
94651
- battery_level: {
94652
- description: string;
94653
- type: string;
94654
- };
94655
- door_name: {
94656
- description: string;
94657
- type: string;
94658
- };
94659
- intrusion_alarm: {
94660
- description: string;
94661
- type: string;
94662
- };
94663
- left_open_alarm: {
94664
- description: string;
94665
- type: string;
94666
- };
94667
- lock_type: {
94668
- description: string;
94669
- type: string;
94670
- };
94671
- locked_state: {
94672
- description: string;
94673
- type: string;
94674
- };
94675
- online: {
94676
- description: string;
94677
- type: string;
94678
- };
94679
- privacy_mode: {
94680
- description: string;
94681
- type: string;
94682
- };
94683
- };
94684
- required: string[];
94685
- type: string;
94686
- };
94687
- salto_space_metadata: {
94688
- description: string;
94689
- properties: {
94690
- door_description: {
94691
- description: string;
94692
- type: string;
94693
- };
94694
- door_id: {
94695
- description: string;
94696
- type: string;
94697
- };
94698
- door_name: {
94699
- description: string;
94700
- type: string;
94701
- };
94702
- ext_door_id: {
94703
- deprecated: boolean;
94704
- type: string;
94705
- 'x-deprecated': string;
94706
- };
94707
- room_description: {
94708
- description: string;
94709
- type: string;
94710
- };
94711
- room_name: {
94712
- description: string;
94713
- type: string;
94714
- };
94715
- };
94716
- type: string;
94717
- };
94718
- space_ids: {
94719
- items: {
94720
- format: string;
94721
- type: string;
94722
- };
94723
- type: string;
94724
- };
94725
- visionline_metadata: {
94726
- description: string;
94727
- properties: {
94728
- door_category: {
94729
- description: string;
94730
- enum: string[];
94731
- type: string;
94732
- };
94733
- door_name: {
94734
- description: string;
94735
- type: string;
94736
- };
94737
- profiles: {
94738
- description: string;
94739
- items: {
94740
- properties: {
94741
- visionline_door_profile_id: {
94742
- description: string;
94743
- type: string;
94744
- };
94745
- visionline_door_profile_type: {
94746
- description: string;
94747
- enum: string[];
94748
- type: string;
94749
- };
94750
- };
94751
- required: string[];
94752
- type: string;
94753
- };
94754
- type: string;
94755
- };
94756
- };
94757
- required: string[];
94758
- type: string;
94759
- };
94760
- };
94761
- required: string[];
94762
- type: string;
94763
- 'x-route-path': string;
94518
+ $ref: string;
94764
94519
  };
94765
94520
  type: string;
94766
94521
  };
@@ -97411,276 +97166,7 @@ declare const _default: {
97411
97166
  properties: {
97412
97167
  acs_entrances: {
97413
97168
  items: {
97414
- description: string;
97415
- properties: {
97416
- acs_entrance_id: {
97417
- description: string;
97418
- format: string;
97419
- type: string;
97420
- };
97421
- acs_system_id: {
97422
- description: string;
97423
- format: string;
97424
- type: string;
97425
- };
97426
- assa_abloy_vostio_metadata: {
97427
- description: string;
97428
- properties: {
97429
- door_name: {
97430
- description: string;
97431
- type: string;
97432
- };
97433
- door_number: {
97434
- description: string;
97435
- format: string;
97436
- type: string;
97437
- };
97438
- door_type: {
97439
- description: string;
97440
- enum: string[];
97441
- type: string;
97442
- };
97443
- pms_id: {
97444
- description: string;
97445
- type: string;
97446
- };
97447
- stand_open: {
97448
- description: string;
97449
- type: string;
97450
- };
97451
- };
97452
- required: string[];
97453
- type: string;
97454
- };
97455
- can_unlock_with_card: {
97456
- description: string;
97457
- type: string;
97458
- };
97459
- can_unlock_with_code: {
97460
- description: string;
97461
- type: string;
97462
- };
97463
- can_unlock_with_mobile_key: {
97464
- description: string;
97465
- type: string;
97466
- };
97467
- connected_account_id: {
97468
- description: string;
97469
- format: string;
97470
- type: string;
97471
- };
97472
- created_at: {
97473
- description: string;
97474
- format: string;
97475
- type: string;
97476
- };
97477
- display_name: {
97478
- description: string;
97479
- type: string;
97480
- };
97481
- dormakaba_ambiance_metadata: {
97482
- description: string;
97483
- properties: {
97484
- access_point_name: {
97485
- description: string;
97486
- type: string;
97487
- };
97488
- };
97489
- required: string[];
97490
- type: string;
97491
- };
97492
- dormakaba_community_metadata: {
97493
- description: string;
97494
- properties: {
97495
- access_point_name: {
97496
- description: string;
97497
- type: string;
97498
- };
97499
- access_point_profile: {
97500
- description: string;
97501
- type: string;
97502
- };
97503
- };
97504
- required: string[];
97505
- type: string;
97506
- };
97507
- errors: {
97508
- description: string;
97509
- items: {
97510
- properties: {
97511
- error_code: {
97512
- description: string;
97513
- type: string;
97514
- };
97515
- message: {
97516
- description: string;
97517
- type: string;
97518
- };
97519
- };
97520
- required: string[];
97521
- type: string;
97522
- };
97523
- type: string;
97524
- };
97525
- hotek_metadata: {
97526
- description: string;
97527
- properties: {
97528
- display_name: {
97529
- description: string;
97530
- type: string;
97531
- };
97532
- door_type: {
97533
- description: string;
97534
- enum: string[];
97535
- type: string;
97536
- };
97537
- room_number: {
97538
- description: string;
97539
- type: string;
97540
- };
97541
- };
97542
- required: string[];
97543
- type: string;
97544
- };
97545
- latch_metadata: {
97546
- description: string;
97547
- properties: {
97548
- accessibility_type: {
97549
- description: string;
97550
- type: string;
97551
- };
97552
- door_name: {
97553
- description: string;
97554
- type: string;
97555
- };
97556
- door_type: {
97557
- description: string;
97558
- type: string;
97559
- };
97560
- is_connected: {
97561
- description: string;
97562
- type: string;
97563
- };
97564
- };
97565
- required: string[];
97566
- type: string;
97567
- };
97568
- salto_ks_metadata: {
97569
- description: string;
97570
- properties: {
97571
- battery_level: {
97572
- description: string;
97573
- type: string;
97574
- };
97575
- door_name: {
97576
- description: string;
97577
- type: string;
97578
- };
97579
- intrusion_alarm: {
97580
- description: string;
97581
- type: string;
97582
- };
97583
- left_open_alarm: {
97584
- description: string;
97585
- type: string;
97586
- };
97587
- lock_type: {
97588
- description: string;
97589
- type: string;
97590
- };
97591
- locked_state: {
97592
- description: string;
97593
- type: string;
97594
- };
97595
- online: {
97596
- description: string;
97597
- type: string;
97598
- };
97599
- privacy_mode: {
97600
- description: string;
97601
- type: string;
97602
- };
97603
- };
97604
- required: string[];
97605
- type: string;
97606
- };
97607
- salto_space_metadata: {
97608
- description: string;
97609
- properties: {
97610
- door_description: {
97611
- description: string;
97612
- type: string;
97613
- };
97614
- door_id: {
97615
- description: string;
97616
- type: string;
97617
- };
97618
- door_name: {
97619
- description: string;
97620
- type: string;
97621
- };
97622
- ext_door_id: {
97623
- deprecated: boolean;
97624
- type: string;
97625
- 'x-deprecated': string;
97626
- };
97627
- room_description: {
97628
- description: string;
97629
- type: string;
97630
- };
97631
- room_name: {
97632
- description: string;
97633
- type: string;
97634
- };
97635
- };
97636
- type: string;
97637
- };
97638
- space_ids: {
97639
- items: {
97640
- format: string;
97641
- type: string;
97642
- };
97643
- type: string;
97644
- };
97645
- visionline_metadata: {
97646
- description: string;
97647
- properties: {
97648
- door_category: {
97649
- description: string;
97650
- enum: string[];
97651
- type: string;
97652
- };
97653
- door_name: {
97654
- description: string;
97655
- type: string;
97656
- };
97657
- profiles: {
97658
- description: string;
97659
- items: {
97660
- properties: {
97661
- visionline_door_profile_id: {
97662
- description: string;
97663
- type: string;
97664
- };
97665
- visionline_door_profile_type: {
97666
- description: string;
97667
- enum: string[];
97668
- type: string;
97669
- };
97670
- };
97671
- required: string[];
97672
- type: string;
97673
- };
97674
- type: string;
97675
- };
97676
- };
97677
- required: string[];
97678
- type: string;
97679
- };
97680
- };
97681
- required: string[];
97682
- type: string;
97683
- 'x-route-path': string;
97169
+ $ref: string;
97684
97170
  };
97685
97171
  type: string;
97686
97172
  };
@@ -121163,6 +120649,8 @@ type Routes = {
121163
120649
  acs_system_id: string;
121164
120650
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
121165
120651
  acs_entrance_id: string;
120652
+ /** IDs of the spaces that the entrance is in. */
120653
+ space_ids: string[];
121166
120654
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
121167
120655
  created_at: string;
121168
120656
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -124342,6 +123830,8 @@ type Routes = {
124342
123830
  acs_system_id: string;
124343
123831
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
124344
123832
  acs_entrance_id: string;
123833
+ /** IDs of the spaces that the entrance is in. */
123834
+ space_ids: string[];
124345
123835
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
124346
123836
  created_at: string;
124347
123837
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -130311,6 +129801,8 @@ type Routes = {
130311
129801
  acs_system_id: string;
130312
129802
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
130313
129803
  acs_entrance_id: string;
129804
+ /** IDs of the spaces that the entrance is in. */
129805
+ space_ids: string[];
130314
129806
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
130315
129807
  created_at: string;
130316
129808
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -131677,6 +131169,8 @@ type Routes = {
131677
131169
  acs_system_id: string;
131678
131170
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
131679
131171
  acs_entrance_id: string;
131172
+ /** IDs of the spaces that the entrance is in. */
131173
+ space_ids: string[];
131680
131174
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
131681
131175
  created_at: string;
131682
131176
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -135123,6 +134617,8 @@ type Routes = {
135123
134617
  acs_system_id: string;
135124
134618
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
135125
134619
  acs_entrance_id: string;
134620
+ /** IDs of the spaces that the entrance is in. */
134621
+ space_ids: string[];
135126
134622
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
135127
134623
  created_at: string;
135128
134624
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -135290,6 +134786,8 @@ type Routes = {
135290
134786
  acs_system_id: string;
135291
134787
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
135292
134788
  acs_entrance_id: string;
134789
+ /** IDs of the spaces that the entrance is in. */
134790
+ space_ids: string[];
135293
134791
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
135294
134792
  created_at: string;
135295
134793
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -136731,6 +136229,8 @@ type Routes = {
136731
136229
  acs_system_id: string;
136732
136230
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
136733
136231
  acs_entrance_id: string;
136232
+ /** IDs of the spaces that the entrance is in. */
136233
+ space_ids: string[];
136734
136234
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
136735
136235
  created_at: string;
136736
136236
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -168536,6 +168036,8 @@ type Routes = {
168536
168036
  acs_system_id: string;
168537
168037
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
168538
168038
  acs_entrance_id: string;
168039
+ /** IDs of the spaces that the entrance is in. */
168040
+ space_ids: string[];
168539
168041
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
168540
168042
  created_at: string;
168541
168043
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -170087,6 +169589,8 @@ type Routes = {
170087
169589
  acs_system_id: string;
170088
169590
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
170089
169591
  acs_entrance_id: string;
169592
+ /** IDs of the spaces that the entrance is in. */
169593
+ space_ids: string[];
170090
169594
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
170091
169595
  created_at: string;
170092
169596
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
@@ -170200,7 +169704,6 @@ type Routes = {
170200
169704
  can_unlock_with_card?: boolean | undefined;
170201
169705
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
170202
169706
  can_unlock_with_code?: boolean | undefined;
170203
- space_ids: string[];
170204
169707
  }[] | undefined;
170205
169708
  connected_accounts?: {
170206
169709
  /** ID of the connected account. */
@@ -190969,6 +190472,8 @@ type Routes = {
190969
190472
  acs_system_id: string;
190970
190473
  /** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
190971
190474
  acs_entrance_id: string;
190475
+ /** IDs of the spaces that the entrance is in. */
190476
+ space_ids: string[];
190972
190477
  /** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
190973
190478
  created_at: string;
190974
190479
  /** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */