@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
@@ -887,17 +887,14 @@ declare const acs_encoder: z.ZodObject<{
887
887
  message: z.ZodString;
888
888
  }, {
889
889
  error_code: z.ZodLiteral<"acs_encoder_removed">;
890
- _event_id: z.ZodString;
891
890
  }>, "strip", z.ZodTypeAny, {
892
891
  message: string;
893
892
  error_code: "acs_encoder_removed";
894
893
  created_at: string;
895
- _event_id: string;
896
894
  }, {
897
895
  message: string;
898
896
  error_code: "acs_encoder_removed";
899
897
  created_at: string;
900
- _event_id: string;
901
898
  }>, "many">;
902
899
  created_at: z.ZodString;
903
900
  display_name: z.ZodString;
@@ -907,7 +904,6 @@ declare const acs_encoder: z.ZodObject<{
907
904
  message: string;
908
905
  error_code: "acs_encoder_removed";
909
906
  created_at: string;
910
- _event_id: string;
911
907
  }[];
912
908
  display_name: string;
913
909
  workspace_id: string;
@@ -919,7 +915,6 @@ declare const acs_encoder: z.ZodObject<{
919
915
  message: string;
920
916
  error_code: "acs_encoder_removed";
921
917
  created_at: string;
922
- _event_id: string;
923
918
  }[];
924
919
  display_name: string;
925
920
  workspace_id: string;
@@ -1019,14 +1014,17 @@ declare const acs_entrance: z.ZodObject<{
1019
1014
  access_point_name: z.ZodString;
1020
1015
  common_area_number: z.ZodOptional<z.ZodNumber>;
1021
1016
  inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1017
+ lease_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1022
1018
  }, "strip", z.ZodTypeAny, {
1023
1019
  access_point_name: string;
1024
1020
  common_area_number?: number | undefined;
1025
1021
  inner_access_points_names?: string[] | undefined;
1022
+ lease_ids?: string[] | undefined;
1026
1023
  }, {
1027
1024
  access_point_name: string;
1028
1025
  common_area_number?: number | undefined;
1029
1026
  inner_access_points_names?: string[] | undefined;
1027
+ lease_ids?: string[] | undefined;
1030
1028
  }>>;
1031
1029
  assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
1032
1030
  door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
@@ -1104,6 +1102,7 @@ declare const acs_entrance: z.ZodObject<{
1104
1102
  access_point_name: string;
1105
1103
  common_area_number?: number | undefined;
1106
1104
  inner_access_points_names?: string[] | undefined;
1105
+ lease_ids?: string[] | undefined;
1107
1106
  } | undefined;
1108
1107
  salto_space_metadata?: {
1109
1108
  door_name: string;
@@ -1154,6 +1153,7 @@ declare const acs_entrance: z.ZodObject<{
1154
1153
  access_point_name: string;
1155
1154
  common_area_number?: number | undefined;
1156
1155
  inner_access_points_names?: string[] | undefined;
1156
+ lease_ids?: string[] | undefined;
1157
1157
  } | undefined;
1158
1158
  salto_space_metadata?: {
1159
1159
  door_name: string;
@@ -1295,14 +1295,17 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1295
1295
  message: z.ZodString;
1296
1296
  }, {
1297
1297
  warning_code: z.ZodLiteral<"time_zone_does_not_match_location">;
1298
+ misconfigured_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1298
1299
  }>, "strip", z.ZodTypeAny, {
1299
1300
  message: string;
1300
1301
  warning_code: "time_zone_does_not_match_location";
1301
1302
  created_at: string;
1303
+ misconfigured_acs_entrance_ids?: string[] | undefined;
1302
1304
  }, {
1303
1305
  message: string;
1304
1306
  warning_code: "time_zone_does_not_match_location";
1305
1307
  created_at: string;
1308
+ misconfigured_acs_entrance_ids?: string[] | undefined;
1306
1309
  }>]>, "many">;
1307
1310
  }, {
1308
1311
  can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
@@ -1345,6 +1348,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1345
1348
  message: string;
1346
1349
  warning_code: "time_zone_does_not_match_location";
1347
1350
  created_at: string;
1351
+ misconfigured_acs_entrance_ids?: string[] | undefined;
1348
1352
  })[];
1349
1353
  name: string;
1350
1354
  image_url: string;
@@ -1406,6 +1410,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1406
1410
  message: string;
1407
1411
  warning_code: "time_zone_does_not_match_location";
1408
1412
  created_at: string;
1413
+ misconfigured_acs_entrance_ids?: string[] | undefined;
1409
1414
  })[];
1410
1415
  name: string;
1411
1416
  image_url: string;
@@ -1443,7 +1448,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
1443
1448
  display_name: z.ZodString;
1444
1449
  external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
1445
1450
  external_type_display_name: z.ZodOptional<z.ZodString>;
1446
- is_suspended: z.ZodBoolean;
1451
+ is_suspended: z.ZodOptional<z.ZodBoolean>;
1447
1452
  access_schedule: z.ZodOptional<z.ZodObject<{
1448
1453
  starts_at: z.ZodString;
1449
1454
  ends_at: z.ZodNullable<z.ZodString>;
@@ -1597,7 +1602,6 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
1597
1602
  is_managed: true;
1598
1603
  acs_system_id: string;
1599
1604
  acs_user_id: string;
1600
- is_suspended: boolean;
1601
1605
  email?: string | undefined;
1602
1606
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
1603
1607
  external_type_display_name?: string | undefined;
@@ -1608,6 +1612,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
1608
1612
  email_address?: string | undefined;
1609
1613
  phone_number?: string | undefined;
1610
1614
  hid_acs_system_id?: string | undefined;
1615
+ is_suspended?: boolean | undefined;
1611
1616
  access_schedule?: {
1612
1617
  starts_at: string;
1613
1618
  ends_at: string | null;
@@ -1652,7 +1657,6 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
1652
1657
  is_managed: true;
1653
1658
  acs_system_id: string;
1654
1659
  acs_user_id: string;
1655
- is_suspended: boolean;
1656
1660
  email?: string | undefined;
1657
1661
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
1658
1662
  external_type_display_name?: string | undefined;
@@ -1663,6 +1667,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
1663
1667
  email_address?: string | undefined;
1664
1668
  phone_number?: string | undefined;
1665
1669
  hid_acs_system_id?: string | undefined;
1670
+ is_suspended?: boolean | undefined;
1666
1671
  access_schedule?: {
1667
1672
  starts_at: string;
1668
1673
  ends_at: string | null;
@@ -1680,7 +1685,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
1680
1685
  display_name: z.ZodString;
1681
1686
  external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
1682
1687
  external_type_display_name: z.ZodOptional<z.ZodString>;
1683
- is_suspended: z.ZodBoolean;
1688
+ is_suspended: z.ZodOptional<z.ZodBoolean>;
1684
1689
  access_schedule: z.ZodOptional<z.ZodObject<{
1685
1690
  starts_at: z.ZodString;
1686
1691
  ends_at: z.ZodNullable<z.ZodString>;
@@ -1834,7 +1839,6 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
1834
1839
  is_managed: false;
1835
1840
  acs_system_id: string;
1836
1841
  acs_user_id: string;
1837
- is_suspended: boolean;
1838
1842
  email?: string | undefined;
1839
1843
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
1840
1844
  external_type_display_name?: string | undefined;
@@ -1845,6 +1849,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
1845
1849
  email_address?: string | undefined;
1846
1850
  phone_number?: string | undefined;
1847
1851
  hid_acs_system_id?: string | undefined;
1852
+ is_suspended?: boolean | undefined;
1848
1853
  access_schedule?: {
1849
1854
  starts_at: string;
1850
1855
  ends_at: string | null;
@@ -1889,7 +1894,6 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
1889
1894
  is_managed: false;
1890
1895
  acs_system_id: string;
1891
1896
  acs_user_id: string;
1892
- is_suspended: boolean;
1893
1897
  email?: string | undefined;
1894
1898
  external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
1895
1899
  external_type_display_name?: string | undefined;
@@ -1900,6 +1904,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
1900
1904
  email_address?: string | undefined;
1901
1905
  phone_number?: string | undefined;
1902
1906
  hid_acs_system_id?: string | undefined;
1907
+ is_suspended?: boolean | undefined;
1903
1908
  access_schedule?: {
1904
1909
  starts_at: string;
1905
1910
  ends_at: string | null;
@@ -13101,6 +13106,12 @@ declare const _default: {
13101
13106
  };
13102
13107
  type: string;
13103
13108
  };
13109
+ lease_ids: {
13110
+ items: {
13111
+ type: string;
13112
+ };
13113
+ type: string;
13114
+ };
13104
13115
  };
13105
13116
  required: string[];
13106
13117
  type: string;
@@ -13382,7 +13393,7 @@ declare const _default: {
13382
13393
  description: string;
13383
13394
  items: {
13384
13395
  description: string;
13385
- oneOf: {
13396
+ oneOf: ({
13386
13397
  properties: {
13387
13398
  created_at: {
13388
13399
  description: string;
@@ -13398,10 +13409,37 @@ declare const _default: {
13398
13409
  enum: string[];
13399
13410
  type: string;
13400
13411
  };
13412
+ misconfigured_acs_entrance_ids?: never;
13401
13413
  };
13402
13414
  required: string[];
13403
13415
  type: string;
13404
- }[];
13416
+ } | {
13417
+ properties: {
13418
+ created_at: {
13419
+ description: string;
13420
+ format: string;
13421
+ type: string;
13422
+ };
13423
+ message: {
13424
+ description: string;
13425
+ type: string;
13426
+ };
13427
+ misconfigured_acs_entrance_ids: {
13428
+ items: {
13429
+ format: string;
13430
+ type: string;
13431
+ };
13432
+ type: string;
13433
+ };
13434
+ warning_code: {
13435
+ description: string;
13436
+ enum: string[];
13437
+ type: string;
13438
+ };
13439
+ };
13440
+ required: string[];
13441
+ type: string;
13442
+ })[];
13405
13443
  };
13406
13444
  type: string;
13407
13445
  };
@@ -24364,11 +24402,6 @@ declare const _default: {
24364
24402
  items: {
24365
24403
  description: string;
24366
24404
  properties: {
24367
- _event_id: {
24368
- description: string;
24369
- format: string;
24370
- type: string;
24371
- };
24372
24405
  created_at: {
24373
24406
  description: string;
24374
24407
  format: string;
@@ -34995,6 +35028,7 @@ declare const _default: {
34995
35028
  tags: string[];
34996
35029
  'x-fern-ignore': boolean;
34997
35030
  'x-response-key': null;
35031
+ 'x-title': string;
34998
35032
  };
34999
35033
  post: {
35000
35034
  operationId: string;
@@ -35079,6 +35113,7 @@ declare const _default: {
35079
35113
  'x-fern-sdk-group-name': string[];
35080
35114
  'x-fern-sdk-method-name': string;
35081
35115
  'x-response-key': null;
35116
+ 'x-title': string;
35082
35117
  };
35083
35118
  };
35084
35119
  '/webhooks/create': {
@@ -39997,6 +40032,7 @@ interface Routes {
39997
40032
  access_point_name: string;
39998
40033
  common_area_number?: number | undefined;
39999
40034
  inner_access_points_names?: string[] | undefined;
40035
+ lease_ids?: string[] | undefined;
40000
40036
  } | undefined;
40001
40037
  assa_abloy_vostio_metadata?: {
40002
40038
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -40041,7 +40077,7 @@ interface Routes {
40041
40077
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
40042
40078
  external_type_display_name?: string | undefined;
40043
40079
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
40044
- is_suspended: boolean;
40080
+ is_suspended?: boolean | undefined;
40045
40081
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
40046
40082
  access_schedule?: {
40047
40083
  /** 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. */
@@ -40919,6 +40955,7 @@ interface Routes {
40919
40955
  access_point_name: string;
40920
40956
  common_area_number?: number | undefined;
40921
40957
  inner_access_points_names?: string[] | undefined;
40958
+ lease_ids?: string[] | undefined;
40922
40959
  } | undefined;
40923
40960
  assa_abloy_vostio_metadata?: {
40924
40961
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -42225,8 +42262,6 @@ interface Routes {
42225
42262
  message: string;
42226
42263
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
42227
42264
  error_code: 'acs_encoder_removed';
42228
- /** ID of the event that was created when the `acs_encoder` was removed. */
42229
- _event_id: string;
42230
42265
  }>;
42231
42266
  /** Date and time at which the `acs_encoder` was created. */
42232
42267
  created_at: string;
@@ -43155,6 +43190,7 @@ interface Routes {
43155
43190
  access_point_name: string;
43156
43191
  common_area_number?: number | undefined;
43157
43192
  inner_access_points_names?: string[] | undefined;
43193
+ lease_ids?: string[] | undefined;
43158
43194
  } | undefined;
43159
43195
  assa_abloy_vostio_metadata?: {
43160
43196
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -43235,6 +43271,7 @@ interface Routes {
43235
43271
  access_point_name: string;
43236
43272
  common_area_number?: number | undefined;
43237
43273
  inner_access_points_names?: string[] | undefined;
43274
+ lease_ids?: string[] | undefined;
43238
43275
  } | undefined;
43239
43276
  assa_abloy_vostio_metadata?: {
43240
43277
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -43475,6 +43512,7 @@ interface Routes {
43475
43512
  message: string;
43476
43513
  /** 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. */
43477
43514
  warning_code: 'time_zone_does_not_match_location';
43515
+ misconfigured_acs_entrance_ids?: string[] | undefined;
43478
43516
  }>;
43479
43517
  /** 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`. */
43480
43518
  can_automate_enrollment?: boolean | undefined;
@@ -43603,6 +43641,7 @@ interface Routes {
43603
43641
  message: string;
43604
43642
  /** 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. */
43605
43643
  warning_code: 'time_zone_does_not_match_location';
43644
+ misconfigured_acs_entrance_ids?: string[] | undefined;
43606
43645
  }>;
43607
43646
  /** 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`. */
43608
43647
  can_automate_enrollment?: boolean | undefined;
@@ -43731,6 +43770,7 @@ interface Routes {
43731
43770
  message: string;
43732
43771
  /** 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. */
43733
43772
  warning_code: 'time_zone_does_not_match_location';
43773
+ misconfigured_acs_entrance_ids?: string[] | undefined;
43734
43774
  }>;
43735
43775
  /** 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`. */
43736
43776
  can_automate_enrollment?: boolean | undefined;
@@ -43804,7 +43844,7 @@ interface Routes {
43804
43844
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
43805
43845
  external_type_display_name?: string | undefined;
43806
43846
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
43807
- is_suspended: boolean;
43847
+ is_suspended?: boolean | undefined;
43808
43848
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
43809
43849
  access_schedule?: {
43810
43850
  /** 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. */
@@ -43920,7 +43960,7 @@ interface Routes {
43920
43960
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
43921
43961
  external_type_display_name?: string | undefined;
43922
43962
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
43923
- is_suspended: boolean;
43963
+ is_suspended?: boolean | undefined;
43924
43964
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
43925
43965
  access_schedule?: {
43926
43966
  /** 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. */
@@ -44031,7 +44071,7 @@ interface Routes {
44031
44071
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
44032
44072
  external_type_display_name?: string | undefined;
44033
44073
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
44034
- is_suspended: boolean;
44074
+ is_suspended?: boolean | undefined;
44035
44075
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
44036
44076
  access_schedule?: {
44037
44077
  /** 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. */
@@ -44158,6 +44198,7 @@ interface Routes {
44158
44198
  access_point_name: string;
44159
44199
  common_area_number?: number | undefined;
44160
44200
  inner_access_points_names?: string[] | undefined;
44201
+ lease_ids?: string[] | undefined;
44161
44202
  } | undefined;
44162
44203
  assa_abloy_vostio_metadata?: {
44163
44204
  door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
@@ -44240,7 +44281,7 @@ interface Routes {
44240
44281
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
44241
44282
  external_type_display_name?: string | undefined;
44242
44283
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
44243
- is_suspended: boolean;
44284
+ is_suspended?: boolean | undefined;
44244
44285
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
44245
44286
  access_schedule?: {
44246
44287
  /** 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. */
@@ -44346,7 +44387,7 @@ interface Routes {
44346
44387
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
44347
44388
  external_type_display_name?: string | undefined;
44348
44389
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
44349
- is_suspended: boolean;
44390
+ is_suspended?: boolean | undefined;
44350
44391
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
44351
44392
  access_schedule?: {
44352
44393
  /** 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. */
@@ -66658,6 +66699,7 @@ interface Routes {
66658
66699
  message: string;
66659
66700
  /** 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. */
66660
66701
  warning_code: 'time_zone_does_not_match_location';
66702
+ misconfigured_acs_entrance_ids?: string[] | undefined;
66661
66703
  }>;
66662
66704
  /** 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`. */
66663
66705
  can_automate_enrollment?: boolean | undefined;
@@ -66698,7 +66740,7 @@ interface Routes {
66698
66740
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
66699
66741
  external_type_display_name?: string | undefined;
66700
66742
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
66701
- is_suspended: boolean;
66743
+ is_suspended?: boolean | undefined;
66702
66744
  /** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
66703
66745
  access_schedule?: {
66704
66746
  /** 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. */
@@ -5,31 +5,26 @@ declare const acs_encoder_error_map: z.ZodObject<{
5
5
  message: z.ZodString;
6
6
  }, {
7
7
  error_code: z.ZodLiteral<"acs_encoder_removed">;
8
- _event_id: z.ZodString;
9
8
  }>, "strip", z.ZodTypeAny, {
10
9
  message: string;
11
10
  error_code: "acs_encoder_removed";
12
11
  created_at: string;
13
- _event_id: string;
14
12
  }, {
15
13
  message: string;
16
14
  error_code: "acs_encoder_removed";
17
15
  created_at: string;
18
- _event_id: string;
19
16
  }>>>;
20
17
  }, "strip", z.ZodTypeAny, {
21
18
  acs_encoder_removed?: {
22
19
  message: string;
23
20
  error_code: "acs_encoder_removed";
24
21
  created_at: string;
25
- _event_id: string;
26
22
  } | null | undefined;
27
23
  }, {
28
24
  acs_encoder_removed?: {
29
25
  message: string;
30
26
  error_code: "acs_encoder_removed";
31
27
  created_at: string;
32
- _event_id: string;
33
28
  } | null | undefined;
34
29
  }>;
35
30
  export type AcsEncoderErrorMap = z.infer<typeof acs_encoder_error_map>;
@@ -42,17 +37,14 @@ export declare const acs_encoder: z.ZodObject<{
42
37
  message: z.ZodString;
43
38
  }, {
44
39
  error_code: z.ZodLiteral<"acs_encoder_removed">;
45
- _event_id: z.ZodString;
46
40
  }>, "strip", z.ZodTypeAny, {
47
41
  message: string;
48
42
  error_code: "acs_encoder_removed";
49
43
  created_at: string;
50
- _event_id: string;
51
44
  }, {
52
45
  message: string;
53
46
  error_code: "acs_encoder_removed";
54
47
  created_at: string;
55
- _event_id: string;
56
48
  }>, "many">;
57
49
  created_at: z.ZodString;
58
50
  display_name: z.ZodString;
@@ -62,7 +54,6 @@ export declare const acs_encoder: z.ZodObject<{
62
54
  message: string;
63
55
  error_code: "acs_encoder_removed";
64
56
  created_at: string;
65
- _event_id: string;
66
57
  }[];
67
58
  display_name: string;
68
59
  workspace_id: string;
@@ -74,7 +65,6 @@ export declare const acs_encoder: z.ZodObject<{
74
65
  message: string;
75
66
  error_code: "acs_encoder_removed";
76
67
  created_at: string;
77
- _event_id: string;
78
68
  }[];
79
69
  display_name: string;
80
70
  workspace_id: string;
@@ -11,10 +11,6 @@ const common_acs_encoder_error = z.object({
11
11
  const error_code_description = 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.';
12
12
  const acs_encoder_removed = common_acs_encoder_error.extend({
13
13
  error_code: z.literal('acs_encoder_removed').describe(error_code_description),
14
- _event_id: z
15
- .string()
16
- .uuid()
17
- .describe('ID of the event that was created when the `acs_encoder` was removed.'),
18
14
  });
19
15
  const acs_encoder_error =
20
16
  // z.union([
@@ -1 +1 @@
1
- {"version":3,"file":"acs-encoder.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-encoder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,mBAAmB,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC1D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,QAAQ,CAAC,sBAAsB,CAAC;IAC7E,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,sEAAsE,CACvE;CACJ,CAAC,CAAA;AAEF,MAAM,iBAAiB;AACrB,YAAY;AACZ,mBAAmB;IACjB,KAAK;KACJ,QAAQ,CAAC,0CAA0C,CAAC,CAAA;AAEzD,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAClC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACtE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,kEAAkE,CACnE;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,CAAC,2CAA2C,CAAC;IACxD,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;CACzE,CAAC,CAAA"}
1
+ {"version":3,"file":"acs-encoder.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-encoder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,mBAAmB,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC1D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,QAAQ,CAAC,sBAAsB,CAAC;CAC9E,CAAC,CAAA;AAEF,MAAM,iBAAiB;AACrB,YAAY;AACZ,mBAAmB;IACjB,KAAK;KACJ,QAAQ,CAAC,0CAA0C,CAAC,CAAA;AAEzD,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAClC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACtE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,kEAAkE,CACnE;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,CAAC,2CAA2C,CAAC;IACxD,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;CACzE,CAAC,CAAA"}
@@ -90,14 +90,17 @@ export declare const acs_entrance: z.ZodObject<{
90
90
  access_point_name: z.ZodString;
91
91
  common_area_number: z.ZodOptional<z.ZodNumber>;
92
92
  inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
93
+ lease_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
93
94
  }, "strip", z.ZodTypeAny, {
94
95
  access_point_name: string;
95
96
  common_area_number?: number | undefined;
96
97
  inner_access_points_names?: string[] | undefined;
98
+ lease_ids?: string[] | undefined;
97
99
  }, {
98
100
  access_point_name: string;
99
101
  common_area_number?: number | undefined;
100
102
  inner_access_points_names?: string[] | undefined;
103
+ lease_ids?: string[] | undefined;
101
104
  }>>;
102
105
  assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
103
106
  door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
@@ -175,6 +178,7 @@ export declare const acs_entrance: z.ZodObject<{
175
178
  access_point_name: string;
176
179
  common_area_number?: number | undefined;
177
180
  inner_access_points_names?: string[] | undefined;
181
+ lease_ids?: string[] | undefined;
178
182
  } | undefined;
179
183
  salto_space_metadata?: {
180
184
  door_name: string;
@@ -225,6 +229,7 @@ export declare const acs_entrance: z.ZodObject<{
225
229
  access_point_name: string;
226
230
  common_area_number?: number | undefined;
227
231
  inner_access_points_names?: string[] | undefined;
232
+ lease_ids?: string[] | undefined;
228
233
  } | undefined;
229
234
  salto_space_metadata?: {
230
235
  door_name: string;
@@ -188,18 +188,47 @@ export declare const acs_system_warning_map: z.ZodObject<{
188
188
  warning_code: "salto_ks_subscription_limit_almost_reached";
189
189
  created_at: string;
190
190
  }>>>;
191
+ time_zone_does_not_match_location: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
192
+ created_at: z.ZodString;
193
+ message: z.ZodString;
194
+ }, {
195
+ warning_code: z.ZodLiteral<"time_zone_does_not_match_location">;
196
+ misconfigured_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
197
+ }>, "strip", z.ZodTypeAny, {
198
+ message: string;
199
+ warning_code: "time_zone_does_not_match_location";
200
+ created_at: string;
201
+ misconfigured_acs_entrance_ids?: string[] | undefined;
202
+ }, {
203
+ message: string;
204
+ warning_code: "time_zone_does_not_match_location";
205
+ created_at: string;
206
+ misconfigured_acs_entrance_ids?: string[] | undefined;
207
+ }>>>;
191
208
  }, "strip", z.ZodTypeAny, {
192
209
  salto_ks_subscription_limit_almost_reached?: {
193
210
  message: string;
194
211
  warning_code: "salto_ks_subscription_limit_almost_reached";
195
212
  created_at: string;
196
213
  } | null | undefined;
214
+ time_zone_does_not_match_location?: {
215
+ message: string;
216
+ warning_code: "time_zone_does_not_match_location";
217
+ created_at: string;
218
+ misconfigured_acs_entrance_ids?: string[] | undefined;
219
+ } | null | undefined;
197
220
  }, {
198
221
  salto_ks_subscription_limit_almost_reached?: {
199
222
  message: string;
200
223
  warning_code: "salto_ks_subscription_limit_almost_reached";
201
224
  created_at: string;
202
225
  } | null | undefined;
226
+ time_zone_does_not_match_location?: {
227
+ message: string;
228
+ warning_code: "time_zone_does_not_match_location";
229
+ created_at: string;
230
+ misconfigured_acs_entrance_ids?: string[] | undefined;
231
+ } | null | undefined;
203
232
  }>;
204
233
  export type AcsSystemWarningMap = z.infer<typeof acs_system_warning_map>;
205
234
  export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
@@ -334,14 +363,17 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
334
363
  message: z.ZodString;
335
364
  }, {
336
365
  warning_code: z.ZodLiteral<"time_zone_does_not_match_location">;
366
+ misconfigured_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
337
367
  }>, "strip", z.ZodTypeAny, {
338
368
  message: string;
339
369
  warning_code: "time_zone_does_not_match_location";
340
370
  created_at: string;
371
+ misconfigured_acs_entrance_ids?: string[] | undefined;
341
372
  }, {
342
373
  message: string;
343
374
  warning_code: "time_zone_does_not_match_location";
344
375
  created_at: string;
376
+ misconfigured_acs_entrance_ids?: string[] | undefined;
345
377
  }>]>, "many">;
346
378
  }, {
347
379
  can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
@@ -388,6 +420,7 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
388
420
  message: string;
389
421
  warning_code: "time_zone_does_not_match_location";
390
422
  created_at: string;
423
+ misconfigured_acs_entrance_ids?: string[] | undefined;
391
424
  })[];
392
425
  image_url: string;
393
426
  image_alt_text: string;
@@ -449,6 +482,7 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
449
482
  message: string;
450
483
  warning_code: "time_zone_does_not_match_location";
451
484
  created_at: string;
485
+ misconfigured_acs_entrance_ids?: string[] | undefined;
452
486
  })[];
453
487
  image_url: string;
454
488
  image_alt_text: string;
@@ -133,6 +133,7 @@ const time_zone_does_not_match_location = common_acs_system_warning.extend({
133
133
  warning_code: z
134
134
  .literal('time_zone_does_not_match_location')
135
135
  .describe('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.'),
136
+ misconfigured_acs_entrance_ids: z.array(z.string().uuid()).optional(),
136
137
  });
137
138
  const acs_system_warning = z
138
139
  .union([
@@ -142,6 +143,9 @@ const acs_system_warning = z
142
143
  .describe('Warning associated with the `acs_system`.');
143
144
  export const acs_system_warning_map = z.object({
144
145
  salto_ks_subscription_limit_almost_reached: salto_ks_subscription_limit_almost_reached.optional().nullable(),
146
+ time_zone_does_not_match_location: time_zone_does_not_match_location
147
+ .optional()
148
+ .nullable(),
145
149
  });
146
150
  export const acs_system = z
147
151
  .object({
@@ -1 +1 @@
1
- {"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}