@seamapi/types 1.890.0 → 1.892.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 +66 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -2
- package/dist/index.cjs +66 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
- package/lib/seam/connect/models/devices/device-provider.js +3 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +62 -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 +3 -0
- package/src/lib/seam/connect/openapi.ts +70 -0
- package/src/lib/seam/connect/route-types.ts +10 -0
package/dist/connect.cjs
CHANGED
|
@@ -2070,6 +2070,7 @@ var DEVICE_PROVIDERS = {
|
|
|
2070
2070
|
KEYINCODE: "keyincode",
|
|
2071
2071
|
DORMAKABA_AMBIANCE: "dormakaba_ambiance",
|
|
2072
2072
|
ULTRALOQ: "ultraloq",
|
|
2073
|
+
DUSAW: "dusaw",
|
|
2073
2074
|
SIFELY: "sifely",
|
|
2074
2075
|
RING: "ring",
|
|
2075
2076
|
ICAL: "ical",
|
|
@@ -2119,7 +2120,8 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2119
2120
|
"korelock",
|
|
2120
2121
|
"keyincode",
|
|
2121
2122
|
"sifely",
|
|
2122
|
-
"omnitec"
|
|
2123
|
+
"omnitec",
|
|
2124
|
+
"dusaw"
|
|
2123
2125
|
],
|
|
2124
2126
|
consumer_smartlocks: [
|
|
2125
2127
|
"akiles",
|
|
@@ -2137,6 +2139,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
2137
2139
|
"ultraloq",
|
|
2138
2140
|
"dormakaba_oracode",
|
|
2139
2141
|
"korelock",
|
|
2142
|
+
"dusaw",
|
|
2140
2143
|
"keyincode",
|
|
2141
2144
|
"sifely"
|
|
2142
2145
|
],
|
|
@@ -22767,6 +22770,7 @@ var openapi = {
|
|
|
22767
22770
|
"keyincode",
|
|
22768
22771
|
"dormakaba_ambiance",
|
|
22769
22772
|
"ultraloq",
|
|
22773
|
+
"dusaw",
|
|
22770
22774
|
"sifely",
|
|
22771
22775
|
"ring",
|
|
22772
22776
|
"ical",
|
|
@@ -54435,6 +54439,7 @@ var openapi = {
|
|
|
54435
54439
|
"keyincode",
|
|
54436
54440
|
"dormakaba_ambiance",
|
|
54437
54441
|
"ultraloq",
|
|
54442
|
+
"dusaw",
|
|
54438
54443
|
"sifely",
|
|
54439
54444
|
"ring",
|
|
54440
54445
|
"ical",
|
|
@@ -76490,6 +76495,25 @@ var openapi = {
|
|
|
76490
76495
|
description: "Filter spaces by space_key.",
|
|
76491
76496
|
type: "string"
|
|
76492
76497
|
}
|
|
76498
|
+
},
|
|
76499
|
+
{
|
|
76500
|
+
in: "query",
|
|
76501
|
+
name: "parent_space_id",
|
|
76502
|
+
schema: {
|
|
76503
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
76504
|
+
format: "uuid",
|
|
76505
|
+
type: "string",
|
|
76506
|
+
"x-undocumented": "Only used internally."
|
|
76507
|
+
}
|
|
76508
|
+
},
|
|
76509
|
+
{
|
|
76510
|
+
in: "query",
|
|
76511
|
+
name: "parent_space_key",
|
|
76512
|
+
schema: {
|
|
76513
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
76514
|
+
type: "string",
|
|
76515
|
+
"x-undocumented": "Only used internally."
|
|
76516
|
+
}
|
|
76493
76517
|
}
|
|
76494
76518
|
],
|
|
76495
76519
|
responses: {
|
|
@@ -76543,6 +76567,17 @@ var openapi = {
|
|
|
76543
76567
|
"x-draft": "Needs review.",
|
|
76544
76568
|
"x-undocumented": "Only used internally."
|
|
76545
76569
|
},
|
|
76570
|
+
parent_space_id: {
|
|
76571
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
76572
|
+
format: "uuid",
|
|
76573
|
+
type: "string",
|
|
76574
|
+
"x-undocumented": "Only used internally."
|
|
76575
|
+
},
|
|
76576
|
+
parent_space_key: {
|
|
76577
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
76578
|
+
type: "string",
|
|
76579
|
+
"x-undocumented": "Only used internally."
|
|
76580
|
+
},
|
|
76546
76581
|
search: {
|
|
76547
76582
|
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
76548
76583
|
minLength: 1,
|
|
@@ -79094,6 +79129,25 @@ var openapi = {
|
|
|
79094
79129
|
type: "string"
|
|
79095
79130
|
}
|
|
79096
79131
|
},
|
|
79132
|
+
{
|
|
79133
|
+
in: "query",
|
|
79134
|
+
name: "parent_space_id",
|
|
79135
|
+
schema: {
|
|
79136
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
79137
|
+
format: "uuid",
|
|
79138
|
+
type: "string",
|
|
79139
|
+
"x-undocumented": "Only used internally."
|
|
79140
|
+
}
|
|
79141
|
+
},
|
|
79142
|
+
{
|
|
79143
|
+
in: "query",
|
|
79144
|
+
name: "parent_space_key",
|
|
79145
|
+
schema: {
|
|
79146
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
79147
|
+
type: "string",
|
|
79148
|
+
"x-undocumented": "Only used internally."
|
|
79149
|
+
}
|
|
79150
|
+
},
|
|
79097
79151
|
{
|
|
79098
79152
|
in: "query",
|
|
79099
79153
|
name: "limit",
|
|
@@ -79181,6 +79235,17 @@ var openapi = {
|
|
|
79181
79235
|
nullable: true,
|
|
79182
79236
|
type: "string"
|
|
79183
79237
|
},
|
|
79238
|
+
parent_space_id: {
|
|
79239
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_id`.",
|
|
79240
|
+
format: "uuid",
|
|
79241
|
+
type: "string",
|
|
79242
|
+
"x-undocumented": "Only used internally."
|
|
79243
|
+
},
|
|
79244
|
+
parent_space_key: {
|
|
79245
|
+
description: "Filter spaces to only include those whose parent space has the specified `parent_space_key`.",
|
|
79246
|
+
type: "string",
|
|
79247
|
+
"x-undocumented": "Only used internally."
|
|
79248
|
+
},
|
|
79184
79249
|
search: {
|
|
79185
79250
|
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`.",
|
|
79186
79251
|
minLength: 1,
|