@seamapi/types 1.545.0 → 1.547.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 +17 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -0
- package/dist/index.cjs +17 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +3 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +35 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +13 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +5 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -2
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.cjs
CHANGED
|
@@ -1770,7 +1770,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1770
1770
|
"smartthings",
|
|
1771
1771
|
"yale",
|
|
1772
1772
|
"nuki",
|
|
1773
|
-
"
|
|
1773
|
+
"salto_ks",
|
|
1774
1774
|
"salto_space",
|
|
1775
1775
|
"minut",
|
|
1776
1776
|
"my_2n",
|
|
@@ -2460,6 +2460,9 @@ var acs_entrance_dormakaba_ambiance_metadata = zod.z.object({
|
|
|
2460
2460
|
var acs_entrance_dormakaba_community_metadata = zod.z.object({
|
|
2461
2461
|
access_point_name: zod.z.string().describe(
|
|
2462
2462
|
"Name of the access point in the dormakaba Community access system."
|
|
2463
|
+
),
|
|
2464
|
+
access_point_profile: zod.z.string().describe(
|
|
2465
|
+
"Type of access point profile in the dormakaba Community access system."
|
|
2463
2466
|
)
|
|
2464
2467
|
}).describe(
|
|
2465
2468
|
"dormakaba Community-specific metadata associated with the entrance."
|
|
@@ -8037,9 +8040,13 @@ var openapi_default = {
|
|
|
8037
8040
|
access_point_name: {
|
|
8038
8041
|
description: "Name of the access point in the dormakaba Community access system.",
|
|
8039
8042
|
type: "string"
|
|
8043
|
+
},
|
|
8044
|
+
access_point_profile: {
|
|
8045
|
+
description: "Type of access point profile in the dormakaba Community access system.",
|
|
8046
|
+
type: "string"
|
|
8040
8047
|
}
|
|
8041
8048
|
},
|
|
8042
|
-
required: ["access_point_name"],
|
|
8049
|
+
required: ["access_point_name", "access_point_profile"],
|
|
8043
8050
|
type: "object"
|
|
8044
8051
|
},
|
|
8045
8052
|
errors: {
|
|
@@ -23200,9 +23207,16 @@ var openapi_default = {
|
|
|
23200
23207
|
access_point_name: {
|
|
23201
23208
|
description: "Name of the access point in the dormakaba Community access system.",
|
|
23202
23209
|
type: "string"
|
|
23210
|
+
},
|
|
23211
|
+
access_point_profile: {
|
|
23212
|
+
description: "Type of access point profile in the dormakaba Community access system.",
|
|
23213
|
+
type: "string"
|
|
23203
23214
|
}
|
|
23204
23215
|
},
|
|
23205
|
-
required: [
|
|
23216
|
+
required: [
|
|
23217
|
+
"access_point_name",
|
|
23218
|
+
"access_point_profile"
|
|
23219
|
+
],
|
|
23206
23220
|
type: "object"
|
|
23207
23221
|
},
|
|
23208
23222
|
errors: {
|