@seamapi/types 1.984.0 → 1.986.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 (34) hide show
  1. package/lib/seam/connect/models/acs/acs-credential.d.ts +33 -7
  2. package/lib/seam/connect/models/acs/acs-credential.js +5 -1
  3. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  4. package/lib/seam/connect/models/acs/acs-entrance.js +7 -4
  5. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  6. package/lib/seam/connect/models/acs/metadata/akiles.d.ts +8 -0
  7. package/lib/seam/connect/models/acs/metadata/akiles.js +9 -0
  8. package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -1
  9. package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
  10. package/lib/seam/connect/models/acs/metadata/index.js +1 -0
  11. package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
  12. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +136 -29
  13. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +48 -10
  14. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +64 -14
  15. package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +24 -5
  16. package/lib/seam/connect/models/devices/device-metadata.js +1 -1
  17. package/lib/seam/connect/models/events/connected-accounts.js +5 -4
  18. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  19. package/lib/seam/connect/models/events/devices.js +12 -0
  20. package/lib/seam/connect/models/events/devices.js.map +1 -1
  21. package/lib/seam/connect/models/phones/phone-session.d.ts +56 -12
  22. package/lib/seam/connect/openapi.js +120 -16
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +1149 -441
  25. package/package.json +2 -2
  26. package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
  27. package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -9
  28. package/src/lib/seam/connect/models/acs/metadata/akiles.ts +14 -0
  29. package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
  30. package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -1
  31. package/src/lib/seam/connect/models/events/connected-accounts.ts +5 -4
  32. package/src/lib/seam/connect/models/events/devices.ts +12 -0
  33. package/src/lib/seam/connect/openapi.ts +129 -16
  34. package/src/lib/seam/connect/route-types.ts +1513 -261
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.984.0",
3
+ "version": "1.986.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -90,7 +90,7 @@
90
90
  }
91
91
  },
92
92
  "devDependencies": {
93
- "@seamapi/blueprint": "^1.1.0",
93
+ "@seamapi/blueprint": "^1.2.0",
94
94
  "@types/node": "^24.10.9",
95
95
  "concurrently": "^9.2.0",
96
96
  "del-cli": "^7.0.0",
@@ -1,6 +1,7 @@
1
1
  import { z } from 'zod'
2
2
 
3
3
  import {
4
+ acs_credential_akiles_metadata,
4
5
  acs_credential_visionline_metadata,
5
6
  acs_credential_vostio_metadata,
6
7
  } from './metadata/index.js'
@@ -20,6 +21,7 @@ export const acs_credential_external_type = z.enum([
20
21
  'salto_ks_tag',
21
22
  'avigilon_alta_credential',
22
23
  'kisi_credential',
24
+ 'akiles_credential',
23
25
  ])
24
26
 
25
27
  export const acs_credential_access_method_type = z.enum([
@@ -309,6 +311,11 @@ const common_acs_credential = z.object({
309
311
  .describe(
310
312
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
311
313
  ),
314
+ akiles_metadata: acs_credential_akiles_metadata
315
+ .optional()
316
+ .describe(
317
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
318
+ ),
312
319
  })
313
320
 
314
321
  export const acs_credential = common_acs_credential.merge(
@@ -60,15 +60,16 @@ const entrance_setup_required = common_acs_entrance_warning
60
60
  'Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.',
61
61
  )
62
62
 
63
- const salto_ks_privacy_mode = common_acs_entrance_warning
64
- .extend({
65
- warning_code: z
66
- .literal('salto_ks_privacy_mode')
67
- .describe(warning_code_description),
68
- })
69
- .describe(
70
- 'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
71
- )
63
+ const salto_ks_privacy_mode = common_acs_entrance_warning.extend({
64
+ warning_code: z
65
+ .literal('salto_ks_privacy_mode')
66
+ .describe(warning_code_description),
67
+ }).describe(`
68
+ ---
69
+ deprecated: Use \`privacy_mode\` instead.
70
+ ---
71
+ Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.
72
+ `)
72
73
 
73
74
  const privacy_mode = common_acs_entrance_warning
74
75
  .extend({
@@ -29,3 +29,17 @@ export const acs_entrance_akiles_metadata = z
29
29
  export type AcsEntranceAkilesMetadata = z.infer<
30
30
  typeof acs_entrance_akiles_metadata
31
31
  >
32
+
33
+ export const acs_credential_akiles_metadata = z
34
+ .object({
35
+ member_pin_id: z
36
+ .string()
37
+ .optional()
38
+ .describe('ID of the Akiles member PIN.'),
39
+ })
40
+ .partial()
41
+ .describe('Akiles-specific metadata for the credential.')
42
+
43
+ export type AcsCredentialAkilesMetadata = z.infer<
44
+ typeof acs_credential_akiles_metadata
45
+ >
@@ -1,3 +1,4 @@
1
+ export * from './akiles.js'
1
2
  export * from './assa-abloy-vostio.js'
2
3
  export * from './brivo.js'
3
4
  export * from './dormakaba-ambiance.js'
@@ -264,7 +264,7 @@ export const device_metadata = z
264
264
  })
265
265
  .partial().describe(`
266
266
  ---
267
- deprecated: Use \`salto_ks_metadata \` instead.
267
+ deprecated: Use \`salto_ks_metadata\` instead.
268
268
  ---
269
269
  Metada for a Salto device.
270
270
  `),
@@ -117,10 +117,11 @@ export type ConnectedAccountCompletedFirstSyncEvent = z.infer<
117
117
 
118
118
  export const connected_account_deleted_event = connected_account_event.extend({
119
119
  event_type: z.literal('connected_account.deleted'),
120
- connected_account_type: z
121
- .string()
122
- .optional()
123
- .describe(`undocumented: Unreleased.`),
120
+ connected_account_type: z.string().optional().describe(`
121
+ ---
122
+ undocumented: Unreleased.
123
+ ---
124
+ `),
124
125
  customer_key: z
125
126
  .string()
126
127
  .optional()
@@ -436,21 +436,25 @@ export const lock_locked_event = device_event.extend({
436
436
  'Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined.',
437
437
  ),
438
438
  user_identity_id: z.string().uuid().optional().describe(`
439
+ ---
439
440
  undocumented: Unreleased.
440
441
  ---
441
442
  ID of the user identity associated with the lock event.
442
443
  `),
443
444
  acs_system_id: z.string().uuid().optional().describe(`
445
+ ---
444
446
  undocumented: Unreleased.
445
447
  ---
446
448
  ID of the ACS system associated with the lock event.
447
449
  `),
448
450
  acs_user_id: z.string().uuid().optional().describe(`
451
+ ---
449
452
  undocumented: Unreleased.
450
453
  ---
451
454
  ID of the ACS user associated with the lock event.
452
455
  `),
453
456
  acs_entrance_id: z.string().uuid().optional().describe(`
457
+ ---
454
458
  undocumented: Unreleased.
455
459
  ---
456
460
  ID of the ACS entrance associated with the lock event.
@@ -499,21 +503,25 @@ export const lock_unlocked_event = device_event.extend({
499
503
  'Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined.',
500
504
  ),
501
505
  user_identity_id: z.string().uuid().optional().describe(`
506
+ ---
502
507
  undocumented: Unreleased.
503
508
  ---
504
509
  ID of the user identity associated with the unlock event.
505
510
  `),
506
511
  acs_system_id: z.string().uuid().optional().describe(`
512
+ ---
507
513
  undocumented: Unreleased.
508
514
  ---
509
515
  ID of the ACS system associated with the unlock event.
510
516
  `),
511
517
  acs_user_id: z.string().uuid().optional().describe(`
518
+ ---
512
519
  undocumented: Unreleased.
513
520
  ---
514
521
  ID of the ACS user associated with the unlock event.
515
522
  `),
516
523
  acs_entrance_id: z.string().uuid().optional().describe(`
524
+ ---
517
525
  undocumented: Unreleased.
518
526
  ---
519
527
  ID of the ACS entrance associated with the unlock event.
@@ -546,21 +554,25 @@ export const lock_access_denied_event = device_event.extend({
546
554
  .optional()
547
555
  .describe('ID of the access code that was used in the unlock attempts.'),
548
556
  user_identity_id: z.string().uuid().optional().describe(`
557
+ ---
549
558
  undocumented: Unreleased.
550
559
  ---
551
560
  ID of the user identity associated with the access-denied event.
552
561
  `),
553
562
  acs_system_id: z.string().uuid().optional().describe(`
563
+ ---
554
564
  undocumented: Unreleased.
555
565
  ---
556
566
  ID of the ACS system associated with the access-denied event.
557
567
  `),
558
568
  acs_user_id: z.string().uuid().optional().describe(`
569
+ ---
559
570
  undocumented: Unreleased.
560
571
  ---
561
572
  ID of the ACS user associated with the access-denied event.
562
573
  `),
563
574
  acs_entrance_id: z.string().uuid().optional().describe(`
575
+ ---
564
576
  undocumented: Unreleased.
565
577
  ---
566
578
  ID of the ACS entrance associated with the access-denied event.
@@ -3298,6 +3298,17 @@ const openapi: OpenAPISpec = {
3298
3298
  format: 'uuid',
3299
3299
  type: 'string',
3300
3300
  },
3301
+ akiles_metadata: {
3302
+ description:
3303
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
3304
+ properties: {
3305
+ member_pin_id: {
3306
+ description: 'ID of the Akiles member PIN.',
3307
+ type: 'string',
3308
+ },
3309
+ },
3310
+ type: 'object',
3311
+ },
3301
3312
  assa_abloy_vostio_metadata: {
3302
3313
  description:
3303
3314
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -3405,6 +3416,7 @@ const openapi: OpenAPISpec = {
3405
3416
  'salto_ks_tag',
3406
3417
  'avigilon_alta_credential',
3407
3418
  'kisi_credential',
3419
+ 'akiles_credential',
3408
3420
  ],
3409
3421
  type: 'string',
3410
3422
  },
@@ -4329,8 +4341,9 @@ const openapi: OpenAPISpec = {
4329
4341
  type: 'object',
4330
4342
  },
4331
4343
  {
4344
+ deprecated: true,
4332
4345
  description:
4333
- 'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
4346
+ 'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
4334
4347
  properties: {
4335
4348
  created_at: {
4336
4349
  description:
@@ -4352,6 +4365,7 @@ const openapi: OpenAPISpec = {
4352
4365
  },
4353
4366
  required: ['created_at', 'message', 'warning_code'],
4354
4367
  type: 'object',
4368
+ 'x-deprecated': 'Use `privacy_mode` instead.',
4355
4369
  },
4356
4370
  {
4357
4371
  description:
@@ -6266,6 +6280,17 @@ const openapi: OpenAPISpec = {
6266
6280
  format: 'uuid',
6267
6281
  type: 'string',
6268
6282
  },
6283
+ akiles_metadata: {
6284
+ description:
6285
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
6286
+ properties: {
6287
+ member_pin_id: {
6288
+ description: 'ID of the Akiles member PIN.',
6289
+ type: 'string',
6290
+ },
6291
+ },
6292
+ type: 'object',
6293
+ },
6269
6294
  assa_abloy_vostio_metadata: {
6270
6295
  description:
6271
6296
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -6376,6 +6401,7 @@ const openapi: OpenAPISpec = {
6376
6401
  'salto_ks_tag',
6377
6402
  'avigilon_alta_credential',
6378
6403
  'kisi_credential',
6404
+ 'akiles_credential',
6379
6405
  ],
6380
6406
  type: 'string',
6381
6407
  },
@@ -6737,6 +6763,17 @@ const openapi: OpenAPISpec = {
6737
6763
  format: 'uuid',
6738
6764
  type: 'string',
6739
6765
  },
6766
+ akiles_metadata: {
6767
+ description:
6768
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
6769
+ properties: {
6770
+ member_pin_id: {
6771
+ description: 'ID of the Akiles member PIN.',
6772
+ type: 'string',
6773
+ },
6774
+ },
6775
+ type: 'object',
6776
+ },
6740
6777
  assa_abloy_vostio_metadata: {
6741
6778
  description:
6742
6779
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -6847,6 +6884,7 @@ const openapi: OpenAPISpec = {
6847
6884
  'salto_ks_tag',
6848
6885
  'avigilon_alta_credential',
6849
6886
  'kisi_credential',
6887
+ 'akiles_credential',
6850
6888
  ],
6851
6889
  type: 'string',
6852
6890
  },
@@ -7460,6 +7498,17 @@ const openapi: OpenAPISpec = {
7460
7498
  format: 'uuid',
7461
7499
  type: 'string',
7462
7500
  },
7501
+ akiles_metadata: {
7502
+ description:
7503
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
7504
+ properties: {
7505
+ member_pin_id: {
7506
+ description: 'ID of the Akiles member PIN.',
7507
+ type: 'string',
7508
+ },
7509
+ },
7510
+ type: 'object',
7511
+ },
7463
7512
  assa_abloy_vostio_metadata: {
7464
7513
  description:
7465
7514
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -7569,6 +7618,7 @@ const openapi: OpenAPISpec = {
7569
7618
  'salto_ks_tag',
7570
7619
  'avigilon_alta_credential',
7571
7620
  'kisi_credential',
7621
+ 'akiles_credential',
7572
7622
  ],
7573
7623
  type: 'string',
7574
7624
  },
@@ -7928,6 +7978,17 @@ const openapi: OpenAPISpec = {
7928
7978
  format: 'uuid',
7929
7979
  type: 'string',
7930
7980
  },
7981
+ akiles_metadata: {
7982
+ description:
7983
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
7984
+ properties: {
7985
+ member_pin_id: {
7986
+ description: 'ID of the Akiles member PIN.',
7987
+ type: 'string',
7988
+ },
7989
+ },
7990
+ type: 'object',
7991
+ },
7931
7992
  assa_abloy_vostio_metadata: {
7932
7993
  description:
7933
7994
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -8037,6 +8098,7 @@ const openapi: OpenAPISpec = {
8037
8098
  'salto_ks_tag',
8038
8099
  'avigilon_alta_credential',
8039
8100
  'kisi_credential',
8101
+ 'akiles_credential',
8040
8102
  ],
8041
8103
  type: 'string',
8042
8104
  },
@@ -8685,6 +8747,17 @@ const openapi: OpenAPISpec = {
8685
8747
  format: 'uuid',
8686
8748
  type: 'string',
8687
8749
  },
8750
+ akiles_metadata: {
8751
+ description:
8752
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
8753
+ properties: {
8754
+ member_pin_id: {
8755
+ description: 'ID of the Akiles member PIN.',
8756
+ type: 'string',
8757
+ },
8758
+ },
8759
+ type: 'object',
8760
+ },
8688
8761
  assa_abloy_vostio_metadata: {
8689
8762
  description:
8690
8763
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -8793,6 +8866,7 @@ const openapi: OpenAPISpec = {
8793
8866
  'salto_ks_tag',
8794
8867
  'avigilon_alta_credential',
8795
8868
  'kisi_credential',
8869
+ 'akiles_credential',
8796
8870
  ],
8797
8871
  type: 'string',
8798
8872
  },
@@ -14910,7 +14984,7 @@ const openapi: OpenAPISpec = {
14910
14984
  },
14911
14985
  },
14912
14986
  type: 'object',
14913
- 'x-deprecated': 'Use `salto_ks_metadata ` instead.',
14987
+ 'x-deprecated': 'Use `salto_ks_metadata` instead.',
14914
14988
  },
14915
14989
  schlage_metadata: {
14916
14990
  description: 'Metadata for a Schlage device.',
@@ -22485,8 +22559,8 @@ const openapi: OpenAPISpec = {
22485
22559
  type: 'string',
22486
22560
  },
22487
22561
  connected_account_type: {
22488
- description: 'undocumented: Unreleased.',
22489
22562
  type: 'string',
22563
+ 'x-undocumented': 'Unreleased.',
22490
22564
  },
22491
22565
  created_at: {
22492
22566
  description: 'Date and time at which the event was created.',
@@ -25826,21 +25900,24 @@ const openapi: OpenAPISpec = {
25826
25900
  },
25827
25901
  acs_entrance_id: {
25828
25902
  description:
25829
- '\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the lock event.\n ',
25903
+ 'ID of the ACS entrance associated with the lock event.',
25830
25904
  format: 'uuid',
25831
25905
  type: 'string',
25906
+ 'x-undocumented': 'Unreleased.',
25832
25907
  },
25833
25908
  acs_system_id: {
25834
25909
  description:
25835
- '\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the lock event.\n ',
25910
+ 'ID of the ACS system associated with the lock event.',
25836
25911
  format: 'uuid',
25837
25912
  type: 'string',
25913
+ 'x-undocumented': 'Unreleased.',
25838
25914
  },
25839
25915
  acs_user_id: {
25840
25916
  description:
25841
- '\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the lock event.\n ',
25917
+ 'ID of the ACS user associated with the lock event.',
25842
25918
  format: 'uuid',
25843
25919
  type: 'string',
25920
+ 'x-undocumented': 'Unreleased.',
25844
25921
  },
25845
25922
  action_attempt_id: {
25846
25923
  description:
@@ -25931,9 +26008,10 @@ const openapi: OpenAPISpec = {
25931
26008
  },
25932
26009
  user_identity_id: {
25933
26010
  description:
25934
- '\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the lock event.\n ',
26011
+ 'ID of the user identity associated with the lock event.',
25935
26012
  format: 'uuid',
25936
26013
  type: 'string',
26014
+ 'x-undocumented': 'Unreleased.',
25937
26015
  },
25938
26016
  workspace_id: {
25939
26017
  description: 'ID of the workspace associated with the event.',
@@ -25971,21 +26049,24 @@ const openapi: OpenAPISpec = {
25971
26049
  },
25972
26050
  acs_entrance_id: {
25973
26051
  description:
25974
- '\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the unlock event.\n ',
26052
+ 'ID of the ACS entrance associated with the unlock event.',
25975
26053
  format: 'uuid',
25976
26054
  type: 'string',
26055
+ 'x-undocumented': 'Unreleased.',
25977
26056
  },
25978
26057
  acs_system_id: {
25979
26058
  description:
25980
- '\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the unlock event.\n ',
26059
+ 'ID of the ACS system associated with the unlock event.',
25981
26060
  format: 'uuid',
25982
26061
  type: 'string',
26062
+ 'x-undocumented': 'Unreleased.',
25983
26063
  },
25984
26064
  acs_user_id: {
25985
26065
  description:
25986
- '\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the unlock event.\n ',
26066
+ 'ID of the ACS user associated with the unlock event.',
25987
26067
  format: 'uuid',
25988
26068
  type: 'string',
26069
+ 'x-undocumented': 'Unreleased.',
25989
26070
  },
25990
26071
  action_attempt_id: {
25991
26072
  description:
@@ -26076,9 +26157,10 @@ const openapi: OpenAPISpec = {
26076
26157
  },
26077
26158
  user_identity_id: {
26078
26159
  description:
26079
- '\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the unlock event.\n ',
26160
+ 'ID of the user identity associated with the unlock event.',
26080
26161
  format: 'uuid',
26081
26162
  type: 'string',
26163
+ 'x-undocumented': 'Unreleased.',
26082
26164
  },
26083
26165
  workspace_id: {
26084
26166
  description: 'ID of the workspace associated with the event.',
@@ -26110,21 +26192,24 @@ const openapi: OpenAPISpec = {
26110
26192
  },
26111
26193
  acs_entrance_id: {
26112
26194
  description:
26113
- '\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the access-denied event.\n ',
26195
+ 'ID of the ACS entrance associated with the access-denied event.',
26114
26196
  format: 'uuid',
26115
26197
  type: 'string',
26198
+ 'x-undocumented': 'Unreleased.',
26116
26199
  },
26117
26200
  acs_system_id: {
26118
26201
  description:
26119
- '\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the access-denied event.\n ',
26202
+ 'ID of the ACS system associated with the access-denied event.',
26120
26203
  format: 'uuid',
26121
26204
  type: 'string',
26205
+ 'x-undocumented': 'Unreleased.',
26122
26206
  },
26123
26207
  acs_user_id: {
26124
26208
  description:
26125
- '\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the access-denied event.\n ',
26209
+ 'ID of the ACS user associated with the access-denied event.',
26126
26210
  format: 'uuid',
26127
26211
  type: 'string',
26212
+ 'x-undocumented': 'Unreleased.',
26128
26213
  },
26129
26214
  connected_account_custom_metadata: {
26130
26215
  additionalProperties: {
@@ -26207,9 +26292,10 @@ const openapi: OpenAPISpec = {
26207
26292
  },
26208
26293
  user_identity_id: {
26209
26294
  description:
26210
- '\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the access-denied event.\n ',
26295
+ 'ID of the user identity associated with the access-denied event.',
26211
26296
  format: 'uuid',
26212
26297
  type: 'string',
26298
+ 'x-undocumented': 'Unreleased.',
26213
26299
  },
26214
26300
  workspace_id: {
26215
26301
  description: 'ID of the workspace associated with the event.',
@@ -28422,8 +28508,9 @@ const openapi: OpenAPISpec = {
28422
28508
  type: 'object',
28423
28509
  },
28424
28510
  {
28511
+ deprecated: true,
28425
28512
  description:
28426
- 'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
28513
+ 'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
28427
28514
  properties: {
28428
28515
  created_at: {
28429
28516
  description:
@@ -28449,6 +28536,8 @@ const openapi: OpenAPISpec = {
28449
28536
  'warning_code',
28450
28537
  ],
28451
28538
  type: 'object',
28539
+ 'x-deprecated':
28540
+ 'Use `privacy_mode` instead.',
28452
28541
  },
28453
28542
  {
28454
28543
  description:
@@ -28511,6 +28600,17 @@ const openapi: OpenAPISpec = {
28511
28600
  format: 'uuid',
28512
28601
  type: 'string',
28513
28602
  },
28603
+ akiles_metadata: {
28604
+ description:
28605
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
28606
+ properties: {
28607
+ member_pin_id: {
28608
+ description: 'ID of the Akiles member PIN.',
28609
+ type: 'string',
28610
+ },
28611
+ },
28612
+ type: 'object',
28613
+ },
28514
28614
  assa_abloy_vostio_metadata: {
28515
28615
  description:
28516
28616
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -28620,6 +28720,7 @@ const openapi: OpenAPISpec = {
28620
28720
  'salto_ks_tag',
28621
28721
  'avigilon_alta_credential',
28622
28722
  'kisi_credential',
28723
+ 'akiles_credential',
28623
28724
  ],
28624
28725
  type: 'string',
28625
28726
  },
@@ -32499,6 +32600,17 @@ const openapi: OpenAPISpec = {
32499
32600
  format: 'uuid',
32500
32601
  type: 'string',
32501
32602
  },
32603
+ akiles_metadata: {
32604
+ description:
32605
+ 'Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
32606
+ properties: {
32607
+ member_pin_id: {
32608
+ description: 'ID of the Akiles member PIN.',
32609
+ type: 'string',
32610
+ },
32611
+ },
32612
+ type: 'object',
32613
+ },
32502
32614
  assa_abloy_vostio_metadata: {
32503
32615
  description:
32504
32616
  'Vostio-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials).',
@@ -32606,6 +32718,7 @@ const openapi: OpenAPISpec = {
32606
32718
  'salto_ks_tag',
32607
32719
  'avigilon_alta_credential',
32608
32720
  'kisi_credential',
32721
+ 'akiles_credential',
32609
32722
  ],
32610
32723
  type: 'string',
32611
32724
  },