@seamapi/types 1.549.0 → 1.550.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.
@@ -21095,6 +21095,11 @@ export type Routes = {
21095
21095
  join_all_guest_acs_entrances?: boolean | undefined;
21096
21096
  override_guest_acs_entrance_ids?: string[] | undefined;
21097
21097
  } | undefined;
21098
+ /** */
21099
+ hotek_metadata?: {
21100
+ override?: boolean | undefined;
21101
+ auto_join?: boolean | undefined;
21102
+ } | undefined;
21098
21103
  /** Salto Space-specific metadata for the new credential. */
21099
21104
  salto_space_metadata?: {
21100
21105
  /** Indicates whether to assign a first, new card to a user. See also [Programming Salto Space Card-based Credentials](https://docs.seam.co/latest/device-and-system-integration-guides/salto-proaccess-space-access-system/programming-salto-space-card-based-credentials). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.549.0",
3
+ "version": "1.550.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -31325,6 +31325,14 @@ export default {
31325
31325
  format: 'date-time',
31326
31326
  type: 'string',
31327
31327
  },
31328
+ hotek_metadata: {
31329
+ properties: {
31330
+ auto_join: { type: 'boolean' },
31331
+ override: { type: 'boolean' },
31332
+ },
31333
+ type: 'object',
31334
+ 'x-undocumented': 'in development',
31335
+ },
31328
31336
  is_multi_phone_sync_credential: {
31329
31337
  default: false,
31330
31338
  description:
@@ -24548,6 +24548,13 @@ export type Routes = {
24548
24548
  override_guest_acs_entrance_ids?: string[] | undefined
24549
24549
  }
24550
24550
  | undefined
24551
+ /** */
24552
+ hotek_metadata?:
24553
+ | {
24554
+ override?: boolean | undefined
24555
+ auto_join?: boolean | undefined
24556
+ }
24557
+ | undefined
24551
24558
  /** Salto Space-specific metadata for the new credential. */
24552
24559
  salto_space_metadata?:
24553
24560
  | {