@seamapi/types 1.138.0 → 1.139.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 +27 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +117 -5
- package/lib/seam/connect/openapi.d.ts +28 -4
- package/lib/seam/connect/openapi.js +27 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +89 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +66 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js +16 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +21 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +33 -1
- package/src/lib/seam/connect/route-types.ts +107 -1
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +20 -1
package/dist/connect.cjs
CHANGED
|
@@ -692,6 +692,17 @@ var openapi_default = {
|
|
|
692
692
|
allOf: [
|
|
693
693
|
{
|
|
694
694
|
properties: {
|
|
695
|
+
accessory_keypad: {
|
|
696
|
+
description: "Represents the accessory keypad state.",
|
|
697
|
+
properties: {
|
|
698
|
+
is_connected: {
|
|
699
|
+
description: "Indicates if the accessory_keypad is connected to the device.",
|
|
700
|
+
type: "boolean"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
required: ["is_connected"],
|
|
704
|
+
type: "object"
|
|
705
|
+
},
|
|
695
706
|
appearance: {
|
|
696
707
|
properties: {
|
|
697
708
|
name: {
|
|
@@ -743,10 +754,18 @@ var openapi_default = {
|
|
|
743
754
|
description: "Indicates whether the device supports an accessory keypad.",
|
|
744
755
|
type: "boolean"
|
|
745
756
|
},
|
|
757
|
+
can_connect_accessory_keypad: {
|
|
758
|
+
description: "Indicates whether the device can connect a accessory keypad.",
|
|
759
|
+
type: "boolean"
|
|
760
|
+
},
|
|
746
761
|
display_name: {
|
|
747
762
|
description: "Display name of the device model.",
|
|
748
763
|
type: "string"
|
|
749
764
|
},
|
|
765
|
+
has_built_in_keypad: {
|
|
766
|
+
description: "Indicates whether the device has a built in accessory keypad.",
|
|
767
|
+
type: "boolean"
|
|
768
|
+
},
|
|
750
769
|
manufacturer_display_name: {
|
|
751
770
|
description: "Display name that corresponds to the manufacturer-specific terminology for the device.",
|
|
752
771
|
type: "string"
|
|
@@ -2225,10 +2244,18 @@ var openapi_default = {
|
|
|
2225
2244
|
description: "Indicates whether the device supports an accessory keypad.",
|
|
2226
2245
|
type: "boolean"
|
|
2227
2246
|
},
|
|
2247
|
+
can_connect_accessory_keypad: {
|
|
2248
|
+
description: "Indicates whether the device can connect a accessory keypad.",
|
|
2249
|
+
type: "boolean"
|
|
2250
|
+
},
|
|
2228
2251
|
display_name: {
|
|
2229
2252
|
description: "Display name of the device model.",
|
|
2230
2253
|
type: "string"
|
|
2231
2254
|
},
|
|
2255
|
+
has_built_in_keypad: {
|
|
2256
|
+
description: "Indicates whether the device has a built in accessory keypad.",
|
|
2257
|
+
type: "boolean"
|
|
2258
|
+
},
|
|
2232
2259
|
manufacturer_display_name: {
|
|
2233
2260
|
description: "Display name that corresponds to the manufacturer-specific terminology for the device.",
|
|
2234
2261
|
type: "string"
|
|
@@ -4213,7 +4240,6 @@ var openapi_default = {
|
|
|
4213
4240
|
acs_user_id: { format: "uuid", type: "string" },
|
|
4214
4241
|
code: { pattern: "^\\d+$", type: "string" },
|
|
4215
4242
|
ends_at: { format: "date-time", type: "string" },
|
|
4216
|
-
external_type: { enum: ["visionline_card"], type: "string" },
|
|
4217
4243
|
is_multi_phone_sync_credential: {
|
|
4218
4244
|
default: false,
|
|
4219
4245
|
type: "boolean"
|