@seamapi/types 1.156.0 → 1.157.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.
@@ -1106,8 +1106,8 @@ export interface Routes {
1106
1106
  created_at: string;
1107
1107
  latch_metadata: {
1108
1108
  accessibility_type: string;
1109
- name: string;
1110
- type: string;
1109
+ door_name: string;
1110
+ door_type: string;
1111
1111
  is_connected: boolean;
1112
1112
  } | null;
1113
1113
  visionline_metadata: {
@@ -1151,8 +1151,8 @@ export interface Routes {
1151
1151
  created_at: string;
1152
1152
  latch_metadata: {
1153
1153
  accessibility_type: string;
1154
- name: string;
1155
- type: string;
1154
+ door_name: string;
1155
+ door_type: string;
1156
1156
  is_connected: boolean;
1157
1157
  } | null;
1158
1158
  visionline_metadata: {
@@ -1459,8 +1459,8 @@ export interface Routes {
1459
1459
  created_at: string;
1460
1460
  latch_metadata: {
1461
1461
  accessibility_type: string;
1462
- name: string;
1463
- type: string;
1462
+ door_name: string;
1463
+ door_type: string;
1464
1464
  is_connected: boolean;
1465
1465
  } | null;
1466
1466
  visionline_metadata: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.156.0",
3
+ "version": "1.157.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -2,8 +2,8 @@ import { z } from 'zod'
2
2
 
3
3
  export const acs_entrance_latch_metadata = z.object({
4
4
  accessibility_type: z.string(),
5
- name: z.string(),
6
- type: z.string(),
5
+ door_name: z.string(),
6
+ door_type: z.string(),
7
7
  is_connected: z.boolean(),
8
8
  })
9
9
 
@@ -315,11 +315,16 @@ export default {
315
315
  nullable: true,
316
316
  properties: {
317
317
  accessibility_type: { type: 'string' },
318
+ door_name: { type: 'string' },
319
+ door_type: { type: 'string' },
318
320
  is_connected: { type: 'boolean' },
319
- name: { type: 'string' },
320
- type: { type: 'string' },
321
321
  },
322
- required: ['accessibility_type', 'name', 'type', 'is_connected'],
322
+ required: [
323
+ 'accessibility_type',
324
+ 'door_name',
325
+ 'door_type',
326
+ 'is_connected',
327
+ ],
323
328
  type: 'object',
324
329
  },
325
330
  visionline_metadata: {
@@ -1207,8 +1207,8 @@ export interface Routes {
1207
1207
  created_at: string
1208
1208
  latch_metadata: {
1209
1209
  accessibility_type: string
1210
- name: string
1211
- type: string
1210
+ door_name: string
1211
+ door_type: string
1212
1212
  is_connected: boolean
1213
1213
  } | null
1214
1214
  visionline_metadata: {
@@ -1259,8 +1259,8 @@ export interface Routes {
1259
1259
  created_at: string
1260
1260
  latch_metadata: {
1261
1261
  accessibility_type: string
1262
- name: string
1263
- type: string
1262
+ door_name: string
1263
+ door_type: string
1264
1264
  is_connected: boolean
1265
1265
  } | null
1266
1266
  visionline_metadata: {
@@ -1659,8 +1659,8 @@ export interface Routes {
1659
1659
  created_at: string
1660
1660
  latch_metadata: {
1661
1661
  accessibility_type: string
1662
- name: string
1663
- type: string
1662
+ door_name: string
1663
+ door_type: string
1664
1664
  is_connected: boolean
1665
1665
  } | null
1666
1666
  visionline_metadata: {