@seamapi/types 1.307.0 → 1.309.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 (33) hide show
  1. package/dist/connect.cjs +72 -39
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +149 -113
  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/client-sessions/client-session.d.ts +3 -0
  11. package/lib/seam/connect/models/client-sessions/client-session.js +1 -0
  12. package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
  13. package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -10
  14. package/lib/seam/connect/models/devices/device-metadata.js +1 -2
  15. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  16. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  17. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  18. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  19. package/lib/seam/connect/models/devices/device.d.ts +7 -14
  20. package/lib/seam/connect/models/devices/phone.d.ts +5 -10
  21. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -10
  22. package/lib/seam/connect/openapi.d.ts +24 -21
  23. package/lib/seam/connect/openapi.js +54 -29
  24. package/lib/seam/connect/openapi.js.map +1 -1
  25. package/lib/seam/connect/route-types.d.ts +64 -44
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -1
  28. package/src/lib/seam/connect/models/acs/acs-system.ts +15 -5
  29. package/src/lib/seam/connect/models/client-sessions/client-session.ts +1 -0
  30. package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -2
  31. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  32. package/src/lib/seam/connect/openapi.ts +60 -32
  33. package/src/lib/seam/connect/route-types.ts +108 -66
@@ -194,7 +194,7 @@ export default {
194
194
  enum: [
195
195
  'pti_unit',
196
196
  'pti_access_level',
197
- 'salto_access_group',
197
+ 'salto_ks_access_group',
198
198
  'brivo_group',
199
199
  ],
200
200
  type: 'string',
@@ -228,7 +228,7 @@ export default {
228
228
  enum: [
229
229
  'pti_unit',
230
230
  'pti_access_level',
231
- 'salto_access_group',
231
+ 'salto_ks_access_group',
232
232
  'brivo_group',
233
233
  ],
234
234
  type: 'string',
@@ -912,6 +912,7 @@ export default {
912
912
  'pti_site',
913
913
  'alta_org',
914
914
  'salto_ks_site',
915
+ 'salto_space_system',
915
916
  'brivo_account',
916
917
  'hid_credential_manager_organization',
917
918
  'visionline_system',
@@ -960,6 +961,7 @@ export default {
960
961
  'pti_site',
961
962
  'alta_org',
962
963
  'salto_ks_site',
964
+ 'salto_space_system',
963
965
  'brivo_account',
964
966
  'hid_credential_manager_organization',
965
967
  'visionline_system',
@@ -1003,27 +1005,54 @@ export default {
1003
1005
  description: 'Warnings associated with the `acs_system`.',
1004
1006
  items: {
1005
1007
  description: 'Warning associated with the `acs_system`.',
1006
- properties: {
1007
- created_at: {
1008
- description:
1009
- 'Date and time at which Seam created the warning.',
1010
- format: 'date-time',
1011
- type: 'string',
1012
- },
1013
- message: {
1014
- description:
1015
- 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1016
- type: 'string',
1008
+ oneOf: [
1009
+ {
1010
+ properties: {
1011
+ created_at: {
1012
+ description:
1013
+ 'Date and time at which Seam created the warning.',
1014
+ format: 'date-time',
1015
+ type: 'string',
1016
+ },
1017
+ message: {
1018
+ description:
1019
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1020
+ type: 'string',
1021
+ },
1022
+ warning_code: {
1023
+ description:
1024
+ '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.',
1025
+ enum: ['salto_ks_subscription_limit_almost_reached'],
1026
+ type: 'string',
1027
+ },
1028
+ },
1029
+ required: ['created_at', 'message', 'warning_code'],
1030
+ type: 'object',
1017
1031
  },
1018
- warning_code: {
1019
- description:
1020
- '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.',
1021
- enum: ['salto_ks_subscription_limit_almost_reached'],
1022
- type: 'string',
1032
+ {
1033
+ properties: {
1034
+ created_at: {
1035
+ description:
1036
+ 'Date and time at which Seam created the warning.',
1037
+ format: 'date-time',
1038
+ type: 'string',
1039
+ },
1040
+ message: {
1041
+ description:
1042
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1043
+ type: 'string',
1044
+ },
1045
+ warning_code: {
1046
+ description:
1047
+ '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.',
1048
+ enum: ['time_zone_does_not_match_location'],
1049
+ type: 'string',
1050
+ },
1051
+ },
1052
+ required: ['created_at', 'message', 'warning_code'],
1053
+ type: 'object',
1023
1054
  },
1024
- },
1025
- required: ['created_at', 'message', 'warning_code'],
1026
- type: 'object',
1055
+ ],
1027
1056
  },
1028
1057
  type: 'array',
1029
1058
  },
@@ -4179,6 +4208,7 @@ export default {
4179
4208
  },
4180
4209
  created_at: { format: 'date-time', type: 'string' },
4181
4210
  device_count: { format: 'float', type: 'number' },
4211
+ expires_at: { format: 'date-time', type: 'string' },
4182
4212
  token: { type: 'string' },
4183
4213
  user_identifier_key: { nullable: true, type: 'string' },
4184
4214
  user_identity_ids: {
@@ -4191,6 +4221,7 @@ export default {
4191
4221
  'client_session_id',
4192
4222
  'workspace_id',
4193
4223
  'created_at',
4224
+ 'expires_at',
4194
4225
  'token',
4195
4226
  'user_identifier_key',
4196
4227
  'device_count',
@@ -5132,15 +5163,10 @@ export default {
5132
5163
  },
5133
5164
  tado_metadata: {
5134
5165
  properties: {
5135
- device_name: { type: 'string' },
5136
5166
  device_type: { type: 'string' },
5137
- serial_number: { type: 'string' },
5167
+ serial_no: { type: 'string' },
5138
5168
  },
5139
- required: [
5140
- 'serial_number',
5141
- 'device_name',
5142
- 'device_type',
5143
- ],
5169
+ required: ['serial_no', 'device_type'],
5144
5170
  type: 'object',
5145
5171
  },
5146
5172
  tedee_metadata: {
@@ -5854,6 +5880,7 @@ export default {
5854
5880
  'assa_abloy_vostio',
5855
5881
  'assa_abloy_vostio_credential_service',
5856
5882
  'tado',
5883
+ 'salto_space',
5857
5884
  ],
5858
5885
  type: 'string',
5859
5886
  },
@@ -8500,7 +8527,7 @@ export default {
8500
8527
  enum: [
8501
8528
  'pti_unit',
8502
8529
  'pti_access_level',
8503
- 'salto_access_group',
8530
+ 'salto_ks_access_group',
8504
8531
  'brivo_group',
8505
8532
  ],
8506
8533
  type: 'string',
@@ -8535,7 +8562,7 @@ export default {
8535
8562
  enum: [
8536
8563
  'pti_unit',
8537
8564
  'pti_access_level',
8538
- 'salto_access_group',
8565
+ 'salto_ks_access_group',
8539
8566
  'brivo_group',
8540
8567
  ],
8541
8568
  type: 'string',
@@ -8641,7 +8668,7 @@ export default {
8641
8668
  enum: [
8642
8669
  'pti_unit',
8643
8670
  'pti_access_level',
8644
- 'salto_access_group',
8671
+ 'salto_ks_access_group',
8645
8672
  'brivo_group',
8646
8673
  ],
8647
8674
  type: 'string',
@@ -8676,7 +8703,7 @@ export default {
8676
8703
  enum: [
8677
8704
  'pti_unit',
8678
8705
  'pti_access_level',
8679
- 'salto_access_group',
8706
+ 'salto_ks_access_group',
8680
8707
  'brivo_group',
8681
8708
  ],
8682
8709
  type: 'string',
@@ -13495,6 +13522,7 @@ export default {
13495
13522
  'assa_abloy_vostio',
13496
13523
  'assa_abloy_vostio_credential_service',
13497
13524
  'tado',
13525
+ 'salto_space',
13498
13526
  'yale_access',
13499
13527
  'hid_cm',
13500
13528
  'google_nest',
@@ -4856,7 +4856,7 @@ export interface Routes {
4856
4856
  access_group_type:
4857
4857
  | 'pti_unit'
4858
4858
  | 'pti_access_level'
4859
- | 'salto_access_group'
4859
+ | 'salto_ks_access_group'
4860
4860
  | 'brivo_group'
4861
4861
  /**
4862
4862
  * @deprecated Use `external_type_display_name`. */
@@ -4866,7 +4866,7 @@ export interface Routes {
4866
4866
  external_type:
4867
4867
  | 'pti_unit'
4868
4868
  | 'pti_access_level'
4869
- | 'salto_access_group'
4869
+ | 'salto_ks_access_group'
4870
4870
  | 'brivo_group'
4871
4871
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4872
4872
  external_type_display_name: string
@@ -4903,7 +4903,7 @@ export interface Routes {
4903
4903
  access_group_type:
4904
4904
  | 'pti_unit'
4905
4905
  | 'pti_access_level'
4906
- | 'salto_access_group'
4906
+ | 'salto_ks_access_group'
4907
4907
  | 'brivo_group'
4908
4908
  /**
4909
4909
  * @deprecated Use `external_type_display_name`. */
@@ -4913,7 +4913,7 @@ export interface Routes {
4913
4913
  external_type:
4914
4914
  | 'pti_unit'
4915
4915
  | 'pti_access_level'
4916
- | 'salto_access_group'
4916
+ | 'salto_ks_access_group'
4917
4917
  | 'brivo_group'
4918
4918
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4919
4919
  external_type_display_name: string
@@ -5167,7 +5167,7 @@ export interface Routes {
5167
5167
  access_group_type:
5168
5168
  | 'pti_unit'
5169
5169
  | 'pti_access_level'
5170
- | 'salto_access_group'
5170
+ | 'salto_ks_access_group'
5171
5171
  | 'brivo_group'
5172
5172
  /**
5173
5173
  * @deprecated Use `external_type_display_name`. */
@@ -5177,7 +5177,7 @@ export interface Routes {
5177
5177
  external_type:
5178
5178
  | 'pti_unit'
5179
5179
  | 'pti_access_level'
5180
- | 'salto_access_group'
5180
+ | 'salto_ks_access_group'
5181
5181
  | 'brivo_group'
5182
5182
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
5183
5183
  external_type_display_name: string
@@ -5214,7 +5214,7 @@ export interface Routes {
5214
5214
  access_group_type:
5215
5215
  | 'pti_unit'
5216
5216
  | 'pti_access_level'
5217
- | 'salto_access_group'
5217
+ | 'salto_ks_access_group'
5218
5218
  | 'brivo_group'
5219
5219
  /**
5220
5220
  * @deprecated Use `external_type_display_name`. */
@@ -5224,7 +5224,7 @@ export interface Routes {
5224
5224
  external_type:
5225
5225
  | 'pti_unit'
5226
5226
  | 'pti_access_level'
5227
- | 'salto_access_group'
5227
+ | 'salto_ks_access_group'
5228
5228
  | 'brivo_group'
5229
5229
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
5230
5230
  external_type_display_name: string
@@ -8926,6 +8926,7 @@ export interface Routes {
8926
8926
  | 'pti_site'
8927
8927
  | 'alta_org'
8928
8928
  | 'salto_ks_site'
8929
+ | 'salto_space_system'
8929
8930
  | 'brivo_account'
8930
8931
  | 'hid_credential_manager_organization'
8931
8932
  | 'visionline_system'
@@ -8958,6 +8959,7 @@ export interface Routes {
8958
8959
  | 'pti_site'
8959
8960
  | 'alta_org'
8960
8961
  | 'salto_ks_site'
8962
+ | 'salto_space_system'
8961
8963
  | 'brivo_account'
8962
8964
  | 'hid_credential_manager_organization'
8963
8965
  | 'visionline_system'
@@ -9040,14 +9042,24 @@ export interface Routes {
9040
9042
  }
9041
9043
  >
9042
9044
  /** Warnings associated with the `acs_system`. */
9043
- warnings: Array<{
9044
- /** Date and time at which Seam created the warning. */
9045
- created_at: string
9046
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9047
- message: string
9048
- /** 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. */
9049
- warning_code: 'salto_ks_subscription_limit_almost_reached'
9050
- }>
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
+ >
9051
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`. */
9052
9064
  can_automate_enrollment?: boolean | undefined
9053
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). */
@@ -9081,6 +9093,7 @@ export interface Routes {
9081
9093
  | 'pti_site'
9082
9094
  | 'alta_org'
9083
9095
  | 'salto_ks_site'
9096
+ | 'salto_space_system'
9084
9097
  | 'brivo_account'
9085
9098
  | 'hid_credential_manager_organization'
9086
9099
  | 'visionline_system'
@@ -9113,6 +9126,7 @@ export interface Routes {
9113
9126
  | 'pti_site'
9114
9127
  | 'alta_org'
9115
9128
  | 'salto_ks_site'
9129
+ | 'salto_space_system'
9116
9130
  | 'brivo_account'
9117
9131
  | 'hid_credential_manager_organization'
9118
9132
  | 'visionline_system'
@@ -9195,14 +9209,24 @@ export interface Routes {
9195
9209
  }
9196
9210
  >
9197
9211
  /** Warnings associated with the `acs_system`. */
9198
- warnings: Array<{
9199
- /** Date and time at which Seam created the warning. */
9200
- created_at: string
9201
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9202
- message: string
9203
- /** 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. */
9204
- warning_code: 'salto_ks_subscription_limit_almost_reached'
9205
- }>
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
+ >
9206
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`. */
9207
9231
  can_automate_enrollment?: boolean | undefined
9208
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). */
@@ -9236,6 +9260,7 @@ export interface Routes {
9236
9260
  | 'pti_site'
9237
9261
  | 'alta_org'
9238
9262
  | 'salto_ks_site'
9263
+ | 'salto_space_system'
9239
9264
  | 'brivo_account'
9240
9265
  | 'hid_credential_manager_organization'
9241
9266
  | 'visionline_system'
@@ -9268,6 +9293,7 @@ export interface Routes {
9268
9293
  | 'pti_site'
9269
9294
  | 'alta_org'
9270
9295
  | 'salto_ks_site'
9296
+ | 'salto_space_system'
9271
9297
  | 'brivo_account'
9272
9298
  | 'hid_credential_manager_organization'
9273
9299
  | 'visionline_system'
@@ -9350,14 +9376,24 @@ export interface Routes {
9350
9376
  }
9351
9377
  >
9352
9378
  /** Warnings associated with the `acs_system`. */
9353
- warnings: Array<{
9354
- /** Date and time at which Seam created the warning. */
9355
- created_at: string
9356
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
9357
- message: string
9358
- /** 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. */
9359
- warning_code: 'salto_ks_subscription_limit_almost_reached'
9360
- }>
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
+ >
9361
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`. */
9362
9398
  can_automate_enrollment?: boolean | undefined
9363
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). */
@@ -12269,6 +12305,7 @@ export interface Routes {
12269
12305
  client_session_id: string
12270
12306
  workspace_id: string
12271
12307
  created_at: string
12308
+ expires_at: string
12272
12309
  token: string
12273
12310
  user_identifier_key: string | null
12274
12311
  device_count: number
@@ -12304,6 +12341,7 @@ export interface Routes {
12304
12341
  client_session_id: string
12305
12342
  workspace_id: string
12306
12343
  created_at: string
12344
+ expires_at: string
12307
12345
  token: string
12308
12346
  user_identifier_key: string | null
12309
12347
  device_count: number
@@ -12331,6 +12369,7 @@ export interface Routes {
12331
12369
  client_session_id: string
12332
12370
  workspace_id: string
12333
12371
  created_at: string
12372
+ expires_at: string
12334
12373
  token: string
12335
12374
  user_identifier_key: string | null
12336
12375
  device_count: number
@@ -12358,6 +12397,7 @@ export interface Routes {
12358
12397
  client_session_id: string
12359
12398
  workspace_id: string
12360
12399
  created_at: string
12400
+ expires_at: string
12361
12401
  token: string
12362
12402
  user_identifier_key: string | null
12363
12403
  device_count: number
@@ -12385,6 +12425,7 @@ export interface Routes {
12385
12425
  client_session_id: string
12386
12426
  workspace_id: string
12387
12427
  created_at: string
12428
+ expires_at: string
12388
12429
  token: string
12389
12430
  user_identifier_key: string | null
12390
12431
  device_count: number
@@ -12459,6 +12500,7 @@ export interface Routes {
12459
12500
  | 'assa_abloy_vostio'
12460
12501
  | 'assa_abloy_vostio_credential_service'
12461
12502
  | 'tado'
12503
+ | 'salto_space'
12462
12504
  | 'yale_access'
12463
12505
  | 'hid_cm'
12464
12506
  | 'google_nest'
@@ -13190,8 +13232,7 @@ export interface Routes {
13190
13232
  | undefined
13191
13233
  tado_metadata?:
13192
13234
  | {
13193
- serial_number: string
13194
- device_name: string
13235
+ serial_no: string
13195
13236
  device_type: string
13196
13237
  }
13197
13238
  | undefined
@@ -14077,8 +14118,7 @@ export interface Routes {
14077
14118
  | undefined
14078
14119
  tado_metadata?:
14079
14120
  | {
14080
- serial_number: string
14081
- device_name: string
14121
+ serial_no: string
14082
14122
  device_type: string
14083
14123
  }
14084
14124
  | undefined
@@ -14410,6 +14450,7 @@ export interface Routes {
14410
14450
  | 'assa_abloy_vostio'
14411
14451
  | 'assa_abloy_vostio_credential_service'
14412
14452
  | 'tado'
14453
+ | 'salto_space'
14413
14454
  display_name: string
14414
14455
  image_url: string
14415
14456
  provider_categories: Array<
@@ -15683,8 +15724,7 @@ export interface Routes {
15683
15724
  | undefined
15684
15725
  tado_metadata?:
15685
15726
  | {
15686
- serial_number: string
15687
- device_name: string
15727
+ serial_no: string
15688
15728
  device_type: string
15689
15729
  }
15690
15730
  | undefined
@@ -16386,8 +16426,7 @@ export interface Routes {
16386
16426
  | undefined
16387
16427
  tado_metadata?:
16388
16428
  | {
16389
- serial_number: string
16390
- device_name: string
16429
+ serial_no: string
16391
16430
  device_type: string
16392
16431
  }
16393
16432
  | undefined
@@ -17273,8 +17312,7 @@ export interface Routes {
17273
17312
  | undefined
17274
17313
  tado_metadata?:
17275
17314
  | {
17276
- serial_number: string
17277
- device_name: string
17315
+ serial_no: string
17278
17316
  device_type: string
17279
17317
  }
17280
17318
  | undefined
@@ -17976,8 +18014,7 @@ export interface Routes {
17976
18014
  | undefined
17977
18015
  tado_metadata?:
17978
18016
  | {
17979
- serial_number: string
17980
- device_name: string
18017
+ serial_no: string
17981
18018
  device_type: string
17982
18019
  }
17983
18020
  | undefined
@@ -20945,8 +20982,7 @@ export interface Routes {
20945
20982
  | undefined
20946
20983
  tado_metadata?:
20947
20984
  | {
20948
- serial_number: string
20949
- device_name: string
20985
+ serial_no: string
20950
20986
  device_type: string
20951
20987
  }
20952
20988
  | undefined
@@ -21648,8 +21684,7 @@ export interface Routes {
21648
21684
  | undefined
21649
21685
  tado_metadata?:
21650
21686
  | {
21651
- serial_number: string
21652
- device_name: string
21687
+ serial_no: string
21653
21688
  device_type: string
21654
21689
  }
21655
21690
  | undefined
@@ -27807,8 +27842,7 @@ export interface Routes {
27807
27842
  | undefined
27808
27843
  tado_metadata?:
27809
27844
  | {
27810
- serial_number: string
27811
- device_name: string
27845
+ serial_no: string
27812
27846
  device_type: string
27813
27847
  }
27814
27848
  | undefined
@@ -30758,8 +30792,7 @@ export interface Routes {
30758
30792
  | undefined
30759
30793
  tado_metadata?:
30760
30794
  | {
30761
- serial_number: string
30762
- device_name: string
30795
+ serial_no: string
30763
30796
  device_type: string
30764
30797
  }
30765
30798
  | undefined
@@ -31461,8 +31494,7 @@ export interface Routes {
31461
31494
  | undefined
31462
31495
  tado_metadata?:
31463
31496
  | {
31464
- serial_number: string
31465
- device_name: string
31497
+ serial_no: string
31466
31498
  device_type: string
31467
31499
  }
31468
31500
  | undefined
@@ -35740,8 +35772,7 @@ export interface Routes {
35740
35772
  | undefined
35741
35773
  tado_metadata?:
35742
35774
  | {
35743
- serial_number: string
35744
- device_name: string
35775
+ serial_no: string
35745
35776
  device_type: string
35746
35777
  }
35747
35778
  | undefined
@@ -36445,8 +36476,7 @@ export interface Routes {
36445
36476
  | undefined
36446
36477
  tado_metadata?:
36447
36478
  | {
36448
- serial_number: string
36449
- device_name: string
36479
+ serial_no: string
36450
36480
  device_type: string
36451
36481
  }
36452
36482
  | undefined
@@ -36736,6 +36766,7 @@ export interface Routes {
36736
36766
  | 'pti_site'
36737
36767
  | 'alta_org'
36738
36768
  | 'salto_ks_site'
36769
+ | 'salto_space_system'
36739
36770
  | 'brivo_account'
36740
36771
  | 'hid_credential_manager_organization'
36741
36772
  | 'visionline_system'
@@ -36768,6 +36799,7 @@ export interface Routes {
36768
36799
  | 'pti_site'
36769
36800
  | 'alta_org'
36770
36801
  | 'salto_ks_site'
36802
+ | 'salto_space_system'
36771
36803
  | 'brivo_account'
36772
36804
  | 'hid_credential_manager_organization'
36773
36805
  | 'visionline_system'
@@ -36850,14 +36882,24 @@ export interface Routes {
36850
36882
  }
36851
36883
  >
36852
36884
  /** Warnings associated with the `acs_system`. */
36853
- warnings: Array<{
36854
- /** Date and time at which Seam created the warning. */
36855
- created_at: string
36856
- /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36857
- message: string
36858
- /** 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. */
36859
- warning_code: 'salto_ks_subscription_limit_almost_reached'
36860
- }>
36885
+ warnings: Array<
36886
+ | {
36887
+ /** Date and time at which Seam created the warning. */
36888
+ created_at: string
36889
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36890
+ message: string
36891
+ /** 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. */
36892
+ warning_code: 'salto_ks_subscription_limit_almost_reached'
36893
+ }
36894
+ | {
36895
+ /** Date and time at which Seam created the warning. */
36896
+ created_at: string
36897
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
36898
+ message: string
36899
+ /** 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. */
36900
+ warning_code: 'time_zone_does_not_match_location'
36901
+ }
36902
+ >
36861
36903
  /** 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`. */
36862
36904
  can_automate_enrollment?: boolean | undefined
36863
36905
  /** 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). */