@seamapi/types 1.424.0 → 1.426.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 (35) hide show
  1. package/dist/connect.cjs +256 -31
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +653 -16
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -0
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
  11. package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
  12. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-system.js +4 -1
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  16. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  17. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  18. package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
  19. package/lib/seam/connect/models/devices/device.d.ts +6 -0
  20. package/lib/seam/connect/models/devices/device.js +1 -0
  21. package/lib/seam/connect/models/devices/device.js.map +1 -1
  22. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
  23. package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
  24. package/lib/seam/connect/openapi.d.ts +287 -4
  25. package/lib/seam/connect/openapi.js +215 -8
  26. package/lib/seam/connect/openapi.js.map +1 -1
  27. package/lib/seam/connect/route-types.d.ts +314 -10
  28. package/package.json +1 -1
  29. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  30. package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
  31. package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
  32. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
  33. package/src/lib/seam/connect/models/devices/device.ts +1 -0
  34. package/src/lib/seam/connect/openapi.ts +242 -8
  35. package/src/lib/seam/connect/route-types.ts +314 -0
@@ -3844,6 +3844,7 @@ type AcsAccessGroup = z.output<typeof acs_access_group>;
3844
3844
  declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3845
3845
  acs_credential_id: z.ZodString;
3846
3846
  acs_user_id: z.ZodOptional<z.ZodString>;
3847
+ connected_account_id: z.ZodString;
3847
3848
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
3848
3849
  acs_system_id: z.ZodString;
3849
3850
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
@@ -4012,6 +4013,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4012
4013
  message: string;
4013
4014
  error_code: string;
4014
4015
  }[];
4016
+ connected_account_id: string;
4015
4017
  warnings: ({
4016
4018
  message: string;
4017
4019
  created_at: string;
@@ -4082,6 +4084,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4082
4084
  message: string;
4083
4085
  error_code: string;
4084
4086
  }[];
4087
+ connected_account_id: string;
4085
4088
  warnings: ({
4086
4089
  message: string;
4087
4090
  created_at: string;
@@ -4148,6 +4151,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4148
4151
  declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4149
4152
  acs_credential_id: z.ZodString;
4150
4153
  acs_user_id: z.ZodOptional<z.ZodString>;
4154
+ connected_account_id: z.ZodString;
4151
4155
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
4152
4156
  acs_system_id: z.ZodString;
4153
4157
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
@@ -4316,6 +4320,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4316
4320
  message: string;
4317
4321
  error_code: string;
4318
4322
  }[];
4323
+ connected_account_id: string;
4319
4324
  warnings: ({
4320
4325
  message: string;
4321
4326
  created_at: string;
@@ -4386,6 +4391,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4386
4391
  message: string;
4387
4392
  error_code: string;
4388
4393
  }[];
4394
+ connected_account_id: string;
4389
4395
  warnings: ({
4390
4396
  message: string;
4391
4397
  created_at: string;
@@ -4499,7 +4505,7 @@ declare const acs_encoder: z.ZodObject<{
4499
4505
  }>;
4500
4506
  type AcsEncoder = z.infer<typeof acs_encoder>;
4501
4507
 
4502
- declare const acs_entrance: z.ZodObject<{
4508
+ declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
4503
4509
  acs_system_id: z.ZodString;
4504
4510
  acs_entrance_id: z.ZodString;
4505
4511
  created_at: z.ZodString;
@@ -4626,7 +4632,11 @@ declare const acs_entrance: z.ZodObject<{
4626
4632
  ext_door_id: string;
4627
4633
  door_description?: string | undefined;
4628
4634
  }>>;
4629
- }, "strip", z.ZodTypeAny, {
4635
+ }, {
4636
+ can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
4637
+ can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
4638
+ can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
4639
+ }>, "strip", z.ZodTypeAny, {
4630
4640
  display_name: string;
4631
4641
  created_at: string;
4632
4642
  errors: {
@@ -4661,6 +4671,9 @@ declare const acs_entrance: z.ZodObject<{
4661
4671
  stand_open?: boolean | undefined;
4662
4672
  pms_id?: string | undefined;
4663
4673
  } | undefined;
4674
+ can_unlock_with_code?: boolean | undefined;
4675
+ can_unlock_with_mobile_key?: boolean | undefined;
4676
+ can_unlock_with_card?: boolean | undefined;
4664
4677
  latch_metadata?: {
4665
4678
  door_name: string;
4666
4679
  is_connected: boolean;
@@ -4710,6 +4723,9 @@ declare const acs_entrance: z.ZodObject<{
4710
4723
  stand_open?: boolean | undefined;
4711
4724
  pms_id?: string | undefined;
4712
4725
  } | undefined;
4726
+ can_unlock_with_code?: boolean | undefined;
4727
+ can_unlock_with_mobile_key?: boolean | undefined;
4728
+ can_unlock_with_card?: boolean | undefined;
4713
4729
  latch_metadata?: {
4714
4730
  door_name: string;
4715
4731
  is_connected: boolean;
@@ -6546,6 +6562,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6546
6562
  acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
6547
6563
  acs_credential_id: z.ZodString;
6548
6564
  acs_user_id: z.ZodOptional<z.ZodString>;
6565
+ connected_account_id: z.ZodString;
6549
6566
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
6550
6567
  acs_system_id: z.ZodString;
6551
6568
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
@@ -6714,6 +6731,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6714
6731
  message: string;
6715
6732
  error_code: string;
6716
6733
  }[];
6734
+ connected_account_id: string;
6717
6735
  warnings: ({
6718
6736
  message: string;
6719
6737
  created_at: string;
@@ -6784,6 +6802,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6784
6802
  message: string;
6785
6803
  error_code: string;
6786
6804
  }[];
6805
+ connected_account_id: string;
6787
6806
  warnings: ({
6788
6807
  message: string;
6789
6808
  created_at: string;
@@ -6849,6 +6868,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6849
6868
  }>, z.ZodObject<z.objectUtil.extendShape<{
6850
6869
  acs_credential_id: z.ZodString;
6851
6870
  acs_user_id: z.ZodOptional<z.ZodString>;
6871
+ connected_account_id: z.ZodString;
6852
6872
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
6853
6873
  acs_system_id: z.ZodString;
6854
6874
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
@@ -7017,6 +7037,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7017
7037
  message: string;
7018
7038
  error_code: string;
7019
7039
  }[];
7040
+ connected_account_id: string;
7020
7041
  warnings: ({
7021
7042
  message: string;
7022
7043
  created_at: string;
@@ -7087,6 +7108,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7087
7108
  message: string;
7088
7109
  error_code: string;
7089
7110
  }[];
7111
+ connected_account_id: string;
7090
7112
  warnings: ({
7091
7113
  message: string;
7092
7114
  created_at: string;
@@ -7194,6 +7216,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7194
7216
  message: string;
7195
7217
  error_code: string;
7196
7218
  }[];
7219
+ connected_account_id: string;
7197
7220
  warnings: ({
7198
7221
  message: string;
7199
7222
  created_at: string;
@@ -7264,6 +7287,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7264
7287
  message: string;
7265
7288
  error_code: string;
7266
7289
  }[];
7290
+ connected_account_id: string;
7267
7291
  warnings: ({
7268
7292
  message: string;
7269
7293
  created_at: string;
@@ -7361,6 +7385,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7361
7385
  message: string;
7362
7386
  error_code: string;
7363
7387
  }[];
7388
+ connected_account_id: string;
7364
7389
  warnings: ({
7365
7390
  message: string;
7366
7391
  created_at: string;
@@ -7431,6 +7456,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7431
7456
  message: string;
7432
7457
  error_code: string;
7433
7458
  }[];
7459
+ connected_account_id: string;
7434
7460
  warnings: ({
7435
7461
  message: string;
7436
7462
  created_at: string;
@@ -7533,6 +7559,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7533
7559
  message: string;
7534
7560
  error_code: string;
7535
7561
  }[];
7562
+ connected_account_id: string;
7536
7563
  warnings: ({
7537
7564
  message: string;
7538
7565
  created_at: string;
@@ -7603,6 +7630,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7603
7630
  message: string;
7604
7631
  error_code: string;
7605
7632
  }[];
7633
+ connected_account_id: string;
7606
7634
  warnings: ({
7607
7635
  message: string;
7608
7636
  created_at: string;
@@ -7706,6 +7734,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7706
7734
  message: string;
7707
7735
  error_code: string;
7708
7736
  }[];
7737
+ connected_account_id: string;
7709
7738
  warnings: ({
7710
7739
  message: string;
7711
7740
  created_at: string;
@@ -7776,6 +7805,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7776
7805
  message: string;
7777
7806
  error_code: string;
7778
7807
  }[];
7808
+ connected_account_id: string;
7779
7809
  warnings: ({
7780
7810
  message: string;
7781
7811
  created_at: string;
@@ -8122,6 +8152,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8122
8152
  result: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
8123
8153
  acs_credential_id: z.ZodString;
8124
8154
  acs_user_id: z.ZodOptional<z.ZodString>;
8155
+ connected_account_id: z.ZodString;
8125
8156
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
8126
8157
  acs_system_id: z.ZodString;
8127
8158
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
@@ -8290,6 +8321,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8290
8321
  message: string;
8291
8322
  error_code: string;
8292
8323
  }[];
8324
+ connected_account_id: string;
8293
8325
  warnings: ({
8294
8326
  message: string;
8295
8327
  created_at: string;
@@ -8360,6 +8392,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8360
8392
  message: string;
8361
8393
  error_code: string;
8362
8394
  }[];
8395
+ connected_account_id: string;
8363
8396
  warnings: ({
8364
8397
  message: string;
8365
8398
  created_at: string;
@@ -8425,6 +8458,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8425
8458
  }>, z.ZodObject<z.objectUtil.extendShape<{
8426
8459
  acs_credential_id: z.ZodString;
8427
8460
  acs_user_id: z.ZodOptional<z.ZodString>;
8461
+ connected_account_id: z.ZodString;
8428
8462
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
8429
8463
  acs_system_id: z.ZodString;
8430
8464
  parent_acs_credential_id: z.ZodOptional<z.ZodString>;
@@ -8593,6 +8627,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8593
8627
  message: string;
8594
8628
  error_code: string;
8595
8629
  }[];
8630
+ connected_account_id: string;
8596
8631
  warnings: ({
8597
8632
  message: string;
8598
8633
  created_at: string;
@@ -8663,6 +8698,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8663
8698
  message: string;
8664
8699
  error_code: string;
8665
8700
  }[];
8701
+ connected_account_id: string;
8666
8702
  warnings: ({
8667
8703
  message: string;
8668
8704
  created_at: string;
@@ -8738,6 +8774,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8738
8774
  message: string;
8739
8775
  error_code: string;
8740
8776
  }[];
8777
+ connected_account_id: string;
8741
8778
  warnings: ({
8742
8779
  message: string;
8743
8780
  created_at: string;
@@ -8808,6 +8845,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8808
8845
  message: string;
8809
8846
  error_code: string;
8810
8847
  }[];
8848
+ connected_account_id: string;
8811
8849
  warnings: ({
8812
8850
  message: string;
8813
8851
  created_at: string;
@@ -8884,6 +8922,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8884
8922
  message: string;
8885
8923
  error_code: string;
8886
8924
  }[];
8925
+ connected_account_id: string;
8887
8926
  warnings: ({
8888
8927
  message: string;
8889
8928
  created_at: string;
@@ -8954,6 +8993,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8954
8993
  message: string;
8955
8994
  error_code: string;
8956
8995
  }[];
8996
+ connected_account_id: string;
8957
8997
  warnings: ({
8958
8998
  message: string;
8959
8999
  created_at: string;
@@ -14226,6 +14266,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14226
14266
  can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
14227
14267
  can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
14228
14268
  can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
14269
+ can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
14229
14270
  }>>, "strip", z.ZodTypeAny, {
14230
14271
  display_name: string;
14231
14272
  device_id: string;
@@ -14839,6 +14880,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14839
14880
  can_simulate_removal?: boolean | undefined;
14840
14881
  can_simulate_connection?: boolean | undefined;
14841
14882
  can_simulate_disconnection?: boolean | undefined;
14883
+ can_unlock_with_code?: boolean | undefined;
14842
14884
  nickname?: string | undefined;
14843
14885
  }, {
14844
14886
  display_name: string;
@@ -15453,6 +15495,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15453
15495
  can_simulate_removal?: boolean | undefined;
15454
15496
  can_simulate_connection?: boolean | undefined;
15455
15497
  can_simulate_disconnection?: boolean | undefined;
15498
+ can_unlock_with_code?: boolean | undefined;
15456
15499
  nickname?: string | undefined;
15457
15500
  }>;
15458
15501
  type Device = z.infer<typeof device>;
@@ -15525,6 +15568,7 @@ declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
15525
15568
  can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
15526
15569
  can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
15527
15570
  can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
15571
+ can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
15528
15572
  }>>, "strip", z.ZodTypeAny, {
15529
15573
  display_name: string;
15530
15574
  image_url: string;
@@ -15541,6 +15585,7 @@ declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
15541
15585
  can_simulate_removal?: boolean | undefined;
15542
15586
  can_simulate_connection?: boolean | undefined;
15543
15587
  can_simulate_disconnection?: boolean | undefined;
15588
+ can_unlock_with_code?: boolean | undefined;
15544
15589
  }, {
15545
15590
  display_name: string;
15546
15591
  image_url: string;
@@ -15557,6 +15602,7 @@ declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
15557
15602
  can_simulate_removal?: boolean | undefined;
15558
15603
  can_simulate_connection?: boolean | undefined;
15559
15604
  can_simulate_disconnection?: boolean | undefined;
15605
+ can_unlock_with_code?: boolean | undefined;
15560
15606
  }>;
15561
15607
  type DeviceProvider = z.infer<typeof device_provider>;
15562
15608
 
@@ -18179,6 +18225,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
18179
18225
  can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
18180
18226
  can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
18181
18227
  can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
18228
+ can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
18182
18229
  }>>, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location">, {
18183
18230
  is_managed: z.ZodLiteral<false>;
18184
18231
  properties: z.ZodObject<Pick<{
@@ -18328,6 +18375,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
18328
18375
  can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
18329
18376
  can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
18330
18377
  can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
18378
+ can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
18331
18379
  }>>, "strip", z.ZodTypeAny, {
18332
18380
  device_id: string;
18333
18381
  workspace_id: string;
@@ -18558,6 +18606,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
18558
18606
  can_simulate_removal?: boolean | undefined;
18559
18607
  can_simulate_connection?: boolean | undefined;
18560
18608
  can_simulate_disconnection?: boolean | undefined;
18609
+ can_unlock_with_code?: boolean | undefined;
18561
18610
  }, {
18562
18611
  device_id: string;
18563
18612
  workspace_id: string;
@@ -18788,6 +18837,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
18788
18837
  can_simulate_removal?: boolean | undefined;
18789
18838
  can_simulate_connection?: boolean | undefined;
18790
18839
  can_simulate_disconnection?: boolean | undefined;
18840
+ can_unlock_with_code?: boolean | undefined;
18791
18841
  }>;
18792
18842
  type UnmanagedDevice = z.infer<typeof unmanaged_device>;
18793
18843
 
@@ -22460,6 +22510,11 @@ declare const _default: {
22460
22510
  nullable: boolean;
22461
22511
  type: string;
22462
22512
  };
22513
+ connected_account_id: {
22514
+ description: string;
22515
+ format: string;
22516
+ type: string;
22517
+ };
22463
22518
  created_at: {
22464
22519
  description: string;
22465
22520
  format: string;
@@ -22805,6 +22860,18 @@ declare const _default: {
22805
22860
  required: string[];
22806
22861
  type: string;
22807
22862
  };
22863
+ can_unlock_with_card: {
22864
+ description: string;
22865
+ type: string;
22866
+ };
22867
+ can_unlock_with_code: {
22868
+ description: string;
22869
+ type: string;
22870
+ };
22871
+ can_unlock_with_mobile_key: {
22872
+ description: string;
22873
+ type: string;
22874
+ };
22808
22875
  connected_account_id: {
22809
22876
  description: string;
22810
22877
  format: string;
@@ -24001,6 +24068,11 @@ declare const _default: {
24001
24068
  nullable: boolean;
24002
24069
  type: string;
24003
24070
  };
24071
+ connected_account_id: {
24072
+ description: string;
24073
+ format: string;
24074
+ type: string;
24075
+ };
24004
24076
  created_at: {
24005
24077
  description: string;
24006
24078
  format: string;
@@ -24248,6 +24320,11 @@ declare const _default: {
24248
24320
  nullable: boolean;
24249
24321
  type: string;
24250
24322
  };
24323
+ connected_account_id: {
24324
+ description: string;
24325
+ format: string;
24326
+ type: string;
24327
+ };
24251
24328
  created_at: {
24252
24329
  description: string;
24253
24330
  format: string;
@@ -24694,6 +24771,11 @@ declare const _default: {
24694
24771
  nullable: boolean;
24695
24772
  type: string;
24696
24773
  };
24774
+ connected_account_id: {
24775
+ description: string;
24776
+ format: string;
24777
+ type: string;
24778
+ };
24697
24779
  created_at: {
24698
24780
  description: string;
24699
24781
  format: string;
@@ -24941,6 +25023,11 @@ declare const _default: {
24941
25023
  nullable: boolean;
24942
25024
  type: string;
24943
25025
  };
25026
+ connected_account_id: {
25027
+ description: string;
25028
+ format: string;
25029
+ type: string;
25030
+ };
24944
25031
  created_at: {
24945
25032
  description: string;
24946
25033
  format: string;
@@ -26070,6 +26157,9 @@ declare const _default: {
26070
26157
  can_turn_off_hvac: {
26071
26158
  type: string;
26072
26159
  };
26160
+ can_unlock_with_code: {
26161
+ type: string;
26162
+ };
26073
26163
  capabilities_supported: {
26074
26164
  description: string;
26075
26165
  items: {
@@ -28409,6 +28499,9 @@ declare const _default: {
28409
28499
  can_turn_off_hvac: {
28410
28500
  type: string;
28411
28501
  };
28502
+ can_unlock_with_code: {
28503
+ type: string;
28504
+ };
28412
28505
  device_provider_name: {
28413
28506
  enum: string[];
28414
28507
  type: string;
@@ -31962,6 +32055,18 @@ declare const _default: {
31962
32055
  required: string[];
31963
32056
  type: string;
31964
32057
  };
32058
+ can_unlock_with_card: {
32059
+ description: string;
32060
+ type: string;
32061
+ };
32062
+ can_unlock_with_code: {
32063
+ description: string;
32064
+ type: string;
32065
+ };
32066
+ can_unlock_with_mobile_key: {
32067
+ description: string;
32068
+ type: string;
32069
+ };
31965
32070
  connected_account_id: {
31966
32071
  description: string;
31967
32072
  format: string;
@@ -32184,6 +32289,11 @@ declare const _default: {
32184
32289
  nullable: boolean;
32185
32290
  type: string;
32186
32291
  };
32292
+ connected_account_id: {
32293
+ description: string;
32294
+ format: string;
32295
+ type: string;
32296
+ };
32187
32297
  created_at: {
32188
32298
  description: string;
32189
32299
  format: string;
@@ -33052,6 +33162,11 @@ declare const _default: {
33052
33162
  nullable: boolean;
33053
33163
  type: string;
33054
33164
  };
33165
+ connected_account_id: {
33166
+ description: string;
33167
+ format: string;
33168
+ type: string;
33169
+ };
33055
33170
  created_at: {
33056
33171
  description: string;
33057
33172
  format: string;
@@ -33730,6 +33845,9 @@ declare const _default: {
33730
33845
  can_turn_off_hvac: {
33731
33846
  type: string;
33732
33847
  };
33848
+ can_unlock_with_code: {
33849
+ type: string;
33850
+ };
33733
33851
  capabilities_supported: {
33734
33852
  description: string;
33735
33853
  items: {
@@ -34580,7 +34698,9 @@ declare const _default: {
34580
34698
  type: string;
34581
34699
  };
34582
34700
  use_offline_access_code: {
34701
+ deprecated: boolean;
34583
34702
  type: string;
34703
+ 'x-deprecated': string;
34584
34704
  };
34585
34705
  };
34586
34706
  required: string[];
@@ -34742,7 +34862,9 @@ declare const _default: {
34742
34862
  type: string;
34743
34863
  };
34744
34864
  use_offline_access_code: {
34865
+ deprecated: boolean;
34745
34866
  type: string;
34867
+ 'x-deprecated': string;
34746
34868
  };
34747
34869
  };
34748
34870
  required: string[];
@@ -34891,7 +35013,9 @@ declare const _default: {
34891
35013
  type: string;
34892
35014
  };
34893
35015
  use_offline_access_code: {
35016
+ deprecated: boolean;
34894
35017
  type: string;
35018
+ 'x-deprecated': string;
34895
35019
  };
34896
35020
  };
34897
35021
  required: string[];
@@ -36959,7 +37083,9 @@ declare const _default: {
36959
37083
  type: string;
36960
37084
  };
36961
37085
  use_offline_access_code: {
37086
+ deprecated: boolean;
36962
37087
  type: string;
37088
+ 'x-deprecated': string;
36963
37089
  };
36964
37090
  };
36965
37091
  required: string[];
@@ -37125,7 +37251,9 @@ declare const _default: {
37125
37251
  type: string;
37126
37252
  };
37127
37253
  use_offline_access_code: {
37254
+ deprecated: boolean;
37128
37255
  type: string;
37256
+ 'x-deprecated': string;
37129
37257
  };
37130
37258
  };
37131
37259
  required: string[];
@@ -37291,7 +37419,9 @@ declare const _default: {
37291
37419
  type: string;
37292
37420
  };
37293
37421
  use_offline_access_code: {
37422
+ deprecated: boolean;
37294
37423
  type: string;
37424
+ 'x-deprecated': string;
37295
37425
  };
37296
37426
  };
37297
37427
  required: string[];
@@ -37609,7 +37739,6 @@ declare const _default: {
37609
37739
  };
37610
37740
  ends_at: {
37611
37741
  description: string;
37612
- format: string;
37613
37742
  type: string;
37614
37743
  };
37615
37744
  location: {
@@ -37675,7 +37804,6 @@ declare const _default: {
37675
37804
  };
37676
37805
  starts_at: {
37677
37806
  description: string;
37678
- format: string;
37679
37807
  type: string;
37680
37808
  };
37681
37809
  };
@@ -48249,6 +48377,7 @@ declare const _default: {
48249
48377
  type: string;
48250
48378
  additionalProperties?: never;
48251
48379
  items?: never;
48380
+ minLength?: never;
48252
48381
  default?: never;
48253
48382
  exclusiveMinimum?: never;
48254
48383
  minimum?: never;
@@ -48266,6 +48395,7 @@ declare const _default: {
48266
48395
  description: string;
48267
48396
  type: string;
48268
48397
  items?: never;
48398
+ minLength?: never;
48269
48399
  default?: never;
48270
48400
  exclusiveMinimum?: never;
48271
48401
  minimum?: never;
@@ -48282,6 +48412,21 @@ declare const _default: {
48282
48412
  type: string;
48283
48413
  description?: never;
48284
48414
  additionalProperties?: never;
48415
+ minLength?: never;
48416
+ default?: never;
48417
+ exclusiveMinimum?: never;
48418
+ minimum?: never;
48419
+ nullable?: never;
48420
+ };
48421
+ } | {
48422
+ in: string;
48423
+ name: string;
48424
+ schema: {
48425
+ description: string;
48426
+ minLength: number;
48427
+ type: string;
48428
+ additionalProperties?: never;
48429
+ items?: never;
48285
48430
  default?: never;
48286
48431
  exclusiveMinimum?: never;
48287
48432
  minimum?: never;
@@ -48298,6 +48443,7 @@ declare const _default: {
48298
48443
  type: string;
48299
48444
  additionalProperties?: never;
48300
48445
  items?: never;
48446
+ minLength?: never;
48301
48447
  nullable?: never;
48302
48448
  };
48303
48449
  } | {
@@ -48309,6 +48455,7 @@ declare const _default: {
48309
48455
  type: string;
48310
48456
  additionalProperties?: never;
48311
48457
  items?: never;
48458
+ minLength?: never;
48312
48459
  default?: never;
48313
48460
  exclusiveMinimum?: never;
48314
48461
  minimum?: never;
@@ -48412,6 +48559,11 @@ declare const _default: {
48412
48559
  nullable: boolean;
48413
48560
  type: string;
48414
48561
  };
48562
+ search: {
48563
+ description: string;
48564
+ minLength: number;
48565
+ type: string;
48566
+ };
48415
48567
  user_identifier_key: {
48416
48568
  description: string;
48417
48569
  type: string;
@@ -50375,6 +50527,7 @@ declare const _default: {
50375
50527
  'x-undocumented'?: never;
50376
50528
  deprecated?: never;
50377
50529
  'x-deprecated'?: never;
50530
+ minLength?: never;
50378
50531
  };
50379
50532
  } | {
50380
50533
  in: string;
@@ -50392,6 +50545,7 @@ declare const _default: {
50392
50545
  'x-undocumented'?: never;
50393
50546
  deprecated?: never;
50394
50547
  'x-deprecated'?: never;
50548
+ minLength?: never;
50395
50549
  };
50396
50550
  } | {
50397
50551
  in: string;
@@ -50414,6 +50568,7 @@ declare const _default: {
50414
50568
  'x-undocumented'?: never;
50415
50569
  deprecated?: never;
50416
50570
  'x-deprecated'?: never;
50571
+ minLength?: never;
50417
50572
  };
50418
50573
  } | {
50419
50574
  in: string;
@@ -50435,6 +50590,7 @@ declare const _default: {
50435
50590
  'x-undocumented'?: never;
50436
50591
  deprecated?: never;
50437
50592
  'x-deprecated'?: never;
50593
+ minLength?: never;
50438
50594
  };
50439
50595
  } | {
50440
50596
  in: string;
@@ -50461,6 +50617,7 @@ declare const _default: {
50461
50617
  'x-undocumented'?: never;
50462
50618
  deprecated?: never;
50463
50619
  'x-deprecated'?: never;
50620
+ minLength?: never;
50464
50621
  };
50465
50622
  } | {
50466
50623
  in: string;
@@ -50478,6 +50635,7 @@ declare const _default: {
50478
50635
  'x-undocumented'?: never;
50479
50636
  deprecated?: never;
50480
50637
  'x-deprecated'?: never;
50638
+ minLength?: never;
50481
50639
  };
50482
50640
  } | {
50483
50641
  in: string;
@@ -50495,6 +50653,7 @@ declare const _default: {
50495
50653
  'x-undocumented'?: never;
50496
50654
  deprecated?: never;
50497
50655
  'x-deprecated'?: never;
50656
+ minLength?: never;
50498
50657
  };
50499
50658
  } | {
50500
50659
  in: string;
@@ -50512,6 +50671,7 @@ declare const _default: {
50512
50671
  'x-undocumented'?: never;
50513
50672
  deprecated?: never;
50514
50673
  'x-deprecated'?: never;
50674
+ minLength?: never;
50515
50675
  };
50516
50676
  } | {
50517
50677
  in: string;
@@ -50533,6 +50693,7 @@ declare const _default: {
50533
50693
  'x-undocumented'?: never;
50534
50694
  deprecated?: never;
50535
50695
  'x-deprecated'?: never;
50696
+ minLength?: never;
50536
50697
  };
50537
50698
  } | {
50538
50699
  in: string;
@@ -50550,6 +50711,7 @@ declare const _default: {
50550
50711
  'x-undocumented'?: never;
50551
50712
  deprecated?: never;
50552
50713
  'x-deprecated'?: never;
50714
+ minLength?: never;
50553
50715
  };
50554
50716
  } | {
50555
50717
  in: string;
@@ -50572,6 +50734,7 @@ declare const _default: {
50572
50734
  nullable?: never;
50573
50735
  deprecated?: never;
50574
50736
  'x-deprecated'?: never;
50737
+ minLength?: never;
50575
50738
  };
50576
50739
  } | {
50577
50740
  in: string;
@@ -50589,6 +50752,25 @@ declare const _default: {
50589
50752
  default?: never;
50590
50753
  additionalProperties?: never;
50591
50754
  'x-undocumented'?: never;
50755
+ minLength?: never;
50756
+ };
50757
+ } | {
50758
+ in: string;
50759
+ name: string;
50760
+ schema: {
50761
+ description: string;
50762
+ minLength: number;
50763
+ type: string;
50764
+ items?: never;
50765
+ format?: never;
50766
+ oneOf?: never;
50767
+ enum?: never;
50768
+ default?: never;
50769
+ additionalProperties?: never;
50770
+ nullable?: never;
50771
+ 'x-undocumented'?: never;
50772
+ deprecated?: never;
50773
+ 'x-deprecated'?: never;
50592
50774
  };
50593
50775
  })[];
50594
50776
  responses: {
@@ -50769,6 +50951,11 @@ declare const _default: {
50769
50951
  nullable: boolean;
50770
50952
  type: string;
50771
50953
  };
50954
+ search: {
50955
+ description: string;
50956
+ minLength: number;
50957
+ type: string;
50958
+ };
50772
50959
  space_id: {
50773
50960
  description: string;
50774
50961
  format: string;
@@ -51419,6 +51606,7 @@ declare const _default: {
51419
51606
  'x-undocumented'?: never;
51420
51607
  deprecated?: never;
51421
51608
  'x-deprecated'?: never;
51609
+ minLength?: never;
51422
51610
  };
51423
51611
  } | {
51424
51612
  in: string;
@@ -51436,6 +51624,7 @@ declare const _default: {
51436
51624
  'x-undocumented'?: never;
51437
51625
  deprecated?: never;
51438
51626
  'x-deprecated'?: never;
51627
+ minLength?: never;
51439
51628
  };
51440
51629
  } | {
51441
51630
  in: string;
@@ -51458,6 +51647,7 @@ declare const _default: {
51458
51647
  'x-undocumented'?: never;
51459
51648
  deprecated?: never;
51460
51649
  'x-deprecated'?: never;
51650
+ minLength?: never;
51461
51651
  };
51462
51652
  } | {
51463
51653
  in: string;
@@ -51479,6 +51669,7 @@ declare const _default: {
51479
51669
  'x-undocumented'?: never;
51480
51670
  deprecated?: never;
51481
51671
  'x-deprecated'?: never;
51672
+ minLength?: never;
51482
51673
  };
51483
51674
  } | {
51484
51675
  in: string;
@@ -51505,6 +51696,7 @@ declare const _default: {
51505
51696
  'x-undocumented'?: never;
51506
51697
  deprecated?: never;
51507
51698
  'x-deprecated'?: never;
51699
+ minLength?: never;
51508
51700
  };
51509
51701
  } | {
51510
51702
  in: string;
@@ -51522,6 +51714,7 @@ declare const _default: {
51522
51714
  'x-undocumented'?: never;
51523
51715
  deprecated?: never;
51524
51716
  'x-deprecated'?: never;
51717
+ minLength?: never;
51525
51718
  };
51526
51719
  } | {
51527
51720
  in: string;
@@ -51539,6 +51732,7 @@ declare const _default: {
51539
51732
  'x-undocumented'?: never;
51540
51733
  deprecated?: never;
51541
51734
  'x-deprecated'?: never;
51735
+ minLength?: never;
51542
51736
  };
51543
51737
  } | {
51544
51738
  in: string;
@@ -51556,6 +51750,7 @@ declare const _default: {
51556
51750
  'x-undocumented'?: never;
51557
51751
  deprecated?: never;
51558
51752
  'x-deprecated'?: never;
51753
+ minLength?: never;
51559
51754
  };
51560
51755
  } | {
51561
51756
  in: string;
@@ -51577,6 +51772,7 @@ declare const _default: {
51577
51772
  'x-undocumented'?: never;
51578
51773
  deprecated?: never;
51579
51774
  'x-deprecated'?: never;
51775
+ minLength?: never;
51580
51776
  };
51581
51777
  } | {
51582
51778
  in: string;
@@ -51594,6 +51790,7 @@ declare const _default: {
51594
51790
  'x-undocumented'?: never;
51595
51791
  deprecated?: never;
51596
51792
  'x-deprecated'?: never;
51793
+ minLength?: never;
51597
51794
  };
51598
51795
  } | {
51599
51796
  in: string;
@@ -51616,6 +51813,7 @@ declare const _default: {
51616
51813
  nullable?: never;
51617
51814
  deprecated?: never;
51618
51815
  'x-deprecated'?: never;
51816
+ minLength?: never;
51619
51817
  };
51620
51818
  } | {
51621
51819
  in: string;
@@ -51633,6 +51831,25 @@ declare const _default: {
51633
51831
  default?: never;
51634
51832
  additionalProperties?: never;
51635
51833
  'x-undocumented'?: never;
51834
+ minLength?: never;
51835
+ };
51836
+ } | {
51837
+ in: string;
51838
+ name: string;
51839
+ schema: {
51840
+ description: string;
51841
+ minLength: number;
51842
+ type: string;
51843
+ items?: never;
51844
+ format?: never;
51845
+ oneOf?: never;
51846
+ enum?: never;
51847
+ default?: never;
51848
+ additionalProperties?: never;
51849
+ nullable?: never;
51850
+ 'x-undocumented'?: never;
51851
+ deprecated?: never;
51852
+ 'x-deprecated'?: never;
51636
51853
  };
51637
51854
  })[];
51638
51855
  responses: {
@@ -51792,6 +52009,11 @@ declare const _default: {
51792
52009
  nullable: boolean;
51793
52010
  type: string;
51794
52011
  };
52012
+ search: {
52013
+ description: string;
52014
+ minLength: number;
52015
+ type: string;
52016
+ };
51795
52017
  space_id: {
51796
52018
  description: string;
51797
52019
  format: string;
@@ -52995,6 +53217,7 @@ declare const _default: {
52995
53217
  'x-undocumented'?: never;
52996
53218
  deprecated?: never;
52997
53219
  'x-deprecated'?: never;
53220
+ minLength?: never;
52998
53221
  };
52999
53222
  } | {
53000
53223
  in: string;
@@ -53011,6 +53234,7 @@ declare const _default: {
53011
53234
  'x-undocumented'?: never;
53012
53235
  deprecated?: never;
53013
53236
  'x-deprecated'?: never;
53237
+ minLength?: never;
53014
53238
  };
53015
53239
  } | {
53016
53240
  in: string;
@@ -53032,6 +53256,7 @@ declare const _default: {
53032
53256
  'x-undocumented'?: never;
53033
53257
  deprecated?: never;
53034
53258
  'x-deprecated'?: never;
53259
+ minLength?: never;
53035
53260
  };
53036
53261
  } | {
53037
53262
  in: string;
@@ -53048,6 +53273,7 @@ declare const _default: {
53048
53273
  'x-undocumented'?: never;
53049
53274
  deprecated?: never;
53050
53275
  'x-deprecated'?: never;
53276
+ minLength?: never;
53051
53277
  };
53052
53278
  } | {
53053
53279
  in: string;
@@ -53069,6 +53295,7 @@ declare const _default: {
53069
53295
  'x-undocumented'?: never;
53070
53296
  deprecated?: never;
53071
53297
  'x-deprecated'?: never;
53298
+ minLength?: never;
53072
53299
  };
53073
53300
  } | {
53074
53301
  in: string;
@@ -53085,6 +53312,7 @@ declare const _default: {
53085
53312
  'x-undocumented'?: never;
53086
53313
  deprecated?: never;
53087
53314
  'x-deprecated'?: never;
53315
+ minLength?: never;
53088
53316
  };
53089
53317
  } | {
53090
53318
  in: string;
@@ -53101,6 +53329,7 @@ declare const _default: {
53101
53329
  'x-undocumented'?: never;
53102
53330
  deprecated?: never;
53103
53331
  'x-deprecated'?: never;
53332
+ minLength?: never;
53104
53333
  };
53105
53334
  } | {
53106
53335
  in: string;
@@ -53121,6 +53350,7 @@ declare const _default: {
53121
53350
  'x-undocumented'?: never;
53122
53351
  deprecated?: never;
53123
53352
  'x-deprecated'?: never;
53353
+ minLength?: never;
53124
53354
  };
53125
53355
  } | {
53126
53356
  in: string;
@@ -53137,6 +53367,7 @@ declare const _default: {
53137
53367
  'x-undocumented'?: never;
53138
53368
  deprecated?: never;
53139
53369
  'x-deprecated'?: never;
53370
+ minLength?: never;
53140
53371
  };
53141
53372
  } | {
53142
53373
  in: string;
@@ -53158,6 +53389,7 @@ declare const _default: {
53158
53389
  nullable?: never;
53159
53390
  deprecated?: never;
53160
53391
  'x-deprecated'?: never;
53392
+ minLength?: never;
53161
53393
  };
53162
53394
  } | {
53163
53395
  in: string;
@@ -53174,6 +53406,24 @@ declare const _default: {
53174
53406
  default?: never;
53175
53407
  additionalProperties?: never;
53176
53408
  'x-undocumented'?: never;
53409
+ minLength?: never;
53410
+ };
53411
+ } | {
53412
+ in: string;
53413
+ name: string;
53414
+ schema: {
53415
+ description: string;
53416
+ minLength: number;
53417
+ type: string;
53418
+ items?: never;
53419
+ format?: never;
53420
+ enum?: never;
53421
+ default?: never;
53422
+ additionalProperties?: never;
53423
+ nullable?: never;
53424
+ 'x-undocumented'?: never;
53425
+ deprecated?: never;
53426
+ 'x-deprecated'?: never;
53177
53427
  };
53178
53428
  })[];
53179
53429
  responses: {
@@ -53342,6 +53592,11 @@ declare const _default: {
53342
53592
  nullable: boolean;
53343
53593
  type: string;
53344
53594
  };
53595
+ search: {
53596
+ description: string;
53597
+ minLength: number;
53598
+ type: string;
53599
+ };
53345
53600
  space_id: {
53346
53601
  description: string;
53347
53602
  format: string;
@@ -54114,6 +54369,7 @@ declare const _default: {
54114
54369
  'x-undocumented'?: never;
54115
54370
  deprecated?: never;
54116
54371
  'x-deprecated'?: never;
54372
+ minLength?: never;
54117
54373
  };
54118
54374
  } | {
54119
54375
  in: string;
@@ -54130,6 +54386,7 @@ declare const _default: {
54130
54386
  'x-undocumented'?: never;
54131
54387
  deprecated?: never;
54132
54388
  'x-deprecated'?: never;
54389
+ minLength?: never;
54133
54390
  };
54134
54391
  } | {
54135
54392
  in: string;
@@ -54151,6 +54408,7 @@ declare const _default: {
54151
54408
  'x-undocumented'?: never;
54152
54409
  deprecated?: never;
54153
54410
  'x-deprecated'?: never;
54411
+ minLength?: never;
54154
54412
  };
54155
54413
  } | {
54156
54414
  in: string;
@@ -54167,6 +54425,7 @@ declare const _default: {
54167
54425
  'x-undocumented'?: never;
54168
54426
  deprecated?: never;
54169
54427
  'x-deprecated'?: never;
54428
+ minLength?: never;
54170
54429
  };
54171
54430
  } | {
54172
54431
  in: string;
@@ -54188,6 +54447,7 @@ declare const _default: {
54188
54447
  'x-undocumented'?: never;
54189
54448
  deprecated?: never;
54190
54449
  'x-deprecated'?: never;
54450
+ minLength?: never;
54191
54451
  };
54192
54452
  } | {
54193
54453
  in: string;
@@ -54204,6 +54464,7 @@ declare const _default: {
54204
54464
  'x-undocumented'?: never;
54205
54465
  deprecated?: never;
54206
54466
  'x-deprecated'?: never;
54467
+ minLength?: never;
54207
54468
  };
54208
54469
  } | {
54209
54470
  in: string;
@@ -54220,6 +54481,7 @@ declare const _default: {
54220
54481
  'x-undocumented'?: never;
54221
54482
  deprecated?: never;
54222
54483
  'x-deprecated'?: never;
54484
+ minLength?: never;
54223
54485
  };
54224
54486
  } | {
54225
54487
  in: string;
@@ -54240,6 +54502,7 @@ declare const _default: {
54240
54502
  'x-undocumented'?: never;
54241
54503
  deprecated?: never;
54242
54504
  'x-deprecated'?: never;
54505
+ minLength?: never;
54243
54506
  };
54244
54507
  } | {
54245
54508
  in: string;
@@ -54256,6 +54519,7 @@ declare const _default: {
54256
54519
  'x-undocumented'?: never;
54257
54520
  deprecated?: never;
54258
54521
  'x-deprecated'?: never;
54522
+ minLength?: never;
54259
54523
  };
54260
54524
  } | {
54261
54525
  in: string;
@@ -54277,6 +54541,7 @@ declare const _default: {
54277
54541
  nullable?: never;
54278
54542
  deprecated?: never;
54279
54543
  'x-deprecated'?: never;
54544
+ minLength?: never;
54280
54545
  };
54281
54546
  } | {
54282
54547
  in: string;
@@ -54293,6 +54558,24 @@ declare const _default: {
54293
54558
  default?: never;
54294
54559
  additionalProperties?: never;
54295
54560
  'x-undocumented'?: never;
54561
+ minLength?: never;
54562
+ };
54563
+ } | {
54564
+ in: string;
54565
+ name: string;
54566
+ schema: {
54567
+ description: string;
54568
+ minLength: number;
54569
+ type: string;
54570
+ items?: never;
54571
+ format?: never;
54572
+ enum?: never;
54573
+ default?: never;
54574
+ additionalProperties?: never;
54575
+ nullable?: never;
54576
+ 'x-undocumented'?: never;
54577
+ deprecated?: never;
54578
+ 'x-deprecated'?: never;
54296
54579
  };
54297
54580
  })[];
54298
54581
  responses: {
@@ -54461,6 +54744,11 @@ declare const _default: {
54461
54744
  nullable: boolean;
54462
54745
  type: string;
54463
54746
  };
54747
+ search: {
54748
+ description: string;
54749
+ minLength: number;
54750
+ type: string;
54751
+ };
54464
54752
  space_id: {
54465
54753
  description: string;
54466
54754
  format: string;
@@ -59661,6 +59949,7 @@ declare const _default: {
59661
59949
  'x-undocumented'?: never;
59662
59950
  deprecated?: never;
59663
59951
  'x-deprecated'?: never;
59952
+ minLength?: never;
59664
59953
  };
59665
59954
  } | {
59666
59955
  in: string;
@@ -59677,6 +59966,7 @@ declare const _default: {
59677
59966
  'x-undocumented'?: never;
59678
59967
  deprecated?: never;
59679
59968
  'x-deprecated'?: never;
59969
+ minLength?: never;
59680
59970
  };
59681
59971
  } | {
59682
59972
  in: string;
@@ -59698,6 +59988,7 @@ declare const _default: {
59698
59988
  'x-undocumented'?: never;
59699
59989
  deprecated?: never;
59700
59990
  'x-deprecated'?: never;
59991
+ minLength?: never;
59701
59992
  };
59702
59993
  } | {
59703
59994
  in: string;
@@ -59714,6 +60005,7 @@ declare const _default: {
59714
60005
  'x-undocumented'?: never;
59715
60006
  deprecated?: never;
59716
60007
  'x-deprecated'?: never;
60008
+ minLength?: never;
59717
60009
  };
59718
60010
  } | {
59719
60011
  in: string;
@@ -59735,6 +60027,7 @@ declare const _default: {
59735
60027
  'x-undocumented'?: never;
59736
60028
  deprecated?: never;
59737
60029
  'x-deprecated'?: never;
60030
+ minLength?: never;
59738
60031
  };
59739
60032
  } | {
59740
60033
  in: string;
@@ -59751,6 +60044,7 @@ declare const _default: {
59751
60044
  'x-undocumented'?: never;
59752
60045
  deprecated?: never;
59753
60046
  'x-deprecated'?: never;
60047
+ minLength?: never;
59754
60048
  };
59755
60049
  } | {
59756
60050
  in: string;
@@ -59767,6 +60061,7 @@ declare const _default: {
59767
60061
  'x-undocumented'?: never;
59768
60062
  deprecated?: never;
59769
60063
  'x-deprecated'?: never;
60064
+ minLength?: never;
59770
60065
  };
59771
60066
  } | {
59772
60067
  in: string;
@@ -59787,6 +60082,7 @@ declare const _default: {
59787
60082
  'x-undocumented'?: never;
59788
60083
  deprecated?: never;
59789
60084
  'x-deprecated'?: never;
60085
+ minLength?: never;
59790
60086
  };
59791
60087
  } | {
59792
60088
  in: string;
@@ -59803,6 +60099,7 @@ declare const _default: {
59803
60099
  'x-undocumented'?: never;
59804
60100
  deprecated?: never;
59805
60101
  'x-deprecated'?: never;
60102
+ minLength?: never;
59806
60103
  };
59807
60104
  } | {
59808
60105
  in: string;
@@ -59824,6 +60121,7 @@ declare const _default: {
59824
60121
  nullable?: never;
59825
60122
  deprecated?: never;
59826
60123
  'x-deprecated'?: never;
60124
+ minLength?: never;
59827
60125
  };
59828
60126
  } | {
59829
60127
  in: string;
@@ -59840,6 +60138,24 @@ declare const _default: {
59840
60138
  default?: never;
59841
60139
  additionalProperties?: never;
59842
60140
  'x-undocumented'?: never;
60141
+ minLength?: never;
60142
+ };
60143
+ } | {
60144
+ in: string;
60145
+ name: string;
60146
+ schema: {
60147
+ description: string;
60148
+ minLength: number;
60149
+ type: string;
60150
+ items?: never;
60151
+ format?: never;
60152
+ enum?: never;
60153
+ default?: never;
60154
+ additionalProperties?: never;
60155
+ nullable?: never;
60156
+ 'x-undocumented'?: never;
60157
+ deprecated?: never;
60158
+ 'x-deprecated'?: never;
59843
60159
  };
59844
60160
  })[];
59845
60161
  responses: {
@@ -60008,6 +60324,11 @@ declare const _default: {
60008
60324
  nullable: boolean;
60009
60325
  type: string;
60010
60326
  };
60327
+ search: {
60328
+ description: string;
60329
+ minLength: number;
60330
+ type: string;
60331
+ };
60011
60332
  space_id: {
60012
60333
  description: string;
60013
60334
  format: string;
@@ -66061,7 +66382,15 @@ declare const _default: {
66061
66382
  get: {
66062
66383
  description: string;
66063
66384
  operationId: string;
66064
- parameters: {
66385
+ parameters: ({
66386
+ in: string;
66387
+ name: string;
66388
+ schema: {
66389
+ description: string;
66390
+ type: string;
66391
+ format?: never;
66392
+ };
66393
+ } | {
66065
66394
  in: string;
66066
66395
  name: string;
66067
66396
  schema: {
@@ -66069,7 +66398,7 @@ declare const _default: {
66069
66398
  format: string;
66070
66399
  type: string;
66071
66400
  };
66072
- }[];
66401
+ })[];
66073
66402
  responses: {
66074
66403
  200: {
66075
66404
  content: {
@@ -66142,6 +66471,10 @@ declare const _default: {
66142
66471
  format: string;
66143
66472
  type: string;
66144
66473
  };
66474
+ search: {
66475
+ description: string;
66476
+ type: string;
66477
+ };
66145
66478
  };
66146
66479
  type: string;
66147
66480
  };
@@ -68377,6 +68710,8 @@ interface Routes {
68377
68710
  is_external_modification_allowed?: boolean | undefined;
68378
68711
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
68379
68712
  preferred_code_length?: number | undefined;
68713
+ /**
68714
+ * @deprecated Use `is_offline_access_code` instead. */
68380
68715
  use_offline_access_code?: boolean | undefined;
68381
68716
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
68382
68717
  is_offline_access_code?: boolean | undefined;
@@ -68528,6 +68863,8 @@ interface Routes {
68528
68863
  acs_credential_id: string;
68529
68864
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68530
68865
  acs_user_id?: string | undefined;
68866
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68867
+ connected_account_id: string;
68531
68868
  acs_credential_pool_id?: string | undefined;
68532
68869
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
68533
68870
  acs_system_id: string;
@@ -68654,6 +68991,8 @@ interface Routes {
68654
68991
  acs_credential_id: string;
68655
68992
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68656
68993
  acs_user_id?: string | undefined;
68994
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68995
+ connected_account_id: string;
68657
68996
  acs_credential_pool_id?: string | undefined;
68658
68997
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
68659
68998
  acs_system_id: string;
@@ -68903,6 +69242,8 @@ interface Routes {
68903
69242
  acs_credential_id: string;
68904
69243
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
68905
69244
  acs_user_id?: string | undefined;
69245
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69246
+ connected_account_id: string;
68906
69247
  acs_credential_pool_id?: string | undefined;
68907
69248
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
68908
69249
  acs_system_id: string;
@@ -69029,6 +69370,8 @@ interface Routes {
69029
69370
  acs_credential_id: string;
69030
69371
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69031
69372
  acs_user_id?: string | undefined;
69373
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69374
+ connected_account_id: string;
69032
69375
  acs_credential_pool_id?: string | undefined;
69033
69376
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
69034
69377
  acs_system_id: string;
@@ -70236,6 +70579,8 @@ interface Routes {
70236
70579
  allow_external_modification?: boolean | undefined;
70237
70580
  /** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
70238
70581
  is_external_modification_allowed?: boolean | undefined;
70582
+ /**
70583
+ * @deprecated Use `is_offline_access_code` instead. */
70239
70584
  use_offline_access_code?: boolean | undefined;
70240
70585
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
70241
70586
  is_offline_access_code?: boolean | undefined;
@@ -70909,6 +71254,8 @@ interface Routes {
70909
71254
  acs_credential_id: string;
70910
71255
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
70911
71256
  acs_user_id?: string | undefined;
71257
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71258
+ connected_account_id: string;
70912
71259
  acs_credential_pool_id?: string | undefined;
70913
71260
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
70914
71261
  acs_system_id: string;
@@ -71035,6 +71382,8 @@ interface Routes {
71035
71382
  acs_credential_id: string;
71036
71383
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71037
71384
  acs_user_id?: string | undefined;
71385
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71386
+ connected_account_id: string;
71038
71387
  acs_credential_pool_id?: string | undefined;
71039
71388
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
71040
71389
  acs_system_id: string;
@@ -71284,6 +71633,8 @@ interface Routes {
71284
71633
  acs_credential_id: string;
71285
71634
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71286
71635
  acs_user_id?: string | undefined;
71636
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71637
+ connected_account_id: string;
71287
71638
  acs_credential_pool_id?: string | undefined;
71288
71639
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
71289
71640
  acs_system_id: string;
@@ -71410,6 +71761,8 @@ interface Routes {
71410
71761
  acs_credential_id: string;
71411
71762
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71412
71763
  acs_user_id?: string | undefined;
71764
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71765
+ connected_account_id: string;
71413
71766
  acs_credential_pool_id?: string | undefined;
71414
71767
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
71415
71768
  acs_system_id: string;
@@ -74896,6 +75249,8 @@ interface Routes {
74896
75249
  acs_credential_id: string;
74897
75250
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
74898
75251
  acs_user_id?: string | undefined;
75252
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75253
+ connected_account_id: string;
74899
75254
  acs_credential_pool_id?: string | undefined;
74900
75255
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
74901
75256
  acs_system_id: string;
@@ -75022,6 +75377,8 @@ interface Routes {
75022
75377
  acs_credential_id: string;
75023
75378
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75024
75379
  acs_user_id?: string | undefined;
75380
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75381
+ connected_account_id: string;
75025
75382
  acs_credential_pool_id?: string | undefined;
75026
75383
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
75027
75384
  acs_system_id: string;
@@ -75271,6 +75628,8 @@ interface Routes {
75271
75628
  acs_credential_id: string;
75272
75629
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75273
75630
  acs_user_id?: string | undefined;
75631
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75632
+ connected_account_id: string;
75274
75633
  acs_credential_pool_id?: string | undefined;
75275
75634
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
75276
75635
  acs_system_id: string;
@@ -75397,6 +75756,8 @@ interface Routes {
75397
75756
  acs_credential_id: string;
75398
75757
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75399
75758
  acs_user_id?: string | undefined;
75759
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75760
+ connected_account_id: string;
75400
75761
  acs_credential_pool_id?: string | undefined;
75401
75762
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
75402
75763
  acs_system_id: string;
@@ -77126,6 +77487,8 @@ interface Routes {
77126
77487
  is_external_modification_allowed?: boolean | undefined;
77127
77488
  /** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
77128
77489
  preferred_code_length?: number | undefined;
77490
+ /**
77491
+ * @deprecated Use `is_offline_access_code` instead. */
77129
77492
  use_offline_access_code?: boolean | undefined;
77130
77493
  /** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
77131
77494
  is_offline_access_code?: boolean | undefined;
@@ -77285,6 +77648,8 @@ interface Routes {
77285
77648
  acs_credential_id: string;
77286
77649
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77287
77650
  acs_user_id?: string | undefined;
77651
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77652
+ connected_account_id: string;
77288
77653
  acs_credential_pool_id?: string | undefined;
77289
77654
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77290
77655
  acs_system_id: string;
@@ -77411,6 +77776,8 @@ interface Routes {
77411
77776
  acs_credential_id: string;
77412
77777
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77413
77778
  acs_user_id?: string | undefined;
77779
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77780
+ connected_account_id: string;
77414
77781
  acs_credential_pool_id?: string | undefined;
77415
77782
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77416
77783
  acs_system_id: string;
@@ -77660,6 +78027,8 @@ interface Routes {
77660
78027
  acs_credential_id: string;
77661
78028
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77662
78029
  acs_user_id?: string | undefined;
78030
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78031
+ connected_account_id: string;
77663
78032
  acs_credential_pool_id?: string | undefined;
77664
78033
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77665
78034
  acs_system_id: string;
@@ -77786,6 +78155,8 @@ interface Routes {
77786
78155
  acs_credential_id: string;
77787
78156
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
77788
78157
  acs_user_id?: string | undefined;
78158
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78159
+ connected_account_id: string;
77789
78160
  acs_credential_pool_id?: string | undefined;
77790
78161
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
77791
78162
  acs_system_id: string;
@@ -78985,6 +79356,12 @@ interface Routes {
78985
79356
  /** Description of the door in the Salto Space access system. */
78986
79357
  door_description?: string | undefined;
78987
79358
  } | undefined;
79359
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
79360
+ can_unlock_with_mobile_key?: boolean | undefined;
79361
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
79362
+ can_unlock_with_card?: boolean | undefined;
79363
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
79364
+ can_unlock_with_code?: boolean | undefined;
78988
79365
  }>;
78989
79366
  };
78990
79367
  };
@@ -79401,6 +79778,8 @@ interface Routes {
79401
79778
  acs_credential_id: string;
79402
79779
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79403
79780
  acs_user_id?: string | undefined;
79781
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79782
+ connected_account_id: string;
79404
79783
  acs_credential_pool_id?: string | undefined;
79405
79784
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
79406
79785
  acs_system_id: string;
@@ -79592,6 +79971,8 @@ interface Routes {
79592
79971
  acs_credential_id: string;
79593
79972
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79594
79973
  acs_user_id?: string | undefined;
79974
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79975
+ connected_account_id: string;
79595
79976
  acs_credential_pool_id?: string | undefined;
79596
79977
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
79597
79978
  acs_system_id: string;
@@ -79745,6 +80126,8 @@ interface Routes {
79745
80126
  acs_credential_id: string;
79746
80127
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79747
80128
  acs_user_id?: string | undefined;
80129
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80130
+ connected_account_id: string;
79748
80131
  acs_credential_pool_id?: string | undefined;
79749
80132
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
79750
80133
  acs_system_id: string;
@@ -79902,6 +80285,8 @@ interface Routes {
79902
80285
  acs_credential_id: string;
79903
80286
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79904
80287
  acs_user_id?: string | undefined;
80288
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80289
+ connected_account_id: string;
79905
80290
  acs_credential_pool_id?: string | undefined;
79906
80291
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
79907
80292
  acs_system_id: string;
@@ -80060,6 +80445,8 @@ interface Routes {
80060
80445
  acs_credential_id: string;
80061
80446
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80062
80447
  acs_user_id?: string | undefined;
80448
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80449
+ connected_account_id: string;
80063
80450
  acs_credential_pool_id?: string | undefined;
80064
80451
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
80065
80452
  acs_system_id: string;
@@ -80284,6 +80671,12 @@ interface Routes {
80284
80671
  /** Description of the door in the Salto Space access system. */
80285
80672
  door_description?: string | undefined;
80286
80673
  } | undefined;
80674
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
80675
+ can_unlock_with_mobile_key?: boolean | undefined;
80676
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
80677
+ can_unlock_with_card?: boolean | undefined;
80678
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
80679
+ can_unlock_with_code?: boolean | undefined;
80287
80680
  }>;
80288
80681
  };
80289
80682
  };
@@ -80312,6 +80705,8 @@ interface Routes {
80312
80705
  acs_credential_id: string;
80313
80706
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80314
80707
  acs_user_id?: string | undefined;
80708
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80709
+ connected_account_id: string;
80315
80710
  acs_credential_pool_id?: string | undefined;
80316
80711
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
80317
80712
  acs_system_id: string;
@@ -80453,6 +80848,8 @@ interface Routes {
80453
80848
  acs_credential_id: string;
80454
80849
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80455
80850
  acs_user_id?: string | undefined;
80851
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80852
+ connected_account_id: string;
80456
80853
  acs_credential_pool_id?: string | undefined;
80457
80854
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
80458
80855
  acs_system_id: string;
@@ -80604,6 +81001,8 @@ interface Routes {
80604
81001
  acs_credential_id: string;
80605
81002
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80606
81003
  acs_user_id?: string | undefined;
81004
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81005
+ connected_account_id: string;
80607
81006
  acs_credential_pool_id?: string | undefined;
80608
81007
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
80609
81008
  acs_system_id: string;
@@ -80753,6 +81152,8 @@ interface Routes {
80753
81152
  acs_credential_id: string;
80754
81153
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80755
81154
  acs_user_id?: string | undefined;
81155
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81156
+ connected_account_id: string;
80756
81157
  acs_credential_pool_id?: string | undefined;
80757
81158
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
80758
81159
  acs_system_id: string;
@@ -81030,6 +81431,8 @@ interface Routes {
81030
81431
  acs_credential_id: string;
81031
81432
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81032
81433
  acs_user_id?: string | undefined;
81434
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81435
+ connected_account_id: string;
81033
81436
  acs_credential_pool_id?: string | undefined;
81034
81437
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
81035
81438
  acs_system_id: string;
@@ -81156,6 +81559,8 @@ interface Routes {
81156
81559
  acs_credential_id: string;
81157
81560
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81158
81561
  acs_user_id?: string | undefined;
81562
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81563
+ connected_account_id: string;
81159
81564
  acs_credential_pool_id?: string | undefined;
81160
81565
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
81161
81566
  acs_system_id: string;
@@ -81405,6 +81810,8 @@ interface Routes {
81405
81810
  acs_credential_id: string;
81406
81811
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81407
81812
  acs_user_id?: string | undefined;
81813
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81814
+ connected_account_id: string;
81408
81815
  acs_credential_pool_id?: string | undefined;
81409
81816
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
81410
81817
  acs_system_id: string;
@@ -81531,6 +81938,8 @@ interface Routes {
81531
81938
  acs_credential_id: string;
81532
81939
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81533
81940
  acs_user_id?: string | undefined;
81941
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81942
+ connected_account_id: string;
81534
81943
  acs_credential_pool_id?: string | undefined;
81535
81944
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
81536
81945
  acs_system_id: string;
@@ -82345,6 +82754,8 @@ interface Routes {
82345
82754
  acs_credential_id: string;
82346
82755
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82347
82756
  acs_user_id?: string | undefined;
82757
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82758
+ connected_account_id: string;
82348
82759
  acs_credential_pool_id?: string | undefined;
82349
82760
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
82350
82761
  acs_system_id: string;
@@ -82471,6 +82882,8 @@ interface Routes {
82471
82882
  acs_credential_id: string;
82472
82883
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82473
82884
  acs_user_id?: string | undefined;
82885
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82886
+ connected_account_id: string;
82474
82887
  acs_credential_pool_id?: string | undefined;
82475
82888
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
82476
82889
  acs_system_id: string;
@@ -82720,6 +83133,8 @@ interface Routes {
82720
83133
  acs_credential_id: string;
82721
83134
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82722
83135
  acs_user_id?: string | undefined;
83136
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83137
+ connected_account_id: string;
82723
83138
  acs_credential_pool_id?: string | undefined;
82724
83139
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
82725
83140
  acs_system_id: string;
@@ -82846,6 +83261,8 @@ interface Routes {
82846
83261
  acs_credential_id: string;
82847
83262
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82848
83263
  acs_user_id?: string | undefined;
83264
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83265
+ connected_account_id: string;
82849
83266
  acs_credential_pool_id?: string | undefined;
82850
83267
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
82851
83268
  acs_system_id: string;
@@ -83756,6 +84173,8 @@ interface Routes {
83756
84173
  acs_credential_id: string;
83757
84174
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83758
84175
  acs_user_id?: string | undefined;
84176
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84177
+ connected_account_id: string;
83759
84178
  acs_credential_pool_id?: string | undefined;
83760
84179
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
83761
84180
  acs_system_id: string;
@@ -83882,6 +84301,8 @@ interface Routes {
83882
84301
  acs_credential_id: string;
83883
84302
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83884
84303
  acs_user_id?: string | undefined;
84304
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84305
+ connected_account_id: string;
83885
84306
  acs_credential_pool_id?: string | undefined;
83886
84307
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
83887
84308
  acs_system_id: string;
@@ -84131,6 +84552,8 @@ interface Routes {
84131
84552
  acs_credential_id: string;
84132
84553
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84133
84554
  acs_user_id?: string | undefined;
84555
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84556
+ connected_account_id: string;
84134
84557
  acs_credential_pool_id?: string | undefined;
84135
84558
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
84136
84559
  acs_system_id: string;
@@ -84257,6 +84680,8 @@ interface Routes {
84257
84680
  acs_credential_id: string;
84258
84681
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84259
84682
  acs_user_id?: string | undefined;
84683
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84684
+ connected_account_id: string;
84260
84685
  acs_credential_pool_id?: string | undefined;
84261
84686
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
84262
84687
  acs_system_id: string;
@@ -85100,6 +85525,12 @@ interface Routes {
85100
85525
  /** Description of the door in the Salto Space access system. */
85101
85526
  door_description?: string | undefined;
85102
85527
  } | undefined;
85528
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
85529
+ can_unlock_with_mobile_key?: boolean | undefined;
85530
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
85531
+ can_unlock_with_card?: boolean | undefined;
85532
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
85533
+ can_unlock_with_code?: boolean | undefined;
85103
85534
  };
85104
85535
  };
85105
85536
  };
@@ -85230,6 +85661,12 @@ interface Routes {
85230
85661
  /** Description of the door in the Salto Space access system. */
85231
85662
  door_description?: string | undefined;
85232
85663
  } | undefined;
85664
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
85665
+ can_unlock_with_mobile_key?: boolean | undefined;
85666
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
85667
+ can_unlock_with_card?: boolean | undefined;
85668
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
85669
+ can_unlock_with_code?: boolean | undefined;
85233
85670
  }>;
85234
85671
  };
85235
85672
  };
@@ -85251,6 +85688,8 @@ interface Routes {
85251
85688
  acs_credential_id: string;
85252
85689
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
85253
85690
  acs_user_id?: string | undefined;
85691
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
85692
+ connected_account_id: string;
85254
85693
  acs_credential_pool_id?: string | undefined;
85255
85694
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
85256
85695
  acs_system_id: string;
@@ -86627,6 +87066,12 @@ interface Routes {
86627
87066
  /** Description of the door in the Salto Space access system. */
86628
87067
  door_description?: string | undefined;
86629
87068
  } | undefined;
87069
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
87070
+ can_unlock_with_mobile_key?: boolean | undefined;
87071
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
87072
+ can_unlock_with_card?: boolean | undefined;
87073
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
87074
+ can_unlock_with_code?: boolean | undefined;
86630
87075
  }>;
86631
87076
  };
86632
87077
  };
@@ -87329,6 +87774,8 @@ interface Routes {
87329
87774
  acs_credential_id: string;
87330
87775
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87331
87776
  acs_user_id?: string | undefined;
87777
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87778
+ connected_account_id: string;
87332
87779
  acs_credential_pool_id?: string | undefined;
87333
87780
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
87334
87781
  acs_system_id: string;
@@ -87455,6 +87902,8 @@ interface Routes {
87455
87902
  acs_credential_id: string;
87456
87903
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87457
87904
  acs_user_id?: string | undefined;
87905
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87906
+ connected_account_id: string;
87458
87907
  acs_credential_pool_id?: string | undefined;
87459
87908
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
87460
87909
  acs_system_id: string;
@@ -87704,6 +88153,8 @@ interface Routes {
87704
88153
  acs_credential_id: string;
87705
88154
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87706
88155
  acs_user_id?: string | undefined;
88156
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88157
+ connected_account_id: string;
87707
88158
  acs_credential_pool_id?: string | undefined;
87708
88159
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
87709
88160
  acs_system_id: string;
@@ -87830,6 +88281,8 @@ interface Routes {
87830
88281
  acs_credential_id: string;
87831
88282
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87832
88283
  acs_user_id?: string | undefined;
88284
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88285
+ connected_account_id: string;
87833
88286
  acs_credential_pool_id?: string | undefined;
87834
88287
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
87835
88288
  acs_system_id: string;
@@ -88637,6 +89090,8 @@ interface Routes {
88637
89090
  acs_credential_id: string;
88638
89091
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88639
89092
  acs_user_id?: string | undefined;
89093
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89094
+ connected_account_id: string;
88640
89095
  acs_credential_pool_id?: string | undefined;
88641
89096
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
88642
89097
  acs_system_id: string;
@@ -88763,6 +89218,8 @@ interface Routes {
88763
89218
  acs_credential_id: string;
88764
89219
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88765
89220
  acs_user_id?: string | undefined;
89221
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89222
+ connected_account_id: string;
88766
89223
  acs_credential_pool_id?: string | undefined;
88767
89224
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
88768
89225
  acs_system_id: string;
@@ -89012,6 +89469,8 @@ interface Routes {
89012
89469
  acs_credential_id: string;
89013
89470
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89014
89471
  acs_user_id?: string | undefined;
89472
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89473
+ connected_account_id: string;
89015
89474
  acs_credential_pool_id?: string | undefined;
89016
89475
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
89017
89476
  acs_system_id: string;
@@ -89138,6 +89597,8 @@ interface Routes {
89138
89597
  acs_credential_id: string;
89139
89598
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89140
89599
  acs_user_id?: string | undefined;
89600
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89601
+ connected_account_id: string;
89141
89602
  acs_credential_pool_id?: string | undefined;
89142
89603
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
89143
89604
  acs_system_id: string;
@@ -90551,6 +91012,8 @@ interface Routes {
90551
91012
  /** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
90552
91013
  custom_metadata_has?: Record<string, string | boolean> | undefined;
90553
91014
  customer_ids?: string[] | undefined;
91015
+ /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
91016
+ search?: string | undefined;
90554
91017
  /** Maximum number of records to return per page. */
90555
91018
  limit?: number;
90556
91019
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
@@ -92512,6 +92975,7 @@ interface Routes {
92512
92975
  can_simulate_removal?: boolean | undefined;
92513
92976
  can_simulate_connection?: boolean | undefined;
92514
92977
  can_simulate_disconnection?: boolean | undefined;
92978
+ can_unlock_with_code?: boolean | undefined;
92515
92979
  };
92516
92980
  };
92517
92981
  };
@@ -92547,14 +93011,16 @@ interface Routes {
92547
93011
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
92548
93012
  page_cursor?: (string | undefined) | null;
92549
93013
  /** */
92550
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
93014
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
92551
93015
  /** */
92552
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
93016
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
92553
93017
  /**
92554
93018
  * @deprecated Use `space_id`. */
92555
93019
  unstable_location_id?: (string | null) | undefined;
92556
93020
  /** ID of the space for which you want to list devices. */
92557
93021
  space_id?: string | undefined;
93022
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
93023
+ search?: string | undefined;
92558
93024
  };
92559
93025
  formData: {};
92560
93026
  jsonResponse: {
@@ -93667,6 +94133,7 @@ interface Routes {
93667
94133
  can_simulate_removal?: boolean | undefined;
93668
94134
  can_simulate_connection?: boolean | undefined;
93669
94135
  can_simulate_disconnection?: boolean | undefined;
94136
+ can_unlock_with_code?: boolean | undefined;
93670
94137
  }>;
93671
94138
  /** Information about the current page of results. */
93672
94139
  pagination: {
@@ -93706,6 +94173,7 @@ interface Routes {
93706
94173
  can_simulate_removal?: boolean | undefined;
93707
94174
  can_simulate_connection?: boolean | undefined;
93708
94175
  can_simulate_disconnection?: boolean | undefined;
94176
+ can_unlock_with_code?: boolean | undefined;
93709
94177
  }>;
93710
94178
  };
93711
94179
  };
@@ -94145,6 +94613,7 @@ interface Routes {
94145
94613
  can_simulate_removal?: boolean | undefined;
94146
94614
  can_simulate_connection?: boolean | undefined;
94147
94615
  can_simulate_disconnection?: boolean | undefined;
94616
+ can_unlock_with_code?: boolean | undefined;
94148
94617
  };
94149
94618
  };
94150
94619
  };
@@ -94180,14 +94649,16 @@ interface Routes {
94180
94649
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
94181
94650
  page_cursor?: (string | undefined) | null;
94182
94651
  /** */
94183
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
94652
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
94184
94653
  /** */
94185
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
94654
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
94186
94655
  /**
94187
94656
  * @deprecated Use `space_id`. */
94188
94657
  unstable_location_id?: (string | null) | undefined;
94189
94658
  /** ID of the space for which you want to list devices. */
94190
94659
  space_id?: string | undefined;
94660
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
94661
+ search?: string | undefined;
94191
94662
  };
94192
94663
  formData: {};
94193
94664
  jsonResponse: {
@@ -94577,6 +95048,7 @@ interface Routes {
94577
95048
  can_simulate_removal?: boolean | undefined;
94578
95049
  can_simulate_connection?: boolean | undefined;
94579
95050
  can_simulate_disconnection?: boolean | undefined;
95051
+ can_unlock_with_code?: boolean | undefined;
94580
95052
  }>;
94581
95053
  };
94582
95054
  };
@@ -98583,6 +99055,7 @@ interface Routes {
98583
99055
  can_simulate_removal?: boolean | undefined;
98584
99056
  can_simulate_connection?: boolean | undefined;
98585
99057
  can_simulate_disconnection?: boolean | undefined;
99058
+ can_unlock_with_code?: boolean | undefined;
98586
99059
  };
98587
99060
  /** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
98588
99061
  device: {
@@ -99694,6 +100167,7 @@ interface Routes {
99694
100167
  can_simulate_removal?: boolean | undefined;
99695
100168
  can_simulate_connection?: boolean | undefined;
99696
100169
  can_simulate_disconnection?: boolean | undefined;
100170
+ can_unlock_with_code?: boolean | undefined;
99697
100171
  };
99698
100172
  };
99699
100173
  };
@@ -99729,14 +100203,16 @@ interface Routes {
99729
100203
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
99730
100204
  page_cursor?: (string | undefined) | null;
99731
100205
  /** */
99732
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
100206
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
99733
100207
  /** */
99734
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
100208
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
99735
100209
  /**
99736
100210
  * @deprecated Use `space_id`. */
99737
100211
  unstable_location_id?: (string | null) | undefined;
99738
100212
  /** ID of the space for which you want to list devices. */
99739
100213
  space_id?: string | undefined;
100214
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
100215
+ search?: string | undefined;
99740
100216
  };
99741
100217
  formData: {};
99742
100218
  jsonResponse: {
@@ -100849,6 +101325,7 @@ interface Routes {
100849
101325
  can_simulate_removal?: boolean | undefined;
100850
101326
  can_simulate_connection?: boolean | undefined;
100851
101327
  can_simulate_disconnection?: boolean | undefined;
101328
+ can_unlock_with_code?: boolean | undefined;
100852
101329
  }>;
100853
101330
  devices: Array<{
100854
101331
  /** ID of the device. */
@@ -101959,6 +102436,7 @@ interface Routes {
101959
102436
  can_simulate_removal?: boolean | undefined;
101960
102437
  can_simulate_connection?: boolean | undefined;
101961
102438
  can_simulate_disconnection?: boolean | undefined;
102439
+ can_unlock_with_code?: boolean | undefined;
101962
102440
  }>;
101963
102441
  };
101964
102442
  };
@@ -102115,6 +102593,8 @@ interface Routes {
102115
102593
  acs_credential_id: string;
102116
102594
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102117
102595
  acs_user_id?: string | undefined;
102596
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102597
+ connected_account_id: string;
102118
102598
  acs_credential_pool_id?: string | undefined;
102119
102599
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
102120
102600
  acs_system_id: string;
@@ -102241,6 +102721,8 @@ interface Routes {
102241
102721
  acs_credential_id: string;
102242
102722
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102243
102723
  acs_user_id?: string | undefined;
102724
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102725
+ connected_account_id: string;
102244
102726
  acs_credential_pool_id?: string | undefined;
102245
102727
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
102246
102728
  acs_system_id: string;
@@ -102490,6 +102972,8 @@ interface Routes {
102490
102972
  acs_credential_id: string;
102491
102973
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102492
102974
  acs_user_id?: string | undefined;
102975
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102976
+ connected_account_id: string;
102493
102977
  acs_credential_pool_id?: string | undefined;
102494
102978
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
102495
102979
  acs_system_id: string;
@@ -102616,6 +103100,8 @@ interface Routes {
102616
103100
  acs_credential_id: string;
102617
103101
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102618
103102
  acs_user_id?: string | undefined;
103103
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103104
+ connected_account_id: string;
102619
103105
  acs_credential_pool_id?: string | undefined;
102620
103106
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
102621
103107
  acs_system_id: string;
@@ -103430,6 +103916,8 @@ interface Routes {
103430
103916
  acs_credential_id: string;
103431
103917
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103432
103918
  acs_user_id?: string | undefined;
103919
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103920
+ connected_account_id: string;
103433
103921
  acs_credential_pool_id?: string | undefined;
103434
103922
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
103435
103923
  acs_system_id: string;
@@ -103556,6 +104044,8 @@ interface Routes {
103556
104044
  acs_credential_id: string;
103557
104045
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103558
104046
  acs_user_id?: string | undefined;
104047
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104048
+ connected_account_id: string;
103559
104049
  acs_credential_pool_id?: string | undefined;
103560
104050
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
103561
104051
  acs_system_id: string;
@@ -103805,6 +104295,8 @@ interface Routes {
103805
104295
  acs_credential_id: string;
103806
104296
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103807
104297
  acs_user_id?: string | undefined;
104298
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104299
+ connected_account_id: string;
103808
104300
  acs_credential_pool_id?: string | undefined;
103809
104301
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
103810
104302
  acs_system_id: string;
@@ -103931,6 +104423,8 @@ interface Routes {
103931
104423
  acs_credential_id: string;
103932
104424
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103933
104425
  acs_user_id?: string | undefined;
104426
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104427
+ connected_account_id: string;
103934
104428
  acs_credential_pool_id?: string | undefined;
103935
104429
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
103936
104430
  acs_system_id: string;
@@ -104743,6 +105237,8 @@ interface Routes {
104743
105237
  acs_credential_id: string;
104744
105238
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104745
105239
  acs_user_id?: string | undefined;
105240
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105241
+ connected_account_id: string;
104746
105242
  acs_credential_pool_id?: string | undefined;
104747
105243
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
104748
105244
  acs_system_id: string;
@@ -104869,6 +105365,8 @@ interface Routes {
104869
105365
  acs_credential_id: string;
104870
105366
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104871
105367
  acs_user_id?: string | undefined;
105368
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105369
+ connected_account_id: string;
104872
105370
  acs_credential_pool_id?: string | undefined;
104873
105371
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
104874
105372
  acs_system_id: string;
@@ -105118,6 +105616,8 @@ interface Routes {
105118
105616
  acs_credential_id: string;
105119
105617
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105120
105618
  acs_user_id?: string | undefined;
105619
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105620
+ connected_account_id: string;
105121
105621
  acs_credential_pool_id?: string | undefined;
105122
105622
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
105123
105623
  acs_system_id: string;
@@ -105244,6 +105744,8 @@ interface Routes {
105244
105744
  acs_credential_id: string;
105245
105745
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105246
105746
  acs_user_id?: string | undefined;
105747
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105748
+ connected_account_id: string;
105247
105749
  acs_credential_pool_id?: string | undefined;
105248
105750
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
105249
105751
  acs_system_id: string;
@@ -106058,6 +106560,8 @@ interface Routes {
106058
106560
  acs_credential_id: string;
106059
106561
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106060
106562
  acs_user_id?: string | undefined;
106563
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106564
+ connected_account_id: string;
106061
106565
  acs_credential_pool_id?: string | undefined;
106062
106566
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
106063
106567
  acs_system_id: string;
@@ -106184,6 +106688,8 @@ interface Routes {
106184
106688
  acs_credential_id: string;
106185
106689
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106186
106690
  acs_user_id?: string | undefined;
106691
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106692
+ connected_account_id: string;
106187
106693
  acs_credential_pool_id?: string | undefined;
106188
106694
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
106189
106695
  acs_system_id: string;
@@ -106433,6 +106939,8 @@ interface Routes {
106433
106939
  acs_credential_id: string;
106434
106940
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106435
106941
  acs_user_id?: string | undefined;
106942
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106943
+ connected_account_id: string;
106436
106944
  acs_credential_pool_id?: string | undefined;
106437
106945
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
106438
106946
  acs_system_id: string;
@@ -106559,6 +107067,8 @@ interface Routes {
106559
107067
  acs_credential_id: string;
106560
107068
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106561
107069
  acs_user_id?: string | undefined;
107070
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
107071
+ connected_account_id: string;
106562
107072
  acs_credential_pool_id?: string | undefined;
106563
107073
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
106564
107074
  acs_system_id: string;
@@ -107287,14 +107797,16 @@ interface Routes {
107287
107797
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
107288
107798
  page_cursor?: (string | undefined) | null;
107289
107799
  /** */
107290
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
107800
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
107291
107801
  /** */
107292
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
107802
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
107293
107803
  /**
107294
107804
  * @deprecated Use `space_id`. */
107295
107805
  unstable_location_id?: (string | null) | undefined;
107296
107806
  /** ID of the space for which you want to list devices. */
107297
107807
  space_id?: string | undefined;
107808
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
107809
+ search?: string | undefined;
107298
107810
  };
107299
107811
  formData: {};
107300
107812
  jsonResponse: {
@@ -108407,6 +108919,7 @@ interface Routes {
108407
108919
  can_simulate_removal?: boolean | undefined;
108408
108920
  can_simulate_connection?: boolean | undefined;
108409
108921
  can_simulate_disconnection?: boolean | undefined;
108922
+ can_unlock_with_code?: boolean | undefined;
108410
108923
  }>;
108411
108924
  devices: Array<{
108412
108925
  /** ID of the device. */
@@ -109517,6 +110030,7 @@ interface Routes {
109517
110030
  can_simulate_removal?: boolean | undefined;
109518
110031
  can_simulate_connection?: boolean | undefined;
109519
110032
  can_simulate_disconnection?: boolean | undefined;
110033
+ can_unlock_with_code?: boolean | undefined;
109520
110034
  }>;
109521
110035
  };
109522
110036
  };
@@ -109683,6 +110197,8 @@ interface Routes {
109683
110197
  acs_credential_id: string;
109684
110198
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
109685
110199
  acs_user_id?: string | undefined;
110200
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110201
+ connected_account_id: string;
109686
110202
  acs_credential_pool_id?: string | undefined;
109687
110203
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
109688
110204
  acs_system_id: string;
@@ -109809,6 +110325,8 @@ interface Routes {
109809
110325
  acs_credential_id: string;
109810
110326
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
109811
110327
  acs_user_id?: string | undefined;
110328
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110329
+ connected_account_id: string;
109812
110330
  acs_credential_pool_id?: string | undefined;
109813
110331
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
109814
110332
  acs_system_id: string;
@@ -110058,6 +110576,8 @@ interface Routes {
110058
110576
  acs_credential_id: string;
110059
110577
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110060
110578
  acs_user_id?: string | undefined;
110579
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110580
+ connected_account_id: string;
110061
110581
  acs_credential_pool_id?: string | undefined;
110062
110582
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
110063
110583
  acs_system_id: string;
@@ -110184,6 +110704,8 @@ interface Routes {
110184
110704
  acs_credential_id: string;
110185
110705
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110186
110706
  acs_user_id?: string | undefined;
110707
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110708
+ connected_account_id: string;
110187
110709
  acs_credential_pool_id?: string | undefined;
110188
110710
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
110189
110711
  acs_system_id: string;
@@ -111017,6 +111539,8 @@ interface Routes {
111017
111539
  acs_credential_id: string;
111018
111540
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111019
111541
  acs_user_id?: string | undefined;
111542
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111543
+ connected_account_id: string;
111020
111544
  acs_credential_pool_id?: string | undefined;
111021
111545
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
111022
111546
  acs_system_id: string;
@@ -111143,6 +111667,8 @@ interface Routes {
111143
111667
  acs_credential_id: string;
111144
111668
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111145
111669
  acs_user_id?: string | undefined;
111670
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111671
+ connected_account_id: string;
111146
111672
  acs_credential_pool_id?: string | undefined;
111147
111673
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
111148
111674
  acs_system_id: string;
@@ -111392,6 +111918,8 @@ interface Routes {
111392
111918
  acs_credential_id: string;
111393
111919
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111394
111920
  acs_user_id?: string | undefined;
111921
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111922
+ connected_account_id: string;
111395
111923
  acs_credential_pool_id?: string | undefined;
111396
111924
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
111397
111925
  acs_system_id: string;
@@ -111518,6 +112046,8 @@ interface Routes {
111518
112046
  acs_credential_id: string;
111519
112047
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111520
112048
  acs_user_id?: string | undefined;
112049
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112050
+ connected_account_id: string;
111521
112051
  acs_credential_pool_id?: string | undefined;
111522
112052
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
111523
112053
  acs_system_id: string;
@@ -112405,6 +112935,8 @@ interface Routes {
112405
112935
  acs_credential_id: string;
112406
112936
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112407
112937
  acs_user_id?: string | undefined;
112938
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112939
+ connected_account_id: string;
112408
112940
  acs_credential_pool_id?: string | undefined;
112409
112941
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
112410
112942
  acs_system_id: string;
@@ -112531,6 +113063,8 @@ interface Routes {
112531
113063
  acs_credential_id: string;
112532
113064
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112533
113065
  acs_user_id?: string | undefined;
113066
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
113067
+ connected_account_id: string;
112534
113068
  acs_credential_pool_id?: string | undefined;
112535
113069
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
112536
113070
  acs_system_id: string;
@@ -112780,6 +113314,8 @@ interface Routes {
112780
113314
  acs_credential_id: string;
112781
113315
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112782
113316
  acs_user_id?: string | undefined;
113317
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
113318
+ connected_account_id: string;
112783
113319
  acs_credential_pool_id?: string | undefined;
112784
113320
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
112785
113321
  acs_system_id: string;
@@ -112906,6 +113442,8 @@ interface Routes {
112906
113442
  acs_credential_id: string;
112907
113443
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112908
113444
  acs_user_id?: string | undefined;
113445
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
113446
+ connected_account_id: string;
112909
113447
  acs_credential_pool_id?: string | undefined;
112910
113448
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
112911
113449
  acs_system_id: string;
@@ -114239,6 +114777,8 @@ interface Routes {
114239
114777
  acs_credential_id: string;
114240
114778
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114241
114779
  acs_user_id?: string | undefined;
114780
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114781
+ connected_account_id: string;
114242
114782
  acs_credential_pool_id?: string | undefined;
114243
114783
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
114244
114784
  acs_system_id: string;
@@ -114401,6 +114941,8 @@ interface Routes {
114401
114941
  acs_credentials: Array<{
114402
114942
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114403
114943
  acs_user_id?: string | undefined;
114944
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114945
+ connected_account_id: string;
114404
114946
  acs_credential_pool_id?: string | undefined;
114405
114947
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
114406
114948
  acs_system_id: string;
@@ -114612,6 +115154,12 @@ interface Routes {
114612
115154
  /** Description of the door in the Salto Space access system. */
114613
115155
  door_description?: string | undefined;
114614
115156
  } | undefined;
115157
+ /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
115158
+ can_unlock_with_mobile_key?: boolean | undefined;
115159
+ /** Indicates whether the ACS entrance can be unlocked with card credentials. */
115160
+ can_unlock_with_card?: boolean | undefined;
115161
+ /** Indicates whether the ACS entrance can be unlocked with pin codes. */
115162
+ can_unlock_with_code?: boolean | undefined;
114615
115163
  }>;
114616
115164
  }>;
114617
115165
  }>;
@@ -114972,6 +115520,8 @@ interface Routes {
114972
115520
  acs_credential_id: string;
114973
115521
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114974
115522
  acs_user_id?: string | undefined;
115523
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115524
+ connected_account_id: string;
114975
115525
  acs_credential_pool_id?: string | undefined;
114976
115526
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
114977
115527
  acs_system_id: string;
@@ -115098,6 +115648,8 @@ interface Routes {
115098
115648
  acs_credential_id: string;
115099
115649
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115100
115650
  acs_user_id?: string | undefined;
115651
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115652
+ connected_account_id: string;
115101
115653
  acs_credential_pool_id?: string | undefined;
115102
115654
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
115103
115655
  acs_system_id: string;
@@ -115347,6 +115899,8 @@ interface Routes {
115347
115899
  acs_credential_id: string;
115348
115900
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115349
115901
  acs_user_id?: string | undefined;
115902
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115903
+ connected_account_id: string;
115350
115904
  acs_credential_pool_id?: string | undefined;
115351
115905
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
115352
115906
  acs_system_id: string;
@@ -115473,6 +116027,8 @@ interface Routes {
115473
116027
  acs_credential_id: string;
115474
116028
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115475
116029
  acs_user_id?: string | undefined;
116030
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116031
+ connected_account_id: string;
115476
116032
  acs_credential_pool_id?: string | undefined;
115477
116033
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
115478
116034
  acs_system_id: string;
@@ -116291,6 +116847,8 @@ interface Routes {
116291
116847
  acs_credential_id: string;
116292
116848
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116293
116849
  acs_user_id?: string | undefined;
116850
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116851
+ connected_account_id: string;
116294
116852
  acs_credential_pool_id?: string | undefined;
116295
116853
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
116296
116854
  acs_system_id: string;
@@ -116417,6 +116975,8 @@ interface Routes {
116417
116975
  acs_credential_id: string;
116418
116976
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116419
116977
  acs_user_id?: string | undefined;
116978
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116979
+ connected_account_id: string;
116420
116980
  acs_credential_pool_id?: string | undefined;
116421
116981
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
116422
116982
  acs_system_id: string;
@@ -116666,6 +117226,8 @@ interface Routes {
116666
117226
  acs_credential_id: string;
116667
117227
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116668
117228
  acs_user_id?: string | undefined;
117229
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117230
+ connected_account_id: string;
116669
117231
  acs_credential_pool_id?: string | undefined;
116670
117232
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
116671
117233
  acs_system_id: string;
@@ -116792,6 +117354,8 @@ interface Routes {
116792
117354
  acs_credential_id: string;
116793
117355
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116794
117356
  acs_user_id?: string | undefined;
117357
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117358
+ connected_account_id: string;
116795
117359
  acs_credential_pool_id?: string | undefined;
116796
117360
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
116797
117361
  acs_system_id: string;
@@ -117698,6 +118262,8 @@ interface Routes {
117698
118262
  acs_credential_id: string;
117699
118263
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117700
118264
  acs_user_id?: string | undefined;
118265
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118266
+ connected_account_id: string;
117701
118267
  acs_credential_pool_id?: string | undefined;
117702
118268
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
117703
118269
  acs_system_id: string;
@@ -117824,6 +118390,8 @@ interface Routes {
117824
118390
  acs_credential_id: string;
117825
118391
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117826
118392
  acs_user_id?: string | undefined;
118393
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118394
+ connected_account_id: string;
117827
118395
  acs_credential_pool_id?: string | undefined;
117828
118396
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
117829
118397
  acs_system_id: string;
@@ -118073,6 +118641,8 @@ interface Routes {
118073
118641
  acs_credential_id: string;
118074
118642
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118075
118643
  acs_user_id?: string | undefined;
118644
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118645
+ connected_account_id: string;
118076
118646
  acs_credential_pool_id?: string | undefined;
118077
118647
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
118078
118648
  acs_system_id: string;
@@ -118199,6 +118769,8 @@ interface Routes {
118199
118769
  acs_credential_id: string;
118200
118770
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118201
118771
  acs_user_id?: string | undefined;
118772
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118773
+ connected_account_id: string;
118202
118774
  acs_credential_pool_id?: string | undefined;
118203
118775
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
118204
118776
  acs_system_id: string;
@@ -119997,6 +120569,7 @@ interface Routes {
119997
120569
  can_simulate_removal?: boolean | undefined;
119998
120570
  can_simulate_connection?: boolean | undefined;
119999
120571
  can_simulate_disconnection?: boolean | undefined;
120572
+ can_unlock_with_code?: boolean | undefined;
120000
120573
  };
120001
120574
  };
120002
120575
  };
@@ -120157,6 +120730,8 @@ interface Routes {
120157
120730
  acs_credential_id: string;
120158
120731
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120159
120732
  acs_user_id?: string | undefined;
120733
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120734
+ connected_account_id: string;
120160
120735
  acs_credential_pool_id?: string | undefined;
120161
120736
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
120162
120737
  acs_system_id: string;
@@ -120283,6 +120858,8 @@ interface Routes {
120283
120858
  acs_credential_id: string;
120284
120859
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120285
120860
  acs_user_id?: string | undefined;
120861
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120862
+ connected_account_id: string;
120286
120863
  acs_credential_pool_id?: string | undefined;
120287
120864
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
120288
120865
  acs_system_id: string;
@@ -120532,6 +121109,8 @@ interface Routes {
120532
121109
  acs_credential_id: string;
120533
121110
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120534
121111
  acs_user_id?: string | undefined;
121112
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121113
+ connected_account_id: string;
120535
121114
  acs_credential_pool_id?: string | undefined;
120536
121115
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
120537
121116
  acs_system_id: string;
@@ -120658,6 +121237,8 @@ interface Routes {
120658
121237
  acs_credential_id: string;
120659
121238
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120660
121239
  acs_user_id?: string | undefined;
121240
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121241
+ connected_account_id: string;
120661
121242
  acs_credential_pool_id?: string | undefined;
120662
121243
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
120663
121244
  acs_system_id: string;
@@ -121480,6 +122061,8 @@ interface Routes {
121480
122061
  acs_credential_id: string;
121481
122062
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121482
122063
  acs_user_id?: string | undefined;
122064
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122065
+ connected_account_id: string;
121483
122066
  acs_credential_pool_id?: string | undefined;
121484
122067
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
121485
122068
  acs_system_id: string;
@@ -121606,6 +122189,8 @@ interface Routes {
121606
122189
  acs_credential_id: string;
121607
122190
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121608
122191
  acs_user_id?: string | undefined;
122192
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122193
+ connected_account_id: string;
121609
122194
  acs_credential_pool_id?: string | undefined;
121610
122195
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
121611
122196
  acs_system_id: string;
@@ -121855,6 +122440,8 @@ interface Routes {
121855
122440
  acs_credential_id: string;
121856
122441
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121857
122442
  acs_user_id?: string | undefined;
122443
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122444
+ connected_account_id: string;
121858
122445
  acs_credential_pool_id?: string | undefined;
121859
122446
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
121860
122447
  acs_system_id: string;
@@ -121981,6 +122568,8 @@ interface Routes {
121981
122568
  acs_credential_id: string;
121982
122569
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121983
122570
  acs_user_id?: string | undefined;
122571
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122572
+ connected_account_id: string;
121984
122573
  acs_credential_pool_id?: string | undefined;
121985
122574
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
121986
122575
  acs_system_id: string;
@@ -122674,14 +123263,16 @@ interface Routes {
122674
123263
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
122675
123264
  page_cursor?: (string | undefined) | null;
122676
123265
  /** */
122677
- include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
123266
+ include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
122678
123267
  /** */
122679
- exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
123268
+ exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
122680
123269
  /**
122681
123270
  * @deprecated Use `space_id`. */
122682
123271
  unstable_location_id?: (string | null) | undefined;
122683
123272
  /** ID of the space for which you want to list devices. */
122684
123273
  space_id?: string | undefined;
123274
+ /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
123275
+ search?: string | undefined;
122685
123276
  };
122686
123277
  formData: {};
122687
123278
  jsonResponse: {
@@ -123794,6 +124385,7 @@ interface Routes {
123794
124385
  can_simulate_removal?: boolean | undefined;
123795
124386
  can_simulate_connection?: boolean | undefined;
123796
124387
  can_simulate_disconnection?: boolean | undefined;
124388
+ can_unlock_with_code?: boolean | undefined;
123797
124389
  }>;
123798
124390
  devices: Array<{
123799
124391
  /** ID of the device. */
@@ -124904,6 +125496,7 @@ interface Routes {
124904
125496
  can_simulate_removal?: boolean | undefined;
124905
125497
  can_simulate_connection?: boolean | undefined;
124906
125498
  can_simulate_disconnection?: boolean | undefined;
125499
+ can_unlock_with_code?: boolean | undefined;
124907
125500
  }>;
124908
125501
  };
124909
125502
  };
@@ -125060,6 +125653,8 @@ interface Routes {
125060
125653
  acs_credential_id: string;
125061
125654
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125062
125655
  acs_user_id?: string | undefined;
125656
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125657
+ connected_account_id: string;
125063
125658
  acs_credential_pool_id?: string | undefined;
125064
125659
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
125065
125660
  acs_system_id: string;
@@ -125186,6 +125781,8 @@ interface Routes {
125186
125781
  acs_credential_id: string;
125187
125782
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125188
125783
  acs_user_id?: string | undefined;
125784
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125785
+ connected_account_id: string;
125189
125786
  acs_credential_pool_id?: string | undefined;
125190
125787
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
125191
125788
  acs_system_id: string;
@@ -125435,6 +126032,8 @@ interface Routes {
125435
126032
  acs_credential_id: string;
125436
126033
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125437
126034
  acs_user_id?: string | undefined;
126035
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126036
+ connected_account_id: string;
125438
126037
  acs_credential_pool_id?: string | undefined;
125439
126038
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
125440
126039
  acs_system_id: string;
@@ -125561,6 +126160,8 @@ interface Routes {
125561
126160
  acs_credential_id: string;
125562
126161
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125563
126162
  acs_user_id?: string | undefined;
126163
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126164
+ connected_account_id: string;
125564
126165
  acs_credential_pool_id?: string | undefined;
125565
126166
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
125566
126167
  acs_system_id: string;
@@ -126572,6 +127173,8 @@ interface Routes {
126572
127173
  acs_credential_id: string;
126573
127174
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126574
127175
  acs_user_id?: string | undefined;
127176
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127177
+ connected_account_id: string;
126575
127178
  acs_credential_pool_id?: string | undefined;
126576
127179
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
126577
127180
  acs_system_id: string;
@@ -126698,6 +127301,8 @@ interface Routes {
126698
127301
  acs_credential_id: string;
126699
127302
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126700
127303
  acs_user_id?: string | undefined;
127304
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127305
+ connected_account_id: string;
126701
127306
  acs_credential_pool_id?: string | undefined;
126702
127307
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
126703
127308
  acs_system_id: string;
@@ -126947,6 +127552,8 @@ interface Routes {
126947
127552
  acs_credential_id: string;
126948
127553
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126949
127554
  acs_user_id?: string | undefined;
127555
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127556
+ connected_account_id: string;
126950
127557
  acs_credential_pool_id?: string | undefined;
126951
127558
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
126952
127559
  acs_system_id: string;
@@ -127073,6 +127680,8 @@ interface Routes {
127073
127680
  acs_credential_id: string;
127074
127681
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127075
127682
  acs_user_id?: string | undefined;
127683
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127684
+ connected_account_id: string;
127076
127685
  acs_credential_pool_id?: string | undefined;
127077
127686
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
127078
127687
  acs_system_id: string;
@@ -127914,6 +128523,8 @@ interface Routes {
127914
128523
  acs_credential_id: string;
127915
128524
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127916
128525
  acs_user_id?: string | undefined;
128526
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128527
+ connected_account_id: string;
127917
128528
  acs_credential_pool_id?: string | undefined;
127918
128529
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
127919
128530
  acs_system_id: string;
@@ -128040,6 +128651,8 @@ interface Routes {
128040
128651
  acs_credential_id: string;
128041
128652
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128042
128653
  acs_user_id?: string | undefined;
128654
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128655
+ connected_account_id: string;
128043
128656
  acs_credential_pool_id?: string | undefined;
128044
128657
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
128045
128658
  acs_system_id: string;
@@ -128289,6 +128902,8 @@ interface Routes {
128289
128902
  acs_credential_id: string;
128290
128903
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128291
128904
  acs_user_id?: string | undefined;
128905
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128906
+ connected_account_id: string;
128292
128907
  acs_credential_pool_id?: string | undefined;
128293
128908
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
128294
128909
  acs_system_id: string;
@@ -128415,6 +129030,8 @@ interface Routes {
128415
129030
  acs_credential_id: string;
128416
129031
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128417
129032
  acs_user_id?: string | undefined;
129033
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129034
+ connected_account_id: string;
128418
129035
  acs_credential_pool_id?: string | undefined;
128419
129036
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
128420
129037
  acs_system_id: string;
@@ -129353,6 +129970,8 @@ interface Routes {
129353
129970
  acs_credential_id: string;
129354
129971
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129355
129972
  acs_user_id?: string | undefined;
129973
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129974
+ connected_account_id: string;
129356
129975
  acs_credential_pool_id?: string | undefined;
129357
129976
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
129358
129977
  acs_system_id: string;
@@ -129479,6 +130098,8 @@ interface Routes {
129479
130098
  acs_credential_id: string;
129480
130099
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129481
130100
  acs_user_id?: string | undefined;
130101
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
130102
+ connected_account_id: string;
129482
130103
  acs_credential_pool_id?: string | undefined;
129483
130104
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
129484
130105
  acs_system_id: string;
@@ -129728,6 +130349,8 @@ interface Routes {
129728
130349
  acs_credential_id: string;
129729
130350
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129730
130351
  acs_user_id?: string | undefined;
130352
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
130353
+ connected_account_id: string;
129731
130354
  acs_credential_pool_id?: string | undefined;
129732
130355
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
129733
130356
  acs_system_id: string;
@@ -129854,6 +130477,8 @@ interface Routes {
129854
130477
  acs_credential_id: string;
129855
130478
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129856
130479
  acs_user_id?: string | undefined;
130480
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
130481
+ connected_account_id: string;
129857
130482
  acs_credential_pool_id?: string | undefined;
129858
130483
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
129859
130484
  acs_system_id: string;
@@ -131433,6 +132058,8 @@ interface Routes {
131433
132058
  queryParams: {};
131434
132059
  jsonBody: {};
131435
132060
  commonParams: {
132061
+ /** String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
132062
+ search?: string | undefined;
131436
132063
  /** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
131437
132064
  credential_manager_acs_system_id?: string | undefined;
131438
132065
  };
@@ -132592,6 +133219,7 @@ interface Routes {
132592
133219
  can_simulate_removal?: boolean | undefined;
132593
133220
  can_simulate_connection?: boolean | undefined;
132594
133221
  can_simulate_disconnection?: boolean | undefined;
133222
+ can_unlock_with_code?: boolean | undefined;
132595
133223
  }>;
132596
133224
  /**
132597
133225
  * @deprecated Use devices. */
@@ -133704,6 +134332,7 @@ interface Routes {
133704
134332
  can_simulate_removal?: boolean | undefined;
133705
134333
  can_simulate_connection?: boolean | undefined;
133706
134334
  can_simulate_disconnection?: boolean | undefined;
134335
+ can_unlock_with_code?: boolean | undefined;
133707
134336
  }>;
133708
134337
  };
133709
134338
  };
@@ -134496,6 +135125,8 @@ interface Routes {
134496
135125
  acs_credential_id: string;
134497
135126
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134498
135127
  acs_user_id?: string | undefined;
135128
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
135129
+ connected_account_id: string;
134499
135130
  acs_credential_pool_id?: string | undefined;
134500
135131
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
134501
135132
  acs_system_id: string;
@@ -134622,6 +135253,8 @@ interface Routes {
134622
135253
  acs_credential_id: string;
134623
135254
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134624
135255
  acs_user_id?: string | undefined;
135256
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
135257
+ connected_account_id: string;
134625
135258
  acs_credential_pool_id?: string | undefined;
134626
135259
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
134627
135260
  acs_system_id: string;
@@ -134871,6 +135504,8 @@ interface Routes {
134871
135504
  acs_credential_id: string;
134872
135505
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134873
135506
  acs_user_id?: string | undefined;
135507
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
135508
+ connected_account_id: string;
134874
135509
  acs_credential_pool_id?: string | undefined;
134875
135510
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
134876
135511
  acs_system_id: string;
@@ -134997,6 +135632,8 @@ interface Routes {
134997
135632
  acs_credential_id: string;
134998
135633
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134999
135634
  acs_user_id?: string | undefined;
135635
+ /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
135636
+ connected_account_id: string;
135000
135637
  acs_credential_pool_id?: string | undefined;
135001
135638
  /** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
135002
135639
  acs_system_id: string;