@seamapi/types 1.126.0 → 1.128.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 +43 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -7
- package/lib/seam/connect/openapi.d.ts +6 -3
- package/lib/seam/connect/openapi.js +43 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +43 -3
- package/src/lib/seam/connect/route-types.ts +46 -12
package/dist/connect.cjs
CHANGED
|
@@ -1730,7 +1730,47 @@ var openapi_default = {
|
|
|
1730
1730
|
},
|
|
1731
1731
|
device_provider: {
|
|
1732
1732
|
properties: {
|
|
1733
|
-
device_provider_name: {
|
|
1733
|
+
device_provider_name: {
|
|
1734
|
+
enum: [
|
|
1735
|
+
"akuvox",
|
|
1736
|
+
"august",
|
|
1737
|
+
"avigilon_alta",
|
|
1738
|
+
"brivo",
|
|
1739
|
+
"butterflymx",
|
|
1740
|
+
"schlage",
|
|
1741
|
+
"smartthings",
|
|
1742
|
+
"yale",
|
|
1743
|
+
"genie",
|
|
1744
|
+
"doorking",
|
|
1745
|
+
"salto",
|
|
1746
|
+
"lockly",
|
|
1747
|
+
"ttlock",
|
|
1748
|
+
"linear",
|
|
1749
|
+
"noiseaware",
|
|
1750
|
+
"nuki",
|
|
1751
|
+
"seam_relay_admin",
|
|
1752
|
+
"igloo",
|
|
1753
|
+
"kwikset",
|
|
1754
|
+
"minut",
|
|
1755
|
+
"my_2n",
|
|
1756
|
+
"controlbyweb",
|
|
1757
|
+
"nest",
|
|
1758
|
+
"igloohome",
|
|
1759
|
+
"ecobee",
|
|
1760
|
+
"hubitat",
|
|
1761
|
+
"four_suites",
|
|
1762
|
+
"dormakaba_oracode",
|
|
1763
|
+
"pti",
|
|
1764
|
+
"wyze",
|
|
1765
|
+
"seam_passport",
|
|
1766
|
+
"visionline",
|
|
1767
|
+
"assa_abloy_credential_service",
|
|
1768
|
+
"seam_bridge",
|
|
1769
|
+
"tedee",
|
|
1770
|
+
"honeywell"
|
|
1771
|
+
],
|
|
1772
|
+
type: "string"
|
|
1773
|
+
},
|
|
1734
1774
|
display_name: { type: "string" },
|
|
1735
1775
|
image_url: { type: "string" },
|
|
1736
1776
|
provider_categories: {
|
|
@@ -8507,6 +8547,7 @@ var openapi_default = {
|
|
|
8507
8547
|
},
|
|
8508
8548
|
type: "array"
|
|
8509
8549
|
},
|
|
8550
|
+
limit: { default: 500, nullable: true, type: "number" },
|
|
8510
8551
|
since: { type: "string" }
|
|
8511
8552
|
},
|
|
8512
8553
|
type: "object"
|
|
@@ -8524,10 +8565,9 @@ var openapi_default = {
|
|
|
8524
8565
|
items: { $ref: "#/components/schemas/event" },
|
|
8525
8566
|
type: "array"
|
|
8526
8567
|
},
|
|
8527
|
-
message: { type: "string" },
|
|
8528
8568
|
ok: { type: "boolean" }
|
|
8529
8569
|
},
|
|
8530
|
-
required: ["ok"],
|
|
8570
|
+
required: ["events", "ok"],
|
|
8531
8571
|
type: "object"
|
|
8532
8572
|
}
|
|
8533
8573
|
}
|