@seamapi/types 1.889.0 → 1.891.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 +71 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -2
- package/dist/index.cjs +71 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +4 -2
- package/lib/seam/connect/models/devices/device-provider.js +6 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +64 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +72 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -2067,8 +2067,10 @@ var DEVICE_PROVIDERS = {
|
|
|
2067
2067
|
SENSI: "sensi",
|
|
2068
2068
|
KEYNEST: "keynest",
|
|
2069
2069
|
KORELOCK: "korelock",
|
|
2070
|
+
KEYINCODE: "keyincode",
|
|
2070
2071
|
DORMAKABA_AMBIANCE: "dormakaba_ambiance",
|
|
2071
2072
|
ULTRALOQ: "ultraloq",
|
|
2073
|
+
SIFELY: "sifely",
|
|
2072
2074
|
RING: "ring",
|
|
2073
2075
|
ICAL: "ical",
|
|
2074
2076
|
LODGIFY: "lodgify",
|
|
@@ -2115,6 +2117,8 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2115
2117
|
"ring",
|
|
2116
2118
|
"first_alert",
|
|
2117
2119
|
"korelock",
|
|
2120
|
+
"keyincode",
|
|
2121
|
+
"sifely",
|
|
2118
2122
|
"omnitec"
|
|
2119
2123
|
],
|
|
2120
2124
|
consumer_smartlocks: [
|
|
@@ -2132,7 +2136,9 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2132
2136
|
"tedee",
|
|
2133
2137
|
"ultraloq",
|
|
2134
2138
|
"dormakaba_oracode",
|
|
2135
|
-
"korelock"
|
|
2139
|
+
"korelock",
|
|
2140
|
+
"keyincode",
|
|
2141
|
+
"sifely"
|
|
2136
2142
|
],
|
|
2137
2143
|
beta: [],
|
|
2138
2144
|
thermostats: ["ecobee", "nest", "sensi", "honeywell_resideo", "first_alert"],
|
|
@@ -22758,8 +22764,10 @@ var openapi = {
|
|
|
22758
22764
|
"sensi",
|
|
22759
22765
|
"keynest",
|
|
22760
22766
|
"korelock",
|
|
22767
|
+
"keyincode",
|
|
22761
22768
|
"dormakaba_ambiance",
|
|
22762
22769
|
"ultraloq",
|
|
22770
|
+
"sifely",
|
|
22763
22771
|
"ring",
|
|
22764
22772
|
"ical",
|
|
22765
22773
|
"lodgify",
|
|
@@ -54424,8 +54432,10 @@ var openapi = {
|
|
|
54424
54432
|
"sensi",
|
|
54425
54433
|
"keynest",
|
|
54426
54434
|
"korelock",
|
|
54435
|
+
"keyincode",
|
|
54427
54436
|
"dormakaba_ambiance",
|
|
54428
54437
|
"ultraloq",
|
|
54438
|
+
"sifely",
|
|
54429
54439
|
"ring",
|
|
54430
54440
|
"ical",
|
|
54431
54441
|
"lodgify",
|
|
@@ -76480,6 +76490,25 @@ var openapi = {
|
|
|
76480
76490
|
description: "Filter spaces by space_key.",
|
|
76481
76491
|
type: "string"
|
|
76482
76492
|
}
|
|
76493
|
+
},
|
|
76494
|
+
{
|
|
76495
|
+
in: "query",
|
|
76496
|
+
name: "parent_space_id",
|
|
76497
|
+
schema: {
|
|
76498
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
76499
|
+
format: "uuid",
|
|
76500
|
+
type: "string",
|
|
76501
|
+
"x-undocumented": "Only used internally."
|
|
76502
|
+
}
|
|
76503
|
+
},
|
|
76504
|
+
{
|
|
76505
|
+
in: "query",
|
|
76506
|
+
name: "parent_space_key",
|
|
76507
|
+
schema: {
|
|
76508
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
76509
|
+
type: "string",
|
|
76510
|
+
"x-undocumented": "Only used internally."
|
|
76511
|
+
}
|
|
76483
76512
|
}
|
|
76484
76513
|
],
|
|
76485
76514
|
responses: {
|
|
@@ -76533,6 +76562,17 @@ var openapi = {
|
|
|
76533
76562
|
"x-draft": "Needs review.",
|
|
76534
76563
|
"x-undocumented": "Only used internally."
|
|
76535
76564
|
},
|
|
76565
|
+
parent_space_id: {
|
|
76566
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
76567
|
+
format: "uuid",
|
|
76568
|
+
type: "string",
|
|
76569
|
+
"x-undocumented": "Only used internally."
|
|
76570
|
+
},
|
|
76571
|
+
parent_space_key: {
|
|
76572
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
76573
|
+
type: "string",
|
|
76574
|
+
"x-undocumented": "Only used internally."
|
|
76575
|
+
},
|
|
76536
76576
|
search: {
|
|
76537
76577
|
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
76538
76578
|
minLength: 1,
|
|
@@ -79084,6 +79124,25 @@ var openapi = {
|
|
|
79084
79124
|
type: "string"
|
|
79085
79125
|
}
|
|
79086
79126
|
},
|
|
79127
|
+
{
|
|
79128
|
+
in: "query",
|
|
79129
|
+
name: "parent_space_id",
|
|
79130
|
+
schema: {
|
|
79131
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
79132
|
+
format: "uuid",
|
|
79133
|
+
type: "string",
|
|
79134
|
+
"x-undocumented": "Only used internally."
|
|
79135
|
+
}
|
|
79136
|
+
},
|
|
79137
|
+
{
|
|
79138
|
+
in: "query",
|
|
79139
|
+
name: "parent_space_key",
|
|
79140
|
+
schema: {
|
|
79141
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
79142
|
+
type: "string",
|
|
79143
|
+
"x-undocumented": "Only used internally."
|
|
79144
|
+
}
|
|
79145
|
+
},
|
|
79087
79146
|
{
|
|
79088
79147
|
in: "query",
|
|
79089
79148
|
name: "limit",
|
|
@@ -79171,6 +79230,17 @@ var openapi = {
|
|
|
79171
79230
|
nullable: true,
|
|
79172
79231
|
type: "string"
|
|
79173
79232
|
},
|
|
79233
|
+
parent_space_id: {
|
|
79234
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
79235
|
+
format: "uuid",
|
|
79236
|
+
type: "string",
|
|
79237
|
+
"x-undocumented": "Only used internally."
|
|
79238
|
+
},
|
|
79239
|
+
parent_space_key: {
|
|
79240
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
79241
|
+
type: "string",
|
|
79242
|
+
"x-undocumented": "Only used internally."
|
|
79243
|
+
},
|
|
79174
79244
|
search: {
|
|
79175
79245
|
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.",
|
|
79176
79246
|
minLength: 1,
|