@seamapi/types 1.443.0 → 1.444.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 +45 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +95 -1
- package/dist/index.cjs +45 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +45 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +51 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
package/dist/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Bridge, BuildingBlockType, Bundle, ClientSession, ConnectWebview, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, RouteRequestBody, RouteRequestParams, RouteResponse, Routes, SeamEvent, SeamEventType, Space, ThermostatSchedule, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, openapi, routes, schemas } from './connect.cjs';
|
|
1
|
+
export { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Bridge, BuildingBlockType, Bundle, ClientSession, ClimatePreset, ConnectWebview, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, RouteRequestBody, RouteRequestParams, RouteResponse, Routes, SeamEvent, SeamEventType, Space, ThermostatDailyProgram, ThermostatSchedule, ThermostatWeeklyProgram, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, openapi, routes, schemas } from './connect.cjs';
|
|
2
2
|
import 'zod';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Bridge, BuildingBlockType, Bundle, ClientSession, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, ConnectWebview, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, SeamEvent, SeamEventType, Space, ThermostatSchedule, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, } from './models/index.js';
|
|
1
|
+
export type { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Bridge, BuildingBlockType, Bundle, ClientSession, ClimatePreset, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, ConnectWebview, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, SeamEvent, SeamEventType, Space, ThermostatDailyProgram, ThermostatSchedule, ThermostatWeeklyProgram, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, } from './models/index.js';
|
|
@@ -17514,6 +17514,21 @@ declare const _default: {
|
|
|
17514
17514
|
format: string;
|
|
17515
17515
|
type: string;
|
|
17516
17516
|
};
|
|
17517
|
+
acs_entrance_id: {
|
|
17518
|
+
description: string;
|
|
17519
|
+
format: string;
|
|
17520
|
+
type: string;
|
|
17521
|
+
};
|
|
17522
|
+
device_id: {
|
|
17523
|
+
description: string;
|
|
17524
|
+
format: string;
|
|
17525
|
+
type: string;
|
|
17526
|
+
};
|
|
17527
|
+
space_id: {
|
|
17528
|
+
description: string;
|
|
17529
|
+
format: string;
|
|
17530
|
+
type: string;
|
|
17531
|
+
};
|
|
17517
17532
|
};
|
|
17518
17533
|
required: string[];
|
|
17519
17534
|
type: string;
|
|
@@ -25629,6 +25629,36 @@ export default {
|
|
|
25629
25629
|
type: 'string',
|
|
25630
25630
|
},
|
|
25631
25631
|
},
|
|
25632
|
+
{
|
|
25633
|
+
in: 'query',
|
|
25634
|
+
name: 'device_id',
|
|
25635
|
+
required: false,
|
|
25636
|
+
schema: {
|
|
25637
|
+
description: 'ID of the device for which you want to retrieve all access methods.',
|
|
25638
|
+
format: 'uuid',
|
|
25639
|
+
type: 'string',
|
|
25640
|
+
},
|
|
25641
|
+
},
|
|
25642
|
+
{
|
|
25643
|
+
in: 'query',
|
|
25644
|
+
name: 'acs_entrance_id',
|
|
25645
|
+
required: false,
|
|
25646
|
+
schema: {
|
|
25647
|
+
description: 'ID of the entrance for which you want to retrieve all access methods.',
|
|
25648
|
+
format: 'uuid',
|
|
25649
|
+
type: 'string',
|
|
25650
|
+
},
|
|
25651
|
+
},
|
|
25652
|
+
{
|
|
25653
|
+
in: 'query',
|
|
25654
|
+
name: 'space_id',
|
|
25655
|
+
required: false,
|
|
25656
|
+
schema: {
|
|
25657
|
+
description: 'ID of the space for which you want to retrieve all access methods.',
|
|
25658
|
+
format: 'uuid',
|
|
25659
|
+
type: 'string',
|
|
25660
|
+
},
|
|
25661
|
+
},
|
|
25632
25662
|
],
|
|
25633
25663
|
responses: {
|
|
25634
25664
|
200: {
|
|
@@ -25679,6 +25709,21 @@ export default {
|
|
|
25679
25709
|
format: 'uuid',
|
|
25680
25710
|
type: 'string',
|
|
25681
25711
|
},
|
|
25712
|
+
acs_entrance_id: {
|
|
25713
|
+
description: 'ID of the entrance for which you want to retrieve all access methods.',
|
|
25714
|
+
format: 'uuid',
|
|
25715
|
+
type: 'string',
|
|
25716
|
+
},
|
|
25717
|
+
device_id: {
|
|
25718
|
+
description: 'ID of the device for which you want to retrieve all access methods.',
|
|
25719
|
+
format: 'uuid',
|
|
25720
|
+
type: 'string',
|
|
25721
|
+
},
|
|
25722
|
+
space_id: {
|
|
25723
|
+
description: 'ID of the space for which you want to retrieve all access methods.',
|
|
25724
|
+
format: 'uuid',
|
|
25725
|
+
type: 'string',
|
|
25726
|
+
},
|
|
25682
25727
|
},
|
|
25683
25728
|
required: ['access_grant_id'],
|
|
25684
25729
|
type: 'object',
|