@seamapi/types 1.475.0 → 1.476.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 +5 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +43 -43
- package/dist/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +55 -55
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +11 -11
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +1 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/device.d.ts +7 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +17 -17
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +17 -0
package/dist/connect.cjs
CHANGED
|
@@ -80,8 +80,10 @@ var access_code_code_constraint = zod.z.object({
|
|
|
80
80
|
// Tedee
|
|
81
81
|
"cannot_contain_089",
|
|
82
82
|
// TTLock
|
|
83
|
-
"cannot_contain_0789"
|
|
83
|
+
"cannot_contain_0789",
|
|
84
84
|
// TTLock (for some cylinder devices only)
|
|
85
|
+
"unique_first_four_digits"
|
|
86
|
+
// Schlage
|
|
85
87
|
]).describe(`Code constraint type for access codes.`)
|
|
86
88
|
}).describe(`Code constraint for access codes.`);
|
|
87
89
|
var access_code_name_constraint = zod.z.object({
|
|
@@ -15667,7 +15669,8 @@ var openapi_default = {
|
|
|
15667
15669
|
"no_ascending_or_descending_sequence",
|
|
15668
15670
|
"at_least_three_unique_digits",
|
|
15669
15671
|
"cannot_contain_089",
|
|
15670
|
-
"cannot_contain_0789"
|
|
15672
|
+
"cannot_contain_0789",
|
|
15673
|
+
"unique_first_four_digits"
|
|
15671
15674
|
],
|
|
15672
15675
|
type: "string"
|
|
15673
15676
|
}
|