@seamapi/types 1.317.0 → 1.318.1

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 +29 -34
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +75 -39
  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 +10 -5
  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 +39 -7
  18. package/lib/seam/connect/openapi.js +11 -15
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +20 -21
  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 +10 -7
  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 +11 -16
  27. package/src/lib/seam/connect/route-types.ts +20 -21
@@ -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';
@@ -7456,9 +7458,7 @@ export interface Routes {
7456
7458
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
7457
7459
  workspace_id: string;
7458
7460
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
7459
- ---
7460
- deprecated: Use `connected_account_id`.
7461
- --- */
7461
+ * @deprecated Use `connected_account_id`. */
7462
7462
  connected_account_ids: string[];
7463
7463
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
7464
7464
  connected_account_id: string;
@@ -7525,6 +7525,7 @@ export interface Routes {
7525
7525
  message: string;
7526
7526
  /** 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
7527
  warning_code: 'time_zone_does_not_match_location';
7528
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7528
7529
  }>;
7529
7530
  /** 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
7531
  can_automate_enrollment?: boolean | undefined;
@@ -7584,9 +7585,7 @@ export interface Routes {
7584
7585
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
7585
7586
  workspace_id: string;
7586
7587
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
7587
- ---
7588
- deprecated: Use `connected_account_id`.
7589
- --- */
7588
+ * @deprecated Use `connected_account_id`. */
7590
7589
  connected_account_ids: string[];
7591
7590
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
7592
7591
  connected_account_id: string;
@@ -7653,6 +7652,7 @@ export interface Routes {
7653
7652
  message: string;
7654
7653
  /** 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
7654
  warning_code: 'time_zone_does_not_match_location';
7655
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7656
7656
  }>;
7657
7657
  /** 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
7658
  can_automate_enrollment?: boolean | undefined;
@@ -7712,9 +7712,7 @@ export interface Routes {
7712
7712
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
7713
7713
  workspace_id: string;
7714
7714
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
7715
- ---
7716
- deprecated: Use `connected_account_id`.
7717
- --- */
7715
+ * @deprecated Use `connected_account_id`. */
7718
7716
  connected_account_ids: string[];
7719
7717
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
7720
7718
  connected_account_id: string;
@@ -7781,6 +7779,7 @@ export interface Routes {
7781
7779
  message: string;
7782
7780
  /** 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
7781
  warning_code: 'time_zone_does_not_match_location';
7782
+ misconfigured_acs_entrance_ids?: string[] | undefined;
7784
7783
  }>;
7785
7784
  /** 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
7785
  can_automate_enrollment?: boolean | undefined;
@@ -7854,7 +7853,7 @@ export interface Routes {
7854
7853
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7855
7854
  external_type_display_name?: string | undefined;
7856
7855
  /** 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;
7856
+ is_suspended?: boolean | undefined;
7858
7857
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7859
7858
  access_schedule?: {
7860
7859
  /** 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 +7969,7 @@ export interface Routes {
7970
7969
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
7971
7970
  external_type_display_name?: string | undefined;
7972
7971
  /** 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;
7972
+ is_suspended?: boolean | undefined;
7974
7973
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
7975
7974
  access_schedule?: {
7976
7975
  /** 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 +8080,7 @@ export interface Routes {
8081
8080
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8082
8081
  external_type_display_name?: string | undefined;
8083
8082
  /** 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;
8083
+ is_suspended?: boolean | undefined;
8085
8084
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8086
8085
  access_schedule?: {
8087
8086
  /** 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 +8207,7 @@ export interface Routes {
8208
8207
  access_point_name: string;
8209
8208
  common_area_number?: number | undefined;
8210
8209
  inner_access_points_names?: string[] | undefined;
8210
+ lease_ids?: string[] | undefined;
8211
8211
  } | undefined;
8212
8212
  assa_abloy_vostio_metadata?: {
8213
8213
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -8290,7 +8290,7 @@ export interface Routes {
8290
8290
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8291
8291
  external_type_display_name?: string | undefined;
8292
8292
  /** 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;
8293
+ is_suspended?: boolean | undefined;
8294
8294
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8295
8295
  access_schedule?: {
8296
8296
  /** 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 +8396,7 @@ export interface Routes {
8396
8396
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
8397
8397
  external_type_display_name?: string | undefined;
8398
8398
  /** 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;
8399
+ is_suspended?: boolean | undefined;
8400
8400
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
8401
8401
  access_schedule?: {
8402
8402
  /** 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. */
@@ -30639,9 +30639,7 @@ export interface Routes {
30639
30639
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
30640
30640
  workspace_id: string;
30641
30641
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
30642
- ---
30643
- deprecated: Use `connected_account_id`.
30644
- --- */
30642
+ * @deprecated Use `connected_account_id`. */
30645
30643
  connected_account_ids: string[];
30646
30644
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
30647
30645
  connected_account_id: string;
@@ -30708,6 +30706,7 @@ export interface Routes {
30708
30706
  message: string;
30709
30707
  /** 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
30708
  warning_code: 'time_zone_does_not_match_location';
30709
+ misconfigured_acs_entrance_ids?: string[] | undefined;
30711
30710
  }>;
30712
30711
  /** 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
30712
  can_automate_enrollment?: boolean | undefined;
@@ -30748,7 +30747,7 @@ export interface Routes {
30748
30747
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
30749
30748
  external_type_display_name?: string | undefined;
30750
30749
  /** 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;
30750
+ is_suspended?: boolean | undefined;
30752
30751
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
30753
30752
  access_schedule?: {
30754
30753
  /** 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.1",
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>
@@ -267,13 +271,12 @@ export const acs_system = z
267
271
  .describe(
268
272
  'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`.',
269
273
  ),
270
- connected_account_ids: z.array(z.string().uuid()).describe(
271
- `IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the \`acs_system\`.
272
- ---
273
- deprecated: Use \`connected_account_id\`.
274
- ---
275
- `,
276
- ),
274
+ connected_account_ids: z.array(z.string().uuid()).describe(`
275
+ ---
276
+ deprecated: Use \`connected_account_id\`.
277
+ ---
278
+ IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the \`acs_system\`.
279
+ `),
277
280
  connected_account_id: z
278
281
  .string()
279
282
  .uuid()
@@ -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',
@@ -779,10 +780,12 @@ export default {
779
780
  type: 'string',
780
781
  },
781
782
  connected_account_ids: {
783
+ deprecated: true,
782
784
  description:
783
- 'IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.\n---\ndeprecated: Use `connected_account_id`.\n---',
785
+ 'IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.',
784
786
  items: { format: 'uuid', type: 'string' },
785
787
  type: 'array',
788
+ 'x-deprecated': 'Use `connected_account_id`.',
786
789
  },
787
790
  created_at: {
788
791
  description: 'Date and time at which the `acs_system` was created.',
@@ -1091,6 +1094,10 @@ export default {
1091
1094
  'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
1092
1095
  type: 'string',
1093
1096
  },
1097
+ misconfigured_acs_entrance_ids: {
1098
+ items: { format: 'uuid', type: 'string' },
1099
+ type: 'array',
1100
+ },
1094
1101
  warning_code: {
1095
1102
  description:
1096
1103
  '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 +1427,6 @@ export default {
1420
1427
  'workspace_id',
1421
1428
  'created_at',
1422
1429
  'display_name',
1423
- 'is_suspended',
1424
1430
  'warnings',
1425
1431
  'errors',
1426
1432
  'is_managed',
@@ -14611,12 +14617,6 @@ export default {
14611
14617
  description:
14612
14618
  'Error associated with the `acs_encoder`.',
14613
14619
  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
14620
  created_at: {
14621
14621
  description:
14622
14622
  'Date and time at which Seam created the error.',
@@ -14635,12 +14635,7 @@ export default {
14635
14635
  type: 'string',
14636
14636
  },
14637
14637
  },
14638
- required: [
14639
- 'created_at',
14640
- 'message',
14641
- 'error_code',
14642
- '_event_id',
14643
- ],
14638
+ required: ['created_at', 'message', 'error_code'],
14644
14639
  type: 'object',
14645
14640
  },
14646
14641
  type: 'array',
@@ -16377,7 +16372,6 @@ export default {
16377
16372
  'workspace_id',
16378
16373
  'created_at',
16379
16374
  'display_name',
16380
- 'is_suspended',
16381
16375
  'warnings',
16382
16376
  'errors',
16383
16377
  'is_managed',
@@ -16773,7 +16767,6 @@ export default {
16773
16767
  'workspace_id',
16774
16768
  'created_at',
16775
16769
  'display_name',
16776
- 'is_suspended',
16777
16770
  'warnings',
16778
16771
  'errors',
16779
16772
  'is_managed',
@@ -24101,6 +24094,7 @@ export default {
24101
24094
  tags: ['/user_identities'],
24102
24095
  'x-fern-ignore': true,
24103
24096
  'x-response-key': null,
24097
+ 'x-title': 'Update a User Identity',
24104
24098
  },
24105
24099
  post: {
24106
24100
  operationId: 'userIdentitiesUpdatePost',
@@ -24166,6 +24160,7 @@ export default {
24166
24160
  'x-fern-sdk-group-name': ['user_identities'],
24167
24161
  'x-fern-sdk-method-name': 'update',
24168
24162
  'x-response-key': null,
24163
+ 'x-title': 'Update a User Identity',
24169
24164
  },
24170
24165
  },
24171
24166
  '/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?:
@@ -8723,9 +8725,7 @@ export interface Routes {
8723
8725
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
8724
8726
  workspace_id: string
8725
8727
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
8726
- ---
8727
- deprecated: Use `connected_account_id`.
8728
- --- */
8728
+ * @deprecated Use `connected_account_id`. */
8729
8729
  connected_account_ids: string[]
8730
8730
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
8731
8731
  connected_account_id: string
@@ -8801,6 +8801,7 @@ export interface Routes {
8801
8801
  message: string
8802
8802
  /** 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
8803
  warning_code: 'time_zone_does_not_match_location'
8804
+ misconfigured_acs_entrance_ids?: string[] | undefined
8804
8805
  }
8805
8806
  >
8806
8807
  /** 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`. */
@@ -8895,9 +8896,7 @@ export interface Routes {
8895
8896
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
8896
8897
  workspace_id: string
8897
8898
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
8898
- ---
8899
- deprecated: Use `connected_account_id`.
8900
- --- */
8899
+ * @deprecated Use `connected_account_id`. */
8901
8900
  connected_account_ids: string[]
8902
8901
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
8903
8902
  connected_account_id: string
@@ -8973,6 +8972,7 @@ export interface Routes {
8973
8972
  message: string
8974
8973
  /** 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
8974
  warning_code: 'time_zone_does_not_match_location'
8975
+ misconfigured_acs_entrance_ids?: string[] | undefined
8976
8976
  }
8977
8977
  >
8978
8978
  /** 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`. */
@@ -9067,9 +9067,7 @@ export interface Routes {
9067
9067
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
9068
9068
  workspace_id: string
9069
9069
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
9070
- ---
9071
- deprecated: Use `connected_account_id`.
9072
- --- */
9070
+ * @deprecated Use `connected_account_id`. */
9073
9071
  connected_account_ids: string[]
9074
9072
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
9075
9073
  connected_account_id: string
@@ -9145,6 +9143,7 @@ export interface Routes {
9145
9143
  message: string
9146
9144
  /** 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
9145
  warning_code: 'time_zone_does_not_match_location'
9146
+ misconfigured_acs_entrance_ids?: string[] | undefined
9148
9147
  }
9149
9148
  >
9150
9149
  /** 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 +9229,7 @@ export interface Routes {
9230
9229
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9231
9230
  external_type_display_name?: string | undefined
9232
9231
  /** 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
9232
+ is_suspended?: boolean | undefined
9234
9233
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9235
9234
  access_schedule?:
9236
9235
  | {
@@ -9366,7 +9365,7 @@ export interface Routes {
9366
9365
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9367
9366
  external_type_display_name?: string | undefined
9368
9367
  /** 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
9368
+ is_suspended?: boolean | undefined
9370
9369
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9371
9370
  access_schedule?:
9372
9371
  | {
@@ -9497,7 +9496,7 @@ export interface Routes {
9497
9496
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9498
9497
  external_type_display_name?: string | undefined
9499
9498
  /** 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
9499
+ is_suspended?: boolean | undefined
9501
9500
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9502
9501
  access_schedule?:
9503
9502
  | {
@@ -9649,6 +9648,7 @@ export interface Routes {
9649
9648
  access_point_name: string
9650
9649
  common_area_number?: number | undefined
9651
9650
  inner_access_points_names?: string[] | undefined
9651
+ lease_ids?: string[] | undefined
9652
9652
  }
9653
9653
  | undefined
9654
9654
  assa_abloy_vostio_metadata?:
@@ -9749,7 +9749,7 @@ export interface Routes {
9749
9749
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9750
9750
  external_type_display_name?: string | undefined
9751
9751
  /** 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
9752
+ is_suspended?: boolean | undefined
9753
9753
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9754
9754
  access_schedule?:
9755
9755
  | {
@@ -9875,7 +9875,7 @@ export interface Routes {
9875
9875
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
9876
9876
  external_type_display_name?: string | undefined
9877
9877
  /** 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
9878
+ is_suspended?: boolean | undefined
9879
9879
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
9880
9880
  access_schedule?:
9881
9881
  | {
@@ -37897,9 +37897,7 @@ export interface Routes {
37897
37897
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
37898
37898
  workspace_id: string
37899
37899
  /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.
37900
- ---
37901
- deprecated: Use `connected_account_id`.
37902
- --- */
37900
+ * @deprecated Use `connected_account_id`. */
37903
37901
  connected_account_ids: string[]
37904
37902
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */
37905
37903
  connected_account_id: string
@@ -37975,6 +37973,7 @@ export interface Routes {
37975
37973
  message: string
37976
37974
  /** 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
37975
  warning_code: 'time_zone_does_not_match_location'
37976
+ misconfigured_acs_entrance_ids?: string[] | undefined
37978
37977
  }
37979
37978
  >
37980
37979
  /** 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 +38024,7 @@ export interface Routes {
38025
38024
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
38026
38025
  external_type_display_name?: string | undefined
38027
38026
  /** 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
38027
+ is_suspended?: boolean | undefined
38029
38028
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
38030
38029
  access_schedule?:
38031
38030
  | {