@seamapi/types 1.524.0 → 1.526.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 +19 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +110 -45
- package/dist/index.cjs +19 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +110 -55
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -5
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +14 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -5
- package/lib/seam/connect/openapi.d.ts +6 -1
- package/lib/seam/connect/openapi.js +14 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +52 -18
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +15 -3
- package/src/lib/seam/connect/route-types.ts +52 -18
package/dist/connect.cjs
CHANGED
|
@@ -821,8 +821,11 @@ var device_metadata = zod.z.object({
|
|
|
821
821
|
door_name: zod.z.string().describe(`Door name for a Genie device.`)
|
|
822
822
|
}).describe(`Metadata for a Genie device.`),
|
|
823
823
|
brivo_metadata: zod.z.object({
|
|
824
|
-
device_name: zod.z.string().describe(`Device name for a Brivo device.`)
|
|
825
|
-
|
|
824
|
+
device_name: zod.z.string().describe(`Device name for a Brivo device.`),
|
|
825
|
+
activation_enabled: zod.z.boolean().describe(
|
|
826
|
+
`Indicates whether the Brivo access point has activation (remote unlock) enabled.`
|
|
827
|
+
)
|
|
828
|
+
}).partial().describe(`Metadata for a Brivo device.`),
|
|
826
829
|
igloo_metadata: zod.z.object({
|
|
827
830
|
device_id: zod.z.string().describe(`Device ID for an igloo device.`),
|
|
828
831
|
bridge_id: zod.z.string().describe(`Bridge ID for an igloo device.`),
|
|
@@ -14763,12 +14766,15 @@ var openapi_default = {
|
|
|
14763
14766
|
brivo_metadata: {
|
|
14764
14767
|
description: "Metadata for a Brivo device.",
|
|
14765
14768
|
properties: {
|
|
14769
|
+
activation_enabled: {
|
|
14770
|
+
description: "Indicates whether the Brivo access point has activation (remote unlock) enabled.",
|
|
14771
|
+
type: "boolean"
|
|
14772
|
+
},
|
|
14766
14773
|
device_name: {
|
|
14767
14774
|
description: "Device name for a Brivo device.",
|
|
14768
14775
|
type: "string"
|
|
14769
14776
|
}
|
|
14770
14777
|
},
|
|
14771
|
-
required: ["device_name"],
|
|
14772
14778
|
type: "object"
|
|
14773
14779
|
},
|
|
14774
14780
|
controlbyweb_metadata: {
|
|
@@ -49441,7 +49447,11 @@ var openapi_default = {
|
|
|
49441
49447
|
automation_runs: {
|
|
49442
49448
|
items: {
|
|
49443
49449
|
properties: {
|
|
49444
|
-
automation_id: {
|
|
49450
|
+
automation_id: {
|
|
49451
|
+
format: "uuid",
|
|
49452
|
+
nullable: true,
|
|
49453
|
+
type: "string"
|
|
49454
|
+
},
|
|
49445
49455
|
automation_result: {
|
|
49446
49456
|
properties: {
|
|
49447
49457
|
actions: {
|
|
@@ -49590,7 +49600,11 @@ var openapi_default = {
|
|
|
49590
49600
|
automation_runs: {
|
|
49591
49601
|
items: {
|
|
49592
49602
|
properties: {
|
|
49593
|
-
automation_id: {
|
|
49603
|
+
automation_id: {
|
|
49604
|
+
format: "uuid",
|
|
49605
|
+
nullable: true,
|
|
49606
|
+
type: "string"
|
|
49607
|
+
},
|
|
49594
49608
|
automation_result: {
|
|
49595
49609
|
properties: {
|
|
49596
49610
|
actions: {
|