@seamapi/types 1.616.0 → 1.617.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 +2 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -3
- package/dist/index.cjs +2 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -2
- package/lib/seam/connect/openapi.js +2 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -8
- package/src/lib/seam/connect/route-types.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -97433,7 +97433,6 @@ declare const _default: {
|
|
|
97433
97433
|
type: string;
|
|
97434
97434
|
};
|
|
97435
97435
|
device_type: {
|
|
97436
|
-
enum: string[];
|
|
97437
97436
|
type: string;
|
|
97438
97437
|
};
|
|
97439
97438
|
name: {
|
|
@@ -97547,7 +97546,6 @@ declare const _default: {
|
|
|
97547
97546
|
type: string;
|
|
97548
97547
|
};
|
|
97549
97548
|
device_type: {
|
|
97550
|
-
enum: string[];
|
|
97551
97549
|
type: string;
|
|
97552
97550
|
};
|
|
97553
97551
|
name: {
|
|
@@ -169226,7 +169224,7 @@ type Routes = {
|
|
|
169226
169224
|
parent_partner_resource_key?: string | undefined;
|
|
169227
169225
|
devices: {
|
|
169228
169226
|
device_id: string;
|
|
169229
|
-
device_type:
|
|
169227
|
+
device_type: string;
|
|
169230
169228
|
name: string;
|
|
169231
169229
|
}[];
|
|
169232
169230
|
acs_entrances: {
|
package/dist/index.cjs
CHANGED
|
@@ -56416,10 +56416,7 @@ var openapi_default = {
|
|
|
56416
56416
|
items: {
|
|
56417
56417
|
properties: {
|
|
56418
56418
|
device_id: { format: "uuid", type: "string" },
|
|
56419
|
-
device_type: {
|
|
56420
|
-
enum: ["lock", "thermostat", "sensor"],
|
|
56421
|
-
type: "string"
|
|
56422
|
-
},
|
|
56419
|
+
device_type: { type: "string" },
|
|
56423
56420
|
name: { type: "string" }
|
|
56424
56421
|
},
|
|
56425
56422
|
required: ["device_id", "device_type", "name"],
|
|
@@ -56516,10 +56513,7 @@ var openapi_default = {
|
|
|
56516
56513
|
items: {
|
|
56517
56514
|
properties: {
|
|
56518
56515
|
device_id: { format: "uuid", type: "string" },
|
|
56519
|
-
device_type: {
|
|
56520
|
-
enum: ["lock", "thermostat", "sensor"],
|
|
56521
|
-
type: "string"
|
|
56522
|
-
},
|
|
56516
|
+
device_type: { type: "string" },
|
|
56523
56517
|
name: { type: "string" }
|
|
56524
56518
|
},
|
|
56525
56519
|
required: ["device_id", "device_type", "name"],
|