@seamapi/types 1.156.0 → 1.157.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.
- package/dist/connect.cjs +15 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +26 -22
- package/lib/seam/connect/models/acs/entrance.d.ts +16 -16
- package/lib/seam/connect/models/acs/entrance.js +2 -2
- package/lib/seam/connect/models/acs/entrance.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +20 -16
- package/lib/seam/connect/openapi.js +13 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/entrance.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +13 -8
- package/src/lib/seam/connect/route-types.ts +6 -6
|
@@ -1106,8 +1106,8 @@ export interface Routes {
|
|
|
1106
1106
|
created_at: string;
|
|
1107
1107
|
latch_metadata: {
|
|
1108
1108
|
accessibility_type: string;
|
|
1109
|
-
|
|
1110
|
-
|
|
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
|
-
|
|
1155
|
-
|
|
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
|
-
|
|
1463
|
-
|
|
1462
|
+
door_name: string;
|
|
1463
|
+
door_type: string;
|
|
1464
1464
|
is_connected: boolean;
|
|
1465
1465
|
} | null;
|
|
1466
1466
|
visionline_metadata: {
|
package/package.json
CHANGED
|
@@ -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: [
|
|
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: {
|
|
@@ -7312,9 +7317,10 @@ export default {
|
|
|
7312
7317
|
401: { description: 'Unauthorized' },
|
|
7313
7318
|
},
|
|
7314
7319
|
security: [
|
|
7315
|
-
{
|
|
7316
|
-
{
|
|
7317
|
-
{
|
|
7320
|
+
{ client_session: [] },
|
|
7321
|
+
{ pat_with_workspace: [] },
|
|
7322
|
+
{ console_session: [] },
|
|
7323
|
+
{ api_key: [] },
|
|
7318
7324
|
],
|
|
7319
7325
|
summary: '/devices/unmanaged/get',
|
|
7320
7326
|
tags: ['/devices'],
|
|
@@ -9477,7 +9483,6 @@ export default {
|
|
|
9477
9483
|
tags: ['/thermostats'],
|
|
9478
9484
|
'x-fern-sdk-group-name': ['thermostats', 'climate_setting_schedules'],
|
|
9479
9485
|
'x-fern-sdk-method-name': 'update',
|
|
9480
|
-
'x-fern-sdk-return-value': 'climate_setting_schedule',
|
|
9481
9486
|
},
|
|
9482
9487
|
put: {
|
|
9483
9488
|
operationId: 'thermostatsClimateSettingSchedulesUpdatePut',
|
|
@@ -11711,7 +11716,7 @@ export default {
|
|
|
11711
11716
|
tags: ['/workspaces'],
|
|
11712
11717
|
'x-fern-sdk-group-name': ['workspaces'],
|
|
11713
11718
|
'x-fern-sdk-method-name': 'reset_sandbox',
|
|
11714
|
-
'x-fern-sdk-return-value': '
|
|
11719
|
+
'x-fern-sdk-return-value': 'action_attempt',
|
|
11715
11720
|
},
|
|
11716
11721
|
},
|
|
11717
11722
|
},
|
|
@@ -1207,8 +1207,8 @@ export interface Routes {
|
|
|
1207
1207
|
created_at: string
|
|
1208
1208
|
latch_metadata: {
|
|
1209
1209
|
accessibility_type: string
|
|
1210
|
-
|
|
1211
|
-
|
|
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
|
-
|
|
1263
|
-
|
|
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
|
-
|
|
1663
|
-
|
|
1662
|
+
door_name: string
|
|
1663
|
+
door_type: string
|
|
1664
1664
|
is_connected: boolean
|
|
1665
1665
|
} | null
|
|
1666
1666
|
visionline_metadata: {
|