@seamapi/types 1.637.0 → 1.639.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.
- package/dist/connect.cjs +3 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -0
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +3 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -2
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -26705,6 +26705,7 @@ export type Routes = {
|
|
|
26705
26705
|
acs_encoders?: {
|
|
26706
26706
|
/** Whether the encoder is removed */
|
|
26707
26707
|
is_removed?: boolean | undefined;
|
|
26708
|
+
/** Hotek-specific metadata associated with the entrance. */
|
|
26708
26709
|
hotek_metadata: {
|
|
26709
26710
|
/** The encoder number determined by the USB port connection. */
|
|
26710
26711
|
encoder_number: string;
|
package/package.json
CHANGED
|
@@ -36726,7 +36726,7 @@ export default {
|
|
|
36726
36726
|
'/acs/systems/report_devices': {
|
|
36727
36727
|
post: {
|
|
36728
36728
|
description:
|
|
36729
|
-
'Reports ACS system
|
|
36729
|
+
'Reports ACS system device status including encoders and entrances.',
|
|
36730
36730
|
operationId: 'acsSystemsReportDevicesPost',
|
|
36731
36731
|
requestBody: {
|
|
36732
36732
|
content: {
|
|
@@ -36739,6 +36739,8 @@ export default {
|
|
|
36739
36739
|
items: {
|
|
36740
36740
|
properties: {
|
|
36741
36741
|
hotek_metadata: {
|
|
36742
|
+
description:
|
|
36743
|
+
'Hotek-specific metadata associated with the entrance.',
|
|
36742
36744
|
properties: {
|
|
36743
36745
|
encoder_number: {
|
|
36744
36746
|
description:
|
|
@@ -36833,7 +36835,7 @@ export default {
|
|
|
36833
36835
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
36834
36836
|
'x-fern-sdk-method-name': 'report_devices',
|
|
36835
36837
|
'x-response-key': null,
|
|
36836
|
-
'x-title': 'Report
|
|
36838
|
+
'x-title': 'Report Devices',
|
|
36837
36839
|
},
|
|
36838
36840
|
},
|
|
36839
36841
|
'/acs/users/add_to_access_group': {
|
|
@@ -31110,6 +31110,7 @@ export type Routes = {
|
|
|
31110
31110
|
| {
|
|
31111
31111
|
/** Whether the encoder is removed */
|
|
31112
31112
|
is_removed?: boolean | undefined
|
|
31113
|
+
/** Hotek-specific metadata associated with the entrance. */
|
|
31113
31114
|
hotek_metadata: {
|
|
31114
31115
|
/** The encoder number determined by the USB port connection. */
|
|
31115
31116
|
encoder_number: string
|