@seamapi/types 1.53.1 → 1.54.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 +9 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -18
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +9 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -18
- package/lib/seam/connect/unstable/models/acs/user.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/user.js +1 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.js +2 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +9 -3
- package/src/lib/seam/connect/route-types.ts +25 -18
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +2 -2
package/dist/connect.cjs
CHANGED
|
@@ -277,6 +277,7 @@ var openapi_default = {
|
|
|
277
277
|
},
|
|
278
278
|
external_type_display_name: { type: "string" },
|
|
279
279
|
full_name: { type: "string" },
|
|
280
|
+
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
280
281
|
is_suspended: { type: "boolean" },
|
|
281
282
|
phone_number: { nullable: true, type: "string" },
|
|
282
283
|
workspace_id: { format: "uuid", type: "string" }
|
|
@@ -713,11 +714,11 @@ var openapi_default = {
|
|
|
713
714
|
type: "string"
|
|
714
715
|
},
|
|
715
716
|
supports_accessory_keypad: {
|
|
716
|
-
description: "Deprecated
|
|
717
|
+
description: "Deprecated. Use model.accessory_keypad_supported.",
|
|
717
718
|
type: "boolean"
|
|
718
719
|
},
|
|
719
720
|
supports_offline_access_codes: {
|
|
720
|
-
description: "Deprecated
|
|
721
|
+
description: "Deprecated. Use offline_access_codes_enabled.",
|
|
721
722
|
type: "boolean"
|
|
722
723
|
}
|
|
723
724
|
},
|
|
@@ -4745,6 +4746,7 @@ var openapi_default = {
|
|
|
4745
4746
|
},
|
|
4746
4747
|
email_address: { format: "email", type: "string" },
|
|
4747
4748
|
full_name: { type: "string" },
|
|
4749
|
+
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
4748
4750
|
phone_number: { nullable: true, type: "string" }
|
|
4749
4751
|
},
|
|
4750
4752
|
required: ["acs_user_id"],
|
|
@@ -4793,6 +4795,7 @@ var openapi_default = {
|
|
|
4793
4795
|
},
|
|
4794
4796
|
email_address: { format: "email", type: "string" },
|
|
4795
4797
|
full_name: { type: "string" },
|
|
4798
|
+
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
4796
4799
|
phone_number: { nullable: true, type: "string" }
|
|
4797
4800
|
},
|
|
4798
4801
|
required: ["acs_user_id"],
|
|
@@ -7566,7 +7569,10 @@ var openapi_default = {
|
|
|
7566
7569
|
content: {
|
|
7567
7570
|
"application/json": {
|
|
7568
7571
|
schema: {
|
|
7569
|
-
properties: {
|
|
7572
|
+
properties: {
|
|
7573
|
+
device_id: { format: "uuid", type: "string" },
|
|
7574
|
+
is_programmed: { type: "boolean" }
|
|
7575
|
+
},
|
|
7570
7576
|
required: ["device_id"],
|
|
7571
7577
|
type: "object"
|
|
7572
7578
|
}
|