@seamapi/types 1.317.0 → 1.318.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 (27) hide show
  1. package/dist/connect.cjs +19 -25
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +69 -27
  4. package/lib/seam/connect/models/acs/acs-encoder.d.ts +0 -10
  5. package/lib/seam/connect/models/acs/acs-encoder.js +0 -4
  6. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
  8. package/lib/seam/connect/models/acs/acs-system.d.ts +34 -0
  9. package/lib/seam/connect/models/acs/acs-system.js +4 -0
  10. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  11. package/lib/seam/connect/models/acs/acs-user.d.ts +6 -6
  12. package/lib/seam/connect/models/acs/acs-user.js +1 -0
  13. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  14. package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
  15. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +1 -0
  16. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
  17. package/lib/seam/connect/openapi.d.ts +37 -7
  18. package/lib/seam/connect/openapi.js +8 -14
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +16 -9
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/acs/acs-encoder.ts +0 -6
  23. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -0
  24. package/src/lib/seam/connect/models/acs/acs-user.ts +1 -0
  25. package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +1 -0
  26. package/src/lib/seam/connect/openapi.ts +8 -15
  27. package/src/lib/seam/connect/route-types.ts +16 -9
@@ -4047,6 +4047,7 @@ export interface Routes {
4047
4047
  access_point_name: string;
4048
4048
  common_area_number?: number | undefined;
4049
4049
  inner_access_points_names?: string[] | undefined;
4050
+ lease_ids?: string[] | undefined;
4050
4051
  } | undefined;
4051
4052
  assa_abloy_vostio_metadata?: {
4052
4053
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -4091,7 +4092,7 @@ export interface Routes {
4091
4092
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
4092
4093
  external_type_display_name?: string | undefined;
4093
4094
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
4094
- is_suspended: boolean;
4095
+ is_suspended?: boolean | undefined;
4095
4096
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
4096
4097
  access_schedule?: {
4097
4098
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -4969,6 +4970,7 @@ export interface Routes {
4969
4970
  access_point_name: string;
4970
4971
  common_area_number?: number | undefined;
4971
4972
  inner_access_points_names?: string[] | undefined;
4973
+ lease_ids?: string[] | undefined;
4972
4974
  } | undefined;
4973
4975
  assa_abloy_vostio_metadata?: {
4974
4976
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -6275,8 +6277,6 @@ export interface Routes {
6275
6277
  message: string;
6276
6278
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6277
6279
  error_code: 'acs_encoder_removed';
6278
- /** ID of the event that was created when the `acs_encoder` was removed. */
6279
- _event_id: string;
6280
6280
  }>;
6281
6281
  /** Date and time at which the `acs_encoder` was created. */
6282
6282
  created_at: string;
@@ -7205,6 +7205,7 @@ export interface Routes {
7205
7205
  access_point_name: string;
7206
7206
  common_area_number?: number | undefined;
7207
7207
  inner_access_points_names?: string[] | undefined;
7208
+ lease_ids?: string[] | undefined;
7208
7209
  } | undefined;
7209
7210
  assa_abloy_vostio_metadata?: {
7210
7211
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -7285,6 +7286,7 @@ export interface Routes {
7285
7286
  access_point_name: string;
7286
7287
  common_area_number?: number | undefined;
7287
7288
  inner_access_points_names?: string[] | undefined;
7289
+ lease_ids?: string[] | undefined;
7288
7290
  } | undefined;
7289
7291
  assa_abloy_vostio_metadata?: {
7290
7292
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -7525,6 +7527,7 @@ export interface Routes {
7525
7527
  message: string;
7526
7528
  /** 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. */
7527
7529
  warning_code: 'time_zone_does_not_match_location';
7530
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7528
7531
  }>;
7529
7532
  /** 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`. */
7530
7533
  can_automate_enrollment?: boolean | undefined;
@@ -7653,6 +7656,7 @@ export interface Routes {
7653
7656
  message: string;
7654
7657
  /** 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. */
7655
7658
  warning_code: 'time_zone_does_not_match_location';
7659
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7656
7660
  }>;
7657
7661
  /** 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`. */
7658
7662
  can_automate_enrollment?: boolean | undefined;
@@ -7781,6 +7785,7 @@ export interface Routes {
7781
7785
  message: string;
7782
7786
  /** 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. */
7783
7787
  warning_code: 'time_zone_does_not_match_location';
7788
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7784
7789
  }>;
7785
7790
  /** 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`. */
7786
7791
  can_automate_enrollment?: boolean | undefined;
@@ -7854,7 +7859,7 @@ export interface Routes {
7854
7859
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7855
7860
  external_type_display_name?: string | undefined;
7856
7861
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
7857
- is_suspended: boolean;
7862
+ is_suspended?: boolean | undefined;
7858
7863
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7859
7864
  access_schedule?: {
7860
7865
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -7970,7 +7975,7 @@ export interface Routes {
7970
7975
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7971
7976
  external_type_display_name?: string | undefined;
7972
7977
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
7973
- is_suspended: boolean;
7978
+ is_suspended?: boolean | undefined;
7974
7979
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7975
7980
  access_schedule?: {
7976
7981
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -8081,7 +8086,7 @@ export interface Routes {
8081
8086
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8082
8087
  external_type_display_name?: string | undefined;
8083
8088
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
8084
- is_suspended: boolean;
8089
+ is_suspended?: boolean | undefined;
8085
8090
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8086
8091
  access_schedule?: {
8087
8092
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -8208,6 +8213,7 @@ export interface Routes {
8208
8213
  access_point_name: string;
8209
8214
  common_area_number?: number | undefined;
8210
8215
  inner_access_points_names?: string[] | undefined;
8216
+ lease_ids?: string[] | undefined;
8211
8217
  } | undefined;
8212
8218
  assa_abloy_vostio_metadata?: {
8213
8219
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -8290,7 +8296,7 @@ export interface Routes {
8290
8296
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8291
8297
  external_type_display_name?: string | undefined;
8292
8298
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
8293
- is_suspended: boolean;
8299
+ is_suspended?: boolean | undefined;
8294
8300
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8295
8301
  access_schedule?: {
8296
8302
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -8396,7 +8402,7 @@ export interface Routes {
8396
8402
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8397
8403
  external_type_display_name?: string | undefined;
8398
8404
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
8399
- is_suspended: boolean;
8405
+ is_suspended?: boolean | undefined;
8400
8406
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8401
8407
  access_schedule?: {
8402
8408
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
@@ -30708,6 +30714,7 @@ export interface Routes {
30708
30714
  message: string;
30709
30715
  /** 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. */
30710
30716
  warning_code: 'time_zone_does_not_match_location';
30717
+ misconfigured_acs_entrance_ids?: string[] | undefined;
30711
30718
  }>;
30712
30719
  /** 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`. */
30713
30720
  can_automate_enrollment?: boolean | undefined;
@@ -30748,7 +30755,7 @@ export interface Routes {
30748
30755
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
30749
30756
  external_type_display_name?: string | undefined;
30750
30757
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
30751
- is_suspended: boolean;
30758
+ is_suspended?: boolean | undefined;
30752
30759
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
30753
30760
  access_schedule?: {
30754
30761
  /** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.317.0",
3
+ "version": "1.318.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -17,12 +17,6 @@ const error_code_description =
17
17
 
18
18
  const acs_encoder_removed = common_acs_encoder_error.extend({
19
19
  error_code: z.literal('acs_encoder_removed').describe(error_code_description),
20
- _event_id: z
21
- .string()
22
- .uuid()
23
- .describe(
24
- 'ID of the event that was created when the `acs_encoder` was removed.',
25
- ),
26
20
  })
27
21
 
28
22
  const acs_encoder_error =
@@ -178,6 +178,7 @@ const time_zone_does_not_match_location = common_acs_system_warning.extend({
178
178
  .describe(
179
179
  '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.',
180
180
  ),
181
+ misconfigured_acs_entrance_ids: z.array(z.string().uuid()).optional(),
181
182
  })
182
183
 
183
184
  const acs_system_warning = z
@@ -190,6 +191,9 @@ const acs_system_warning = z
190
191
  export const acs_system_warning_map = z.object({
191
192
  salto_ks_subscription_limit_almost_reached:
192
193
  salto_ks_subscription_limit_almost_reached.optional().nullable(),
194
+ time_zone_does_not_match_location: time_zone_does_not_match_location
195
+ .optional()
196
+ .nullable(),
193
197
  })
194
198
 
195
199
  export type AcsSystemWarningMap = z.infer<typeof acs_system_warning_map>
@@ -178,6 +178,7 @@ const common_acs_user = z
178
178
  ),
179
179
  is_suspended: z
180
180
  .boolean()
181
+ .optional()
181
182
  .describe(
182
183
  'Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users).',
183
184
  ),
@@ -4,6 +4,7 @@ export const acs_entrance_dormakaba_community_metadata = z.object({
4
4
  access_point_name: z.string(),
5
5
  common_area_number: z.number().optional(),
6
6
  inner_access_points_names: z.array(z.string()).optional(),
7
+ lease_ids: z.array(z.string()).optional(),
7
8
  })
8
9
 
9
10
  export type AcsEntranceDormakabaCommunityMetadata = z.infer<
@@ -641,6 +641,7 @@ export default {
641
641
  items: { type: 'string' },
642
642
  type: 'array',
643
643
  },
644
+ lease_ids: { items: { type: 'string' }, type: 'array' },
644
645
  },
645
646
  required: ['access_point_name'],
646
647
  type: 'object',
@@ -1091,6 +1092,10 @@ export default {
1091
1092
  'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1092
1093
  type: 'string',
1093
1094
  },
1095
+ misconfigured_acs_entrance_ids: {
1096
+ items: { format: 'uuid', type: 'string' },
1097
+ type: 'array',
1098
+ },
1094
1099
  warning_code: {
1095
1100
  description:
1096
1101
  '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.',
@@ -1420,7 +1425,6 @@ export default {
1420
1425
  'workspace_id',
1421
1426
  'created_at',
1422
1427
  'display_name',
1423
- 'is_suspended',
1424
1428
  'warnings',
1425
1429
  'errors',
1426
1430
  'is_managed',
@@ -14611,12 +14615,6 @@ export default {
14611
14615
  description:
14612
14616
  'Error associated with the `acs_encoder`.',
14613
14617
  properties: {
14614
- _event_id: {
14615
- description:
14616
- 'ID of the event that was created when the `acs_encoder` was removed.',
14617
- format: 'uuid',
14618
- type: 'string',
14619
- },
14620
14618
  created_at: {
14621
14619
  description:
14622
14620
  'Date and time at which Seam created the error.',
@@ -14635,12 +14633,7 @@ export default {
14635
14633
  type: 'string',
14636
14634
  },
14637
14635
  },
14638
- required: [
14639
- 'created_at',
14640
- 'message',
14641
- 'error_code',
14642
- '_event_id',
14643
- ],
14636
+ required: ['created_at', 'message', 'error_code'],
14644
14637
  type: 'object',
14645
14638
  },
14646
14639
  type: 'array',
@@ -16377,7 +16370,6 @@ export default {
16377
16370
  'workspace_id',
16378
16371
  'created_at',
16379
16372
  'display_name',
16380
- 'is_suspended',
16381
16373
  'warnings',
16382
16374
  'errors',
16383
16375
  'is_managed',
@@ -16773,7 +16765,6 @@ export default {
16773
16765
  'workspace_id',
16774
16766
  'created_at',
16775
16767
  'display_name',
16776
- 'is_suspended',
16777
16768
  'warnings',
16778
16769
  'errors',
16779
16770
  'is_managed',
@@ -24101,6 +24092,7 @@ export default {
24101
24092
  tags: ['/user_identities'],
24102
24093
  'x-fern-ignore': true,
24103
24094
  'x-response-key': null,
24095
+ 'x-title': 'Update a User Identity',
24104
24096
  },
24105
24097
  post: {
24106
24098
  operationId: 'userIdentitiesUpdatePost',
@@ -24166,6 +24158,7 @@ export default {
24166
24158
  'x-fern-sdk-group-name': ['user_identities'],
24167
24159
  'x-fern-sdk-method-name': 'update',
24168
24160
  'x-response-key': null,
24161
+ 'x-title': 'Update a User Identity',
24169
24162
  },
24170
24163
  },
24171
24164
  '/webhooks/create': {
@@ -4689,6 +4689,7 @@ export interface Routes {
4689
4689
  access_point_name: string
4690
4690
  common_area_number?: number | undefined
4691
4691
  inner_access_points_names?: string[] | undefined
4692
+ lease_ids?: string[] | undefined
4692
4693
  }
4693
4694
  | undefined
4694
4695
  assa_abloy_vostio_metadata?:
@@ -4751,7 +4752,7 @@ export interface Routes {
4751
4752
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
4752
4753
  external_type_display_name?: string | undefined
4753
4754
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
4754
- is_suspended: boolean
4755
+ is_suspended?: boolean | undefined
4755
4756
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
4756
4757
  access_schedule?:
4757
4758
  | {
@@ -5765,6 +5766,7 @@ export interface Routes {
5765
5766
  access_point_name: string
5766
5767
  common_area_number?: number | undefined
5767
5768
  inner_access_points_names?: string[] | undefined
5769
+ lease_ids?: string[] | undefined
5768
5770
  }
5769
5771
  | undefined
5770
5772
  assa_abloy_vostio_metadata?:
@@ -7294,8 +7296,6 @@ export interface Routes {
7294
7296
  message: string
7295
7297
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7296
7298
  error_code: 'acs_encoder_removed'
7297
- /** ID of the event that was created when the `acs_encoder` was removed. */
7298
- _event_id: string
7299
7299
  }>
7300
7300
  /** Date and time at which the `acs_encoder` was created. */
7301
7301
  created_at: string
@@ -8390,6 +8390,7 @@ export interface Routes {
8390
8390
  access_point_name: string
8391
8391
  common_area_number?: number | undefined
8392
8392
  inner_access_points_names?: string[] | undefined
8393
+ lease_ids?: string[] | undefined
8393
8394
  }
8394
8395
  | undefined
8395
8396
  assa_abloy_vostio_metadata?:
@@ -8493,6 +8494,7 @@ export interface Routes {
8493
8494
  access_point_name: string
8494
8495
  common_area_number?: number | undefined
8495
8496
  inner_access_points_names?: string[] | undefined
8497
+ lease_ids?: string[] | undefined
8496
8498
  }
8497
8499
  | undefined
8498
8500
  assa_abloy_vostio_metadata?:
@@ -8801,6 +8803,7 @@ export interface Routes {
8801
8803
  message: string
8802
8804
  /** 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. */
8803
8805
  warning_code: 'time_zone_does_not_match_location'
8806
+ misconfigured_acs_entrance_ids?: string[] | undefined
8804
8807
  }
8805
8808
  >
8806
8809
  /** 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`. */
@@ -8973,6 +8976,7 @@ export interface Routes {
8973
8976
  message: string
8974
8977
  /** 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. */
8975
8978
  warning_code: 'time_zone_does_not_match_location'
8979
+ misconfigured_acs_entrance_ids?: string[] | undefined
8976
8980
  }
8977
8981
  >
8978
8982
  /** 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`. */
@@ -9145,6 +9149,7 @@ export interface Routes {
9145
9149
  message: string
9146
9150
  /** 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. */
9147
9151
  warning_code: 'time_zone_does_not_match_location'
9152
+ misconfigured_acs_entrance_ids?: string[] | undefined
9148
9153
  }
9149
9154
  >
9150
9155
  /** 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`. */
@@ -9230,7 +9235,7 @@ export interface Routes {
9230
9235
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9231
9236
  external_type_display_name?: string | undefined
9232
9237
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9233
- is_suspended: boolean
9238
+ is_suspended?: boolean | undefined
9234
9239
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9235
9240
  access_schedule?:
9236
9241
  | {
@@ -9366,7 +9371,7 @@ export interface Routes {
9366
9371
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9367
9372
  external_type_display_name?: string | undefined
9368
9373
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9369
- is_suspended: boolean
9374
+ is_suspended?: boolean | undefined
9370
9375
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9371
9376
  access_schedule?:
9372
9377
  | {
@@ -9497,7 +9502,7 @@ export interface Routes {
9497
9502
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9498
9503
  external_type_display_name?: string | undefined
9499
9504
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9500
- is_suspended: boolean
9505
+ is_suspended?: boolean | undefined
9501
9506
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9502
9507
  access_schedule?:
9503
9508
  | {
@@ -9649,6 +9654,7 @@ export interface Routes {
9649
9654
  access_point_name: string
9650
9655
  common_area_number?: number | undefined
9651
9656
  inner_access_points_names?: string[] | undefined
9657
+ lease_ids?: string[] | undefined
9652
9658
  }
9653
9659
  | undefined
9654
9660
  assa_abloy_vostio_metadata?:
@@ -9749,7 +9755,7 @@ export interface Routes {
9749
9755
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9750
9756
  external_type_display_name?: string | undefined
9751
9757
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9752
- is_suspended: boolean
9758
+ is_suspended?: boolean | undefined
9753
9759
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9754
9760
  access_schedule?:
9755
9761
  | {
@@ -9875,7 +9881,7 @@ export interface Routes {
9875
9881
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9876
9882
  external_type_display_name?: string | undefined
9877
9883
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
9878
- is_suspended: boolean
9884
+ is_suspended?: boolean | undefined
9879
9885
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9880
9886
  access_schedule?:
9881
9887
  | {
@@ -37975,6 +37981,7 @@ export interface Routes {
37975
37981
  message: string
37976
37982
  /** 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. */
37977
37983
  warning_code: 'time_zone_does_not_match_location'
37984
+ misconfigured_acs_entrance_ids?: string[] | undefined
37978
37985
  }
37979
37986
  >
37980
37987
  /** 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`. */
@@ -38025,7 +38032,7 @@ export interface Routes {
38025
38032
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
38026
38033
  external_type_display_name?: string | undefined
38027
38034
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
38028
- is_suspended: boolean
38035
+ is_suspended?: boolean | undefined
38029
38036
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
38030
38037
  access_schedule?:
38031
38038
  | {