@seamapi/types 1.306.0 → 1.308.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 (38) hide show
  1. package/dist/connect.cjs +124 -53
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +311 -150
  4. package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
  5. package/lib/seam/connect/models/acs/acs-access-group.js +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +34 -13
  8. package/lib/seam/connect/models/acs/acs-system.js +11 -4
  9. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +13 -13
  11. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +13 -13
  12. package/lib/seam/connect/models/action-attempts/scan-credential.js +7 -2
  13. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
  15. package/lib/seam/connect/models/devices/device-metadata.js +4 -0
  16. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  17. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  18. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  19. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  20. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  21. package/lib/seam/connect/models/devices/device-type.js +1 -0
  22. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  23. package/lib/seam/connect/models/devices/device.d.ts +29 -3
  24. package/lib/seam/connect/models/devices/phone.d.ts +19 -1
  25. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -3
  26. package/lib/seam/connect/openapi.d.ts +32 -17
  27. package/lib/seam/connect/openapi.js +80 -23
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +170 -90
  30. package/package.json +1 -1
  31. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -1
  32. package/src/lib/seam/connect/models/acs/acs-system.ts +15 -5
  33. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +7 -4
  34. package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
  35. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  36. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  37. package/src/lib/seam/connect/openapi.ts +86 -26
  38. package/src/lib/seam/connect/route-types.ts +282 -82
@@ -123,7 +123,7 @@ export interface Routes {
123
123
  common_acs_entrance_ids?: string[] | undefined
124
124
  }
125
125
  | undefined
126
- }
126
+ } | null
127
127
  /** Matching acs_credential currently encoded on this card. */
128
128
  acs_credential_on_seam:
129
129
  | (
@@ -342,7 +342,9 @@ export interface Routes {
342
342
  )
343
343
  | null
344
344
  warnings: Array<{
345
- warning_code: 'acs_credential_on_encoder_out_of_sync'
345
+ warning_code:
346
+ | 'acs_credential_on_encoder_out_of_sync'
347
+ | 'acs_credential_on_seam_not_found'
346
348
  warning_message: string
347
349
  }>
348
350
  }
@@ -1303,7 +1305,7 @@ export interface Routes {
1303
1305
  common_acs_entrance_ids?: string[] | undefined
1304
1306
  }
1305
1307
  | undefined
1306
- }
1308
+ } | null
1307
1309
  /** Matching acs_credential currently encoded on this card. */
1308
1310
  acs_credential_on_seam:
1309
1311
  | (
@@ -1522,7 +1524,9 @@ export interface Routes {
1522
1524
  )
1523
1525
  | null
1524
1526
  warnings: Array<{
1525
- warning_code: 'acs_credential_on_encoder_out_of_sync'
1527
+ warning_code:
1528
+ | 'acs_credential_on_encoder_out_of_sync'
1529
+ | 'acs_credential_on_seam_not_found'
1526
1530
  warning_message: string
1527
1531
  }>
1528
1532
  }
@@ -2713,7 +2717,7 @@ export interface Routes {
2713
2717
  common_acs_entrance_ids?: string[] | undefined
2714
2718
  }
2715
2719
  | undefined
2716
- }
2720
+ } | null
2717
2721
  /** Matching acs_credential currently encoded on this card. */
2718
2722
  acs_credential_on_seam:
2719
2723
  | (
@@ -2932,7 +2936,9 @@ export interface Routes {
2932
2936
  )
2933
2937
  | null
2934
2938
  warnings: Array<{
2935
- warning_code: 'acs_credential_on_encoder_out_of_sync'
2939
+ warning_code:
2940
+ | 'acs_credential_on_encoder_out_of_sync'
2941
+ | 'acs_credential_on_seam_not_found'
2936
2942
  warning_message: string
2937
2943
  }>
2938
2944
  }
@@ -3880,7 +3886,7 @@ export interface Routes {
3880
3886
  common_acs_entrance_ids?: string[] | undefined
3881
3887
  }
3882
3888
  | undefined
3883
- }
3889
+ } | null
3884
3890
  /** Matching acs_credential currently encoded on this card. */
3885
3891
  acs_credential_on_seam:
3886
3892
  | (
@@ -4099,7 +4105,9 @@ export interface Routes {
4099
4105
  )
4100
4106
  | null
4101
4107
  warnings: Array<{
4102
- warning_code: 'acs_credential_on_encoder_out_of_sync'
4108
+ warning_code:
4109
+ | 'acs_credential_on_encoder_out_of_sync'
4110
+ | 'acs_credential_on_seam_not_found'
4103
4111
  warning_message: string
4104
4112
  }>
4105
4113
  }
@@ -4848,7 +4856,7 @@ export interface Routes {
4848
4856
  access_group_type:
4849
4857
  | 'pti_unit'
4850
4858
  | 'pti_access_level'
4851
- | 'salto_access_group'
4859
+ | 'salto_ks_access_group'
4852
4860
  | 'brivo_group'
4853
4861
  /**
4854
4862
  * @deprecated Use `external_type_display_name`. */
@@ -4858,7 +4866,7 @@ export interface Routes {
4858
4866
  external_type:
4859
4867
  | 'pti_unit'
4860
4868
  | 'pti_access_level'
4861
- | 'salto_access_group'
4869
+ | 'salto_ks_access_group'
4862
4870
  | 'brivo_group'
4863
4871
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4864
4872
  external_type_display_name: string
@@ -4895,7 +4903,7 @@ export interface Routes {
4895
4903
  access_group_type:
4896
4904
  | 'pti_unit'
4897
4905
  | 'pti_access_level'
4898
- | 'salto_access_group'
4906
+ | 'salto_ks_access_group'
4899
4907
  | 'brivo_group'
4900
4908
  /**
4901
4909
  * @deprecated Use `external_type_display_name`. */
@@ -4905,7 +4913,7 @@ export interface Routes {
4905
4913
  external_type:
4906
4914
  | 'pti_unit'
4907
4915
  | 'pti_access_level'
4908
- | 'salto_access_group'
4916
+ | 'salto_ks_access_group'
4909
4917
  | 'brivo_group'
4910
4918
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4911
4919
  external_type_display_name: string
@@ -5159,7 +5167,7 @@ export interface Routes {
5159
5167
  access_group_type:
5160
5168
  | 'pti_unit'
5161
5169
  | 'pti_access_level'
5162
- | 'salto_access_group'
5170
+ | 'salto_ks_access_group'
5163
5171
  | 'brivo_group'
5164
5172
  /**
5165
5173
  * @deprecated Use `external_type_display_name`. */
@@ -5169,7 +5177,7 @@ export interface Routes {
5169
5177
  external_type:
5170
5178
  | 'pti_unit'
5171
5179
  | 'pti_access_level'
5172
- | 'salto_access_group'
5180
+ | 'salto_ks_access_group'
5173
5181
  | 'brivo_group'
5174
5182
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
5175
5183
  external_type_display_name: string
@@ -5206,7 +5214,7 @@ export interface Routes {
5206
5214
  access_group_type:
5207
5215
  | 'pti_unit'
5208
5216
  | 'pti_access_level'
5209
- | 'salto_access_group'
5217
+ | 'salto_ks_access_group'
5210
5218
  | 'brivo_group'
5211
5219
  /**
5212
5220
  * @deprecated Use `external_type_display_name`. */
@@ -5216,7 +5224,7 @@ export interface Routes {
5216
5224
  external_type:
5217
5225
  | 'pti_unit'
5218
5226
  | 'pti_access_level'
5219
- | 'salto_access_group'
5227
+ | 'salto_ks_access_group'
5220
5228
  | 'brivo_group'
5221
5229
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
5222
5230
  external_type_display_name: string
@@ -6618,7 +6626,7 @@ export interface Routes {
6618
6626
  common_acs_entrance_ids?: string[] | undefined
6619
6627
  }
6620
6628
  | undefined
6621
- }
6629
+ } | null
6622
6630
  /** Matching acs_credential currently encoded on this card. */
6623
6631
  acs_credential_on_seam:
6624
6632
  | (
@@ -6837,7 +6845,9 @@ export interface Routes {
6837
6845
  )
6838
6846
  | null
6839
6847
  warnings: Array<{
6840
- warning_code: 'acs_credential_on_encoder_out_of_sync'
6848
+ warning_code:
6849
+ | 'acs_credential_on_encoder_out_of_sync'
6850
+ | 'acs_credential_on_seam_not_found'
6841
6851
  warning_message: string
6842
6852
  }>
6843
6853
  }
@@ -7687,7 +7697,7 @@ export interface Routes {
7687
7697
  common_acs_entrance_ids?: string[] | undefined
7688
7698
  }
7689
7699
  | undefined
7690
- }
7700
+ } | null
7691
7701
  /** Matching acs_credential currently encoded on this card. */
7692
7702
  acs_credential_on_seam:
7693
7703
  | (
@@ -7906,7 +7916,9 @@ export interface Routes {
7906
7916
  )
7907
7917
  | null
7908
7918
  warnings: Array<{
7909
- warning_code: 'acs_credential_on_encoder_out_of_sync'
7919
+ warning_code:
7920
+ | 'acs_credential_on_encoder_out_of_sync'
7921
+ | 'acs_credential_on_seam_not_found'
7910
7922
  warning_message: string
7911
7923
  }>
7912
7924
  }
@@ -8914,6 +8926,7 @@ export interface Routes {
8914
8926
  | 'pti_site'
8915
8927
  | 'alta_org'
8916
8928
  | 'salto_ks_site'
8929
+ | 'salto_space_system'
8917
8930
  | 'brivo_account'
8918
8931
  | 'hid_credential_manager_organization'
8919
8932
  | 'visionline_system'
@@ -8946,6 +8959,7 @@ export interface Routes {
8946
8959
  | 'pti_site'
8947
8960
  | 'alta_org'
8948
8961
  | 'salto_ks_site'
8962
+ | 'salto_space_system'
8949
8963
  | 'brivo_account'
8950
8964
  | 'hid_credential_manager_organization'
8951
8965
  | 'visionline_system'
@@ -9028,14 +9042,24 @@ export interface Routes {
9028
9042
  }
9029
9043
  >
9030
9044
  /** Warnings associated with the `acs_system`. */
9031
- warnings: Array<{
9032
- /** Date and time at which Seam created the warning. */
9033
- created_at: string
9034
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9035
- message: string
9036
- /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
9037
- warning_code: 'salto_ks_subscription_limit_almost_reached'
9038
- }>
9045
+ warnings: Array<
9046
+ | {
9047
+ /** Date and time at which Seam created the warning. */
9048
+ created_at: string
9049
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9050
+ message: string
9051
+ /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
9052
+ warning_code: 'salto_ks_subscription_limit_almost_reached'
9053
+ }
9054
+ | {
9055
+ /** Date and time at which Seam created the warning. */
9056
+ created_at: string
9057
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9058
+ message: string
9059
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
9060
+ warning_code: 'time_zone_does_not_match_location'
9061
+ }
9062
+ >
9039
9063
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
9040
9064
  can_automate_enrollment?: boolean | undefined
9041
9065
  /** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
@@ -9069,6 +9093,7 @@ export interface Routes {
9069
9093
  | 'pti_site'
9070
9094
  | 'alta_org'
9071
9095
  | 'salto_ks_site'
9096
+ | 'salto_space_system'
9072
9097
  | 'brivo_account'
9073
9098
  | 'hid_credential_manager_organization'
9074
9099
  | 'visionline_system'
@@ -9101,6 +9126,7 @@ export interface Routes {
9101
9126
  | 'pti_site'
9102
9127
  | 'alta_org'
9103
9128
  | 'salto_ks_site'
9129
+ | 'salto_space_system'
9104
9130
  | 'brivo_account'
9105
9131
  | 'hid_credential_manager_organization'
9106
9132
  | 'visionline_system'
@@ -9183,14 +9209,24 @@ export interface Routes {
9183
9209
  }
9184
9210
  >
9185
9211
  /** Warnings associated with the `acs_system`. */
9186
- warnings: Array<{
9187
- /** Date and time at which Seam created the warning. */
9188
- created_at: string
9189
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9190
- message: string
9191
- /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
9192
- warning_code: 'salto_ks_subscription_limit_almost_reached'
9193
- }>
9212
+ warnings: Array<
9213
+ | {
9214
+ /** Date and time at which Seam created the warning. */
9215
+ created_at: string
9216
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9217
+ message: string
9218
+ /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
9219
+ warning_code: 'salto_ks_subscription_limit_almost_reached'
9220
+ }
9221
+ | {
9222
+ /** Date and time at which Seam created the warning. */
9223
+ created_at: string
9224
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9225
+ message: string
9226
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
9227
+ warning_code: 'time_zone_does_not_match_location'
9228
+ }
9229
+ >
9194
9230
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
9195
9231
  can_automate_enrollment?: boolean | undefined
9196
9232
  /** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
@@ -9224,6 +9260,7 @@ export interface Routes {
9224
9260
  | 'pti_site'
9225
9261
  | 'alta_org'
9226
9262
  | 'salto_ks_site'
9263
+ | 'salto_space_system'
9227
9264
  | 'brivo_account'
9228
9265
  | 'hid_credential_manager_organization'
9229
9266
  | 'visionline_system'
@@ -9256,6 +9293,7 @@ export interface Routes {
9256
9293
  | 'pti_site'
9257
9294
  | 'alta_org'
9258
9295
  | 'salto_ks_site'
9296
+ | 'salto_space_system'
9259
9297
  | 'brivo_account'
9260
9298
  | 'hid_credential_manager_organization'
9261
9299
  | 'visionline_system'
@@ -9338,14 +9376,24 @@ export interface Routes {
9338
9376
  }
9339
9377
  >
9340
9378
  /** Warnings associated with the `acs_system`. */
9341
- warnings: Array<{
9342
- /** Date and time at which Seam created the warning. */
9343
- created_at: string
9344
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9345
- message: string
9346
- /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
9347
- warning_code: 'salto_ks_subscription_limit_almost_reached'
9348
- }>
9379
+ warnings: Array<
9380
+ | {
9381
+ /** Date and time at which Seam created the warning. */
9382
+ created_at: string
9383
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9384
+ message: string
9385
+ /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
9386
+ warning_code: 'salto_ks_subscription_limit_almost_reached'
9387
+ }
9388
+ | {
9389
+ /** Date and time at which Seam created the warning. */
9390
+ created_at: string
9391
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9392
+ message: string
9393
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
9394
+ warning_code: 'time_zone_does_not_match_location'
9395
+ }
9396
+ >
9349
9397
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
9350
9398
  can_automate_enrollment?: boolean | undefined
9351
9399
  /** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
@@ -10300,7 +10348,7 @@ export interface Routes {
10300
10348
  common_acs_entrance_ids?: string[] | undefined
10301
10349
  }
10302
10350
  | undefined
10303
- }
10351
+ } | null
10304
10352
  /** Matching acs_credential currently encoded on this card. */
10305
10353
  acs_credential_on_seam:
10306
10354
  | (
@@ -10519,7 +10567,9 @@ export interface Routes {
10519
10567
  )
10520
10568
  | null
10521
10569
  warnings: Array<{
10522
- warning_code: 'acs_credential_on_encoder_out_of_sync'
10570
+ warning_code:
10571
+ | 'acs_credential_on_encoder_out_of_sync'
10572
+ | 'acs_credential_on_seam_not_found'
10523
10573
  warning_message: string
10524
10574
  }>
10525
10575
  }
@@ -11321,7 +11371,7 @@ export interface Routes {
11321
11371
  common_acs_entrance_ids?: string[] | undefined
11322
11372
  }
11323
11373
  | undefined
11324
- }
11374
+ } | null
11325
11375
  /** Matching acs_credential currently encoded on this card. */
11326
11376
  acs_credential_on_seam:
11327
11377
  | (
@@ -11540,7 +11590,9 @@ export interface Routes {
11540
11590
  )
11541
11591
  | null
11542
11592
  warnings: Array<{
11543
- warning_code: 'acs_credential_on_encoder_out_of_sync'
11593
+ warning_code:
11594
+ | 'acs_credential_on_encoder_out_of_sync'
11595
+ | 'acs_credential_on_seam_not_found'
11544
11596
  warning_message: string
11545
11597
  }>
11546
11598
  }
@@ -12443,6 +12495,7 @@ export interface Routes {
12443
12495
  | 'assa_abloy_vostio'
12444
12496
  | 'assa_abloy_vostio_credential_service'
12445
12497
  | 'tado'
12498
+ | 'salto_space'
12446
12499
  | 'yale_access'
12447
12500
  | 'hid_cm'
12448
12501
  | 'google_nest'
@@ -12777,6 +12830,7 @@ export interface Routes {
12777
12830
  | 'ecobee_thermostat'
12778
12831
  | 'nest_thermostat'
12779
12832
  | 'honeywell_resideo_thermostat'
12833
+ | 'tado_thermostat'
12780
12834
  )
12781
12835
  | ('ios_phone' | 'android_phone')
12782
12836
  /** Optional nickname to describe the device, settable through Seam */
@@ -13171,6 +13225,12 @@ export interface Routes {
13171
13225
  encoder_name: string
13172
13226
  }
13173
13227
  | undefined
13228
+ tado_metadata?:
13229
+ | {
13230
+ serial_no: string
13231
+ device_type: string
13232
+ }
13233
+ | undefined
13174
13234
  }) &
13175
13235
  ({
13176
13236
  _experimental_supported_code_from_access_codes_lengths?:
@@ -13484,6 +13544,7 @@ export interface Routes {
13484
13544
  | 'ecobee_thermostat'
13485
13545
  | 'nest_thermostat'
13486
13546
  | 'honeywell_resideo_thermostat'
13547
+ | 'tado_thermostat'
13487
13548
  )
13488
13549
  | ('ios_phone' | 'android_phone')
13489
13550
  )
@@ -13525,6 +13586,7 @@ export interface Routes {
13525
13586
  | 'ecobee_thermostat'
13526
13587
  | 'nest_thermostat'
13527
13588
  | 'honeywell_resideo_thermostat'
13589
+ | 'tado_thermostat'
13528
13590
  )
13529
13591
  | ('ios_phone' | 'android_phone')
13530
13592
  >
@@ -13567,6 +13629,7 @@ export interface Routes {
13567
13629
  | 'tedee'
13568
13630
  | 'honeywell_resideo'
13569
13631
  | 'akiles'
13632
+ | 'tado'
13570
13633
  )
13571
13634
  | undefined
13572
13635
  /** Array of device IDs by which to filter devices. */
@@ -13653,6 +13716,7 @@ export interface Routes {
13653
13716
  | 'ecobee_thermostat'
13654
13717
  | 'nest_thermostat'
13655
13718
  | 'honeywell_resideo_thermostat'
13719
+ | 'tado_thermostat'
13656
13720
  )
13657
13721
  | ('ios_phone' | 'android_phone')
13658
13722
  /** Optional nickname to describe the device, settable through Seam */
@@ -14047,6 +14111,12 @@ export interface Routes {
14047
14111
  encoder_name: string
14048
14112
  }
14049
14113
  | undefined
14114
+ tado_metadata?:
14115
+ | {
14116
+ serial_no: string
14117
+ device_type: string
14118
+ }
14119
+ | undefined
14050
14120
  }) &
14051
14121
  ({
14052
14122
  _experimental_supported_code_from_access_codes_lengths?:
@@ -14375,6 +14445,7 @@ export interface Routes {
14375
14445
  | 'assa_abloy_vostio'
14376
14446
  | 'assa_abloy_vostio_credential_service'
14377
14447
  | 'tado'
14448
+ | 'salto_space'
14378
14449
  display_name: string
14379
14450
  image_url: string
14380
14451
  provider_categories: Array<
@@ -14481,6 +14552,7 @@ export interface Routes {
14481
14552
  | 'ecobee_thermostat'
14482
14553
  | 'nest_thermostat'
14483
14554
  | 'honeywell_resideo_thermostat'
14555
+ | 'tado_thermostat'
14484
14556
  )
14485
14557
  | ('ios_phone' | 'android_phone')
14486
14558
  /** Unique identifier for the account associated with the device. */
@@ -14643,6 +14715,7 @@ export interface Routes {
14643
14715
  | 'ecobee_thermostat'
14644
14716
  | 'nest_thermostat'
14645
14717
  | 'honeywell_resideo_thermostat'
14718
+ | 'tado_thermostat'
14646
14719
  )
14647
14720
  | ('ios_phone' | 'android_phone')
14648
14721
  )
@@ -14684,6 +14757,7 @@ export interface Routes {
14684
14757
  | 'ecobee_thermostat'
14685
14758
  | 'nest_thermostat'
14686
14759
  | 'honeywell_resideo_thermostat'
14760
+ | 'tado_thermostat'
14687
14761
  )
14688
14762
  | ('ios_phone' | 'android_phone')
14689
14763
  >
@@ -14726,6 +14800,7 @@ export interface Routes {
14726
14800
  | 'tedee'
14727
14801
  | 'honeywell_resideo'
14728
14802
  | 'akiles'
14803
+ | 'tado'
14729
14804
  )
14730
14805
  | undefined
14731
14806
  /** Array of device IDs by which to filter devices. */
@@ -14812,6 +14887,7 @@ export interface Routes {
14812
14887
  | 'ecobee_thermostat'
14813
14888
  | 'nest_thermostat'
14814
14889
  | 'honeywell_resideo_thermostat'
14890
+ | 'tado_thermostat'
14815
14891
  )
14816
14892
  | ('ios_phone' | 'android_phone')
14817
14893
  /** Unique identifier for the account associated with the device. */
@@ -15246,6 +15322,7 @@ export interface Routes {
15246
15322
  | 'ecobee_thermostat'
15247
15323
  | 'nest_thermostat'
15248
15324
  | 'honeywell_resideo_thermostat'
15325
+ | 'tado_thermostat'
15249
15326
  )
15250
15327
  | ('ios_phone' | 'android_phone')
15251
15328
  /** Optional nickname to describe the device, settable through Seam */
@@ -15640,6 +15717,12 @@ export interface Routes {
15640
15717
  encoder_name: string
15641
15718
  }
15642
15719
  | undefined
15720
+ tado_metadata?:
15721
+ | {
15722
+ serial_no: string
15723
+ device_type: string
15724
+ }
15725
+ | undefined
15643
15726
  }) &
15644
15727
  ({
15645
15728
  _experimental_supported_code_from_access_codes_lengths?:
@@ -15941,6 +16024,7 @@ export interface Routes {
15941
16024
  | 'ecobee_thermostat'
15942
16025
  | 'nest_thermostat'
15943
16026
  | 'honeywell_resideo_thermostat'
16027
+ | 'tado_thermostat'
15944
16028
  )
15945
16029
  | ('ios_phone' | 'android_phone')
15946
16030
  /** Optional nickname to describe the device, settable through Seam */
@@ -16335,6 +16419,12 @@ export interface Routes {
16335
16419
  encoder_name: string
16336
16420
  }
16337
16421
  | undefined
16422
+ tado_metadata?:
16423
+ | {
16424
+ serial_no: string
16425
+ device_type: string
16426
+ }
16427
+ | undefined
16338
16428
  }) &
16339
16429
  ({
16340
16430
  _experimental_supported_code_from_access_codes_lengths?:
@@ -16648,6 +16738,7 @@ export interface Routes {
16648
16738
  | 'ecobee_thermostat'
16649
16739
  | 'nest_thermostat'
16650
16740
  | 'honeywell_resideo_thermostat'
16741
+ | 'tado_thermostat'
16651
16742
  )
16652
16743
  | ('ios_phone' | 'android_phone')
16653
16744
  )
@@ -16689,6 +16780,7 @@ export interface Routes {
16689
16780
  | 'ecobee_thermostat'
16690
16781
  | 'nest_thermostat'
16691
16782
  | 'honeywell_resideo_thermostat'
16783
+ | 'tado_thermostat'
16692
16784
  )
16693
16785
  | ('ios_phone' | 'android_phone')
16694
16786
  >
@@ -16731,6 +16823,7 @@ export interface Routes {
16731
16823
  | 'tedee'
16732
16824
  | 'honeywell_resideo'
16733
16825
  | 'akiles'
16826
+ | 'tado'
16734
16827
  )
16735
16828
  | undefined
16736
16829
  /** Array of device IDs by which to filter devices. */
@@ -16817,6 +16910,7 @@ export interface Routes {
16817
16910
  | 'ecobee_thermostat'
16818
16911
  | 'nest_thermostat'
16819
16912
  | 'honeywell_resideo_thermostat'
16913
+ | 'tado_thermostat'
16820
16914
  )
16821
16915
  | ('ios_phone' | 'android_phone')
16822
16916
  /** Optional nickname to describe the device, settable through Seam */
@@ -17211,6 +17305,12 @@ export interface Routes {
17211
17305
  encoder_name: string
17212
17306
  }
17213
17307
  | undefined
17308
+ tado_metadata?:
17309
+ | {
17310
+ serial_no: string
17311
+ device_type: string
17312
+ }
17313
+ | undefined
17214
17314
  }) &
17215
17315
  ({
17216
17316
  _experimental_supported_code_from_access_codes_lengths?:
@@ -17512,6 +17612,7 @@ export interface Routes {
17512
17612
  | 'ecobee_thermostat'
17513
17613
  | 'nest_thermostat'
17514
17614
  | 'honeywell_resideo_thermostat'
17615
+ | 'tado_thermostat'
17515
17616
  )
17516
17617
  | ('ios_phone' | 'android_phone')
17517
17618
  /** Optional nickname to describe the device, settable through Seam */
@@ -17906,6 +18007,12 @@ export interface Routes {
17906
18007
  encoder_name: string
17907
18008
  }
17908
18009
  | undefined
18010
+ tado_metadata?:
18011
+ | {
18012
+ serial_no: string
18013
+ device_type: string
18014
+ }
18015
+ | undefined
17909
18016
  }) &
17910
18017
  ({
17911
18018
  _experimental_supported_code_from_access_codes_lengths?:
@@ -18279,7 +18386,7 @@ export interface Routes {
18279
18386
  common_acs_entrance_ids?: string[] | undefined
18280
18387
  }
18281
18388
  | undefined
18282
- }
18389
+ } | null
18283
18390
  /** Matching acs_credential currently encoded on this card. */
18284
18391
  acs_credential_on_seam:
18285
18392
  | (
@@ -18498,7 +18605,9 @@ export interface Routes {
18498
18605
  )
18499
18606
  | null
18500
18607
  warnings: Array<{
18501
- warning_code: 'acs_credential_on_encoder_out_of_sync'
18608
+ warning_code:
18609
+ | 'acs_credential_on_encoder_out_of_sync'
18610
+ | 'acs_credential_on_seam_not_found'
18502
18611
  warning_message: string
18503
18612
  }>
18504
18613
  }
@@ -19301,7 +19410,7 @@ export interface Routes {
19301
19410
  common_acs_entrance_ids?: string[] | undefined
19302
19411
  }
19303
19412
  | undefined
19304
- }
19413
+ } | null
19305
19414
  /** Matching acs_credential currently encoded on this card. */
19306
19415
  acs_credential_on_seam:
19307
19416
  | (
@@ -19520,7 +19629,9 @@ export interface Routes {
19520
19629
  )
19521
19630
  | null
19522
19631
  warnings: Array<{
19523
- warning_code: 'acs_credential_on_encoder_out_of_sync'
19632
+ warning_code:
19633
+ | 'acs_credential_on_encoder_out_of_sync'
19634
+ | 'acs_credential_on_seam_not_found'
19524
19635
  warning_message: string
19525
19636
  }>
19526
19637
  }
@@ -20297,6 +20408,7 @@ export interface Routes {
20297
20408
  | 'ecobee_thermostat'
20298
20409
  | 'nest_thermostat'
20299
20410
  | 'honeywell_resideo_thermostat'
20411
+ | 'tado_thermostat'
20300
20412
  )
20301
20413
  | ('ios_phone' | 'android_phone')
20302
20414
  )
@@ -20338,6 +20450,7 @@ export interface Routes {
20338
20450
  | 'ecobee_thermostat'
20339
20451
  | 'nest_thermostat'
20340
20452
  | 'honeywell_resideo_thermostat'
20453
+ | 'tado_thermostat'
20341
20454
  )
20342
20455
  | ('ios_phone' | 'android_phone')
20343
20456
  >
@@ -20380,6 +20493,7 @@ export interface Routes {
20380
20493
  | 'tedee'
20381
20494
  | 'honeywell_resideo'
20382
20495
  | 'akiles'
20496
+ | 'tado'
20383
20497
  )
20384
20498
  | undefined
20385
20499
  /** Array of device IDs by which to filter devices. */
@@ -20466,6 +20580,7 @@ export interface Routes {
20466
20580
  | 'ecobee_thermostat'
20467
20581
  | 'nest_thermostat'
20468
20582
  | 'honeywell_resideo_thermostat'
20583
+ | 'tado_thermostat'
20469
20584
  )
20470
20585
  | ('ios_phone' | 'android_phone')
20471
20586
  /** Optional nickname to describe the device, settable through Seam */
@@ -20860,6 +20975,12 @@ export interface Routes {
20860
20975
  encoder_name: string
20861
20976
  }
20862
20977
  | undefined
20978
+ tado_metadata?:
20979
+ | {
20980
+ serial_no: string
20981
+ device_type: string
20982
+ }
20983
+ | undefined
20863
20984
  }) &
20864
20985
  ({
20865
20986
  _experimental_supported_code_from_access_codes_lengths?:
@@ -21161,6 +21282,7 @@ export interface Routes {
21161
21282
  | 'ecobee_thermostat'
21162
21283
  | 'nest_thermostat'
21163
21284
  | 'honeywell_resideo_thermostat'
21285
+ | 'tado_thermostat'
21164
21286
  )
21165
21287
  | ('ios_phone' | 'android_phone')
21166
21288
  /** Optional nickname to describe the device, settable through Seam */
@@ -21555,6 +21677,12 @@ export interface Routes {
21555
21677
  encoder_name: string
21556
21678
  }
21557
21679
  | undefined
21680
+ tado_metadata?:
21681
+ | {
21682
+ serial_no: string
21683
+ device_type: string
21684
+ }
21685
+ | undefined
21558
21686
  }) &
21559
21687
  ({
21560
21688
  _experimental_supported_code_from_access_codes_lengths?:
@@ -21933,7 +22061,7 @@ export interface Routes {
21933
22061
  common_acs_entrance_ids?: string[] | undefined
21934
22062
  }
21935
22063
  | undefined
21936
- }
22064
+ } | null
21937
22065
  /** Matching acs_credential currently encoded on this card. */
21938
22066
  acs_credential_on_seam:
21939
22067
  | (
@@ -22152,7 +22280,9 @@ export interface Routes {
22152
22280
  )
22153
22281
  | null
22154
22282
  warnings: Array<{
22155
- warning_code: 'acs_credential_on_encoder_out_of_sync'
22283
+ warning_code:
22284
+ | 'acs_credential_on_encoder_out_of_sync'
22285
+ | 'acs_credential_on_seam_not_found'
22156
22286
  warning_message: string
22157
22287
  }>
22158
22288
  }
@@ -22965,7 +23095,7 @@ export interface Routes {
22965
23095
  common_acs_entrance_ids?: string[] | undefined
22966
23096
  }
22967
23097
  | undefined
22968
- }
23098
+ } | null
22969
23099
  /** Matching acs_credential currently encoded on this card. */
22970
23100
  acs_credential_on_seam:
22971
23101
  | (
@@ -23184,7 +23314,9 @@ export interface Routes {
23184
23314
  )
23185
23315
  | null
23186
23316
  warnings: Array<{
23187
- warning_code: 'acs_credential_on_encoder_out_of_sync'
23317
+ warning_code:
23318
+ | 'acs_credential_on_encoder_out_of_sync'
23319
+ | 'acs_credential_on_seam_not_found'
23188
23320
  warning_message: string
23189
23321
  }>
23190
23322
  }
@@ -24036,7 +24168,7 @@ export interface Routes {
24036
24168
  common_acs_entrance_ids?: string[] | undefined
24037
24169
  }
24038
24170
  | undefined
24039
- }
24171
+ } | null
24040
24172
  /** Matching acs_credential currently encoded on this card. */
24041
24173
  acs_credential_on_seam:
24042
24174
  | (
@@ -24255,7 +24387,9 @@ export interface Routes {
24255
24387
  )
24256
24388
  | null
24257
24389
  warnings: Array<{
24258
- warning_code: 'acs_credential_on_encoder_out_of_sync'
24390
+ warning_code:
24391
+ | 'acs_credential_on_encoder_out_of_sync'
24392
+ | 'acs_credential_on_seam_not_found'
24259
24393
  warning_message: string
24260
24394
  }>
24261
24395
  }
@@ -25266,7 +25400,7 @@ export interface Routes {
25266
25400
  common_acs_entrance_ids?: string[] | undefined
25267
25401
  }
25268
25402
  | undefined
25269
- }
25403
+ } | null
25270
25404
  /** Matching acs_credential currently encoded on this card. */
25271
25405
  acs_credential_on_seam:
25272
25406
  | (
@@ -25485,7 +25619,9 @@ export interface Routes {
25485
25619
  )
25486
25620
  | null
25487
25621
  warnings: Array<{
25488
- warning_code: 'acs_credential_on_encoder_out_of_sync'
25622
+ warning_code:
25623
+ | 'acs_credential_on_encoder_out_of_sync'
25624
+ | 'acs_credential_on_seam_not_found'
25489
25625
  warning_message: string
25490
25626
  }>
25491
25627
  }
@@ -26294,7 +26430,7 @@ export interface Routes {
26294
26430
  common_acs_entrance_ids?: string[] | undefined
26295
26431
  }
26296
26432
  | undefined
26297
- }
26433
+ } | null
26298
26434
  /** Matching acs_credential currently encoded on this card. */
26299
26435
  acs_credential_on_seam:
26300
26436
  | (
@@ -26513,7 +26649,9 @@ export interface Routes {
26513
26649
  )
26514
26650
  | null
26515
26651
  warnings: Array<{
26516
- warning_code: 'acs_credential_on_encoder_out_of_sync'
26652
+ warning_code:
26653
+ | 'acs_credential_on_encoder_out_of_sync'
26654
+ | 'acs_credential_on_seam_not_found'
26517
26655
  warning_message: string
26518
26656
  }>
26519
26657
  }
@@ -27302,6 +27440,7 @@ export interface Routes {
27302
27440
  | 'ecobee_thermostat'
27303
27441
  | 'nest_thermostat'
27304
27442
  | 'honeywell_resideo_thermostat'
27443
+ | 'tado_thermostat'
27305
27444
  )
27306
27445
  | ('ios_phone' | 'android_phone')
27307
27446
  /** Optional nickname to describe the device, settable through Seam */
@@ -27696,6 +27835,12 @@ export interface Routes {
27696
27835
  encoder_name: string
27697
27836
  }
27698
27837
  | undefined
27838
+ tado_metadata?:
27839
+ | {
27840
+ serial_no: string
27841
+ device_type: string
27842
+ }
27843
+ | undefined
27699
27844
  }) &
27700
27845
  ({
27701
27846
  _experimental_supported_code_from_access_codes_lengths?:
@@ -28075,7 +28220,7 @@ export interface Routes {
28075
28220
  common_acs_entrance_ids?: string[] | undefined
28076
28221
  }
28077
28222
  | undefined
28078
- }
28223
+ } | null
28079
28224
  /** Matching acs_credential currently encoded on this card. */
28080
28225
  acs_credential_on_seam:
28081
28226
  | (
@@ -28294,7 +28439,9 @@ export interface Routes {
28294
28439
  )
28295
28440
  | null
28296
28441
  warnings: Array<{
28297
- warning_code: 'acs_credential_on_encoder_out_of_sync'
28442
+ warning_code:
28443
+ | 'acs_credential_on_encoder_out_of_sync'
28444
+ | 'acs_credential_on_seam_not_found'
28298
28445
  warning_message: string
28299
28446
  }>
28300
28447
  }
@@ -29107,7 +29254,7 @@ export interface Routes {
29107
29254
  common_acs_entrance_ids?: string[] | undefined
29108
29255
  }
29109
29256
  | undefined
29110
- }
29257
+ } | null
29111
29258
  /** Matching acs_credential currently encoded on this card. */
29112
29259
  acs_credential_on_seam:
29113
29260
  | (
@@ -29326,7 +29473,9 @@ export interface Routes {
29326
29473
  )
29327
29474
  | null
29328
29475
  warnings: Array<{
29329
- warning_code: 'acs_credential_on_encoder_out_of_sync'
29476
+ warning_code:
29477
+ | 'acs_credential_on_encoder_out_of_sync'
29478
+ | 'acs_credential_on_seam_not_found'
29330
29479
  warning_message: string
29331
29480
  }>
29332
29481
  }
@@ -30069,6 +30218,7 @@ export interface Routes {
30069
30218
  | 'ecobee_thermostat'
30070
30219
  | 'nest_thermostat'
30071
30220
  | 'honeywell_resideo_thermostat'
30221
+ | 'tado_thermostat'
30072
30222
  )
30073
30223
  | ('ios_phone' | 'android_phone')
30074
30224
  )
@@ -30110,6 +30260,7 @@ export interface Routes {
30110
30260
  | 'ecobee_thermostat'
30111
30261
  | 'nest_thermostat'
30112
30262
  | 'honeywell_resideo_thermostat'
30263
+ | 'tado_thermostat'
30113
30264
  )
30114
30265
  | ('ios_phone' | 'android_phone')
30115
30266
  >
@@ -30152,6 +30303,7 @@ export interface Routes {
30152
30303
  | 'tedee'
30153
30304
  | 'honeywell_resideo'
30154
30305
  | 'akiles'
30306
+ | 'tado'
30155
30307
  )
30156
30308
  | undefined
30157
30309
  /** Array of device IDs by which to filter devices. */
@@ -30238,6 +30390,7 @@ export interface Routes {
30238
30390
  | 'ecobee_thermostat'
30239
30391
  | 'nest_thermostat'
30240
30392
  | 'honeywell_resideo_thermostat'
30393
+ | 'tado_thermostat'
30241
30394
  )
30242
30395
  | ('ios_phone' | 'android_phone')
30243
30396
  /** Optional nickname to describe the device, settable through Seam */
@@ -30632,6 +30785,12 @@ export interface Routes {
30632
30785
  encoder_name: string
30633
30786
  }
30634
30787
  | undefined
30788
+ tado_metadata?:
30789
+ | {
30790
+ serial_no: string
30791
+ device_type: string
30792
+ }
30793
+ | undefined
30635
30794
  }) &
30636
30795
  ({
30637
30796
  _experimental_supported_code_from_access_codes_lengths?:
@@ -30933,6 +31092,7 @@ export interface Routes {
30933
31092
  | 'ecobee_thermostat'
30934
31093
  | 'nest_thermostat'
30935
31094
  | 'honeywell_resideo_thermostat'
31095
+ | 'tado_thermostat'
30936
31096
  )
30937
31097
  | ('ios_phone' | 'android_phone')
30938
31098
  /** Optional nickname to describe the device, settable through Seam */
@@ -31327,6 +31487,12 @@ export interface Routes {
31327
31487
  encoder_name: string
31328
31488
  }
31329
31489
  | undefined
31490
+ tado_metadata?:
31491
+ | {
31492
+ serial_no: string
31493
+ device_type: string
31494
+ }
31495
+ | undefined
31330
31496
  }) &
31331
31497
  ({
31332
31498
  _experimental_supported_code_from_access_codes_lengths?:
@@ -31702,7 +31868,7 @@ export interface Routes {
31702
31868
  common_acs_entrance_ids?: string[] | undefined
31703
31869
  }
31704
31870
  | undefined
31705
- }
31871
+ } | null
31706
31872
  /** Matching acs_credential currently encoded on this card. */
31707
31873
  acs_credential_on_seam:
31708
31874
  | (
@@ -31921,7 +32087,9 @@ export interface Routes {
31921
32087
  )
31922
32088
  | null
31923
32089
  warnings: Array<{
31924
- warning_code: 'acs_credential_on_encoder_out_of_sync'
32090
+ warning_code:
32091
+ | 'acs_credential_on_encoder_out_of_sync'
32092
+ | 'acs_credential_on_seam_not_found'
31925
32093
  warning_message: string
31926
32094
  }>
31927
32095
  }
@@ -32899,7 +33067,7 @@ export interface Routes {
32899
33067
  common_acs_entrance_ids?: string[] | undefined
32900
33068
  }
32901
33069
  | undefined
32902
- }
33070
+ } | null
32903
33071
  /** Matching acs_credential currently encoded on this card. */
32904
33072
  acs_credential_on_seam:
32905
33073
  | (
@@ -33118,7 +33286,9 @@ export interface Routes {
33118
33286
  )
33119
33287
  | null
33120
33288
  warnings: Array<{
33121
- warning_code: 'acs_credential_on_encoder_out_of_sync'
33289
+ warning_code:
33290
+ | 'acs_credential_on_encoder_out_of_sync'
33291
+ | 'acs_credential_on_seam_not_found'
33122
33292
  warning_message: string
33123
33293
  }>
33124
33294
  }
@@ -33954,7 +34124,7 @@ export interface Routes {
33954
34124
  common_acs_entrance_ids?: string[] | undefined
33955
34125
  }
33956
34126
  | undefined
33957
- }
34127
+ } | null
33958
34128
  /** Matching acs_credential currently encoded on this card. */
33959
34129
  acs_credential_on_seam:
33960
34130
  | (
@@ -34173,7 +34343,9 @@ export interface Routes {
34173
34343
  )
34174
34344
  | null
34175
34345
  warnings: Array<{
34176
- warning_code: 'acs_credential_on_encoder_out_of_sync'
34346
+ warning_code:
34347
+ | 'acs_credential_on_encoder_out_of_sync'
34348
+ | 'acs_credential_on_seam_not_found'
34177
34349
  warning_message: string
34178
34350
  }>
34179
34351
  }
@@ -35198,6 +35370,7 @@ export interface Routes {
35198
35370
  | 'ecobee_thermostat'
35199
35371
  | 'nest_thermostat'
35200
35372
  | 'honeywell_resideo_thermostat'
35373
+ | 'tado_thermostat'
35201
35374
  )
35202
35375
  | ('ios_phone' | 'android_phone')
35203
35376
  /** Optional nickname to describe the device, settable through Seam */
@@ -35592,6 +35765,12 @@ export interface Routes {
35592
35765
  encoder_name: string
35593
35766
  }
35594
35767
  | undefined
35768
+ tado_metadata?:
35769
+ | {
35770
+ serial_no: string
35771
+ device_type: string
35772
+ }
35773
+ | undefined
35595
35774
  }) &
35596
35775
  ({
35597
35776
  _experimental_supported_code_from_access_codes_lengths?:
@@ -35895,6 +36074,7 @@ export interface Routes {
35895
36074
  | 'ecobee_thermostat'
35896
36075
  | 'nest_thermostat'
35897
36076
  | 'honeywell_resideo_thermostat'
36077
+ | 'tado_thermostat'
35898
36078
  )
35899
36079
  | ('ios_phone' | 'android_phone')
35900
36080
  /** Optional nickname to describe the device, settable through Seam */
@@ -36289,6 +36469,12 @@ export interface Routes {
36289
36469
  encoder_name: string
36290
36470
  }
36291
36471
  | undefined
36472
+ tado_metadata?:
36473
+ | {
36474
+ serial_no: string
36475
+ device_type: string
36476
+ }
36477
+ | undefined
36292
36478
  }) &
36293
36479
  ({
36294
36480
  _experimental_supported_code_from_access_codes_lengths?:
@@ -36575,6 +36761,7 @@ export interface Routes {
36575
36761
  | 'pti_site'
36576
36762
  | 'alta_org'
36577
36763
  | 'salto_ks_site'
36764
+ | 'salto_space_system'
36578
36765
  | 'brivo_account'
36579
36766
  | 'hid_credential_manager_organization'
36580
36767
  | 'visionline_system'
@@ -36607,6 +36794,7 @@ export interface Routes {
36607
36794
  | 'pti_site'
36608
36795
  | 'alta_org'
36609
36796
  | 'salto_ks_site'
36797
+ | 'salto_space_system'
36610
36798
  | 'brivo_account'
36611
36799
  | 'hid_credential_manager_organization'
36612
36800
  | 'visionline_system'
@@ -36689,14 +36877,24 @@ export interface Routes {
36689
36877
  }
36690
36878
  >
36691
36879
  /** Warnings associated with the `acs_system`. */
36692
- warnings: Array<{
36693
- /** Date and time at which Seam created the warning. */
36694
- created_at: string
36695
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36696
- message: string
36697
- /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
36698
- warning_code: 'salto_ks_subscription_limit_almost_reached'
36699
- }>
36880
+ warnings: Array<
36881
+ | {
36882
+ /** Date and time at which Seam created the warning. */
36883
+ created_at: string
36884
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36885
+ message: string
36886
+ /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
36887
+ warning_code: 'salto_ks_subscription_limit_almost_reached'
36888
+ }
36889
+ | {
36890
+ /** Date and time at which Seam created the warning. */
36891
+ created_at: string
36892
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36893
+ message: string
36894
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
36895
+ warning_code: 'time_zone_does_not_match_location'
36896
+ }
36897
+ >
36700
36898
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
36701
36899
  can_automate_enrollment?: boolean | undefined
36702
36900
  /** Indicates whether the `acs_system` supports creating [access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems). */
@@ -37127,7 +37325,7 @@ export interface Routes {
37127
37325
  common_acs_entrance_ids?: string[] | undefined
37128
37326
  }
37129
37327
  | undefined
37130
- }
37328
+ } | null
37131
37329
  /** Matching acs_credential currently encoded on this card. */
37132
37330
  acs_credential_on_seam:
37133
37331
  | (
@@ -37346,7 +37544,9 @@ export interface Routes {
37346
37544
  )
37347
37545
  | null
37348
37546
  warnings: Array<{
37349
- warning_code: 'acs_credential_on_encoder_out_of_sync'
37547
+ warning_code:
37548
+ | 'acs_credential_on_encoder_out_of_sync'
37549
+ | 'acs_credential_on_seam_not_found'
37350
37550
  warning_message: string
37351
37551
  }>
37352
37552
  }