@seamapi/types 1.286.3 → 1.287.1
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 +4 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +29 -34
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +3 -30
- package/lib/seam/connect/openapi.js +2 -19
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +2 -19
- package/src/lib/seam/connect/route-types.ts +14 -4
package/dist/connect.cjs
CHANGED
|
@@ -667,6 +667,7 @@ var device_metadata = zod.z.object({
|
|
|
667
667
|
akiles_metadata: zod.z.object({
|
|
668
668
|
gadget_name: zod.z.string(),
|
|
669
669
|
gadget_id: zod.z.string(),
|
|
670
|
+
product_name: zod.z.string(),
|
|
670
671
|
/**
|
|
671
672
|
* Group ID to add users to for this device
|
|
672
673
|
*/
|
|
@@ -6518,9 +6519,10 @@ var openapi_default = {
|
|
|
6518
6519
|
properties: {
|
|
6519
6520
|
_member_group_id: { type: "string" },
|
|
6520
6521
|
gadget_id: { type: "string" },
|
|
6521
|
-
gadget_name: { type: "string" }
|
|
6522
|
+
gadget_name: { type: "string" },
|
|
6523
|
+
product_name: { type: "string" }
|
|
6522
6524
|
},
|
|
6523
|
-
required: ["gadget_name", "gadget_id"],
|
|
6525
|
+
required: ["gadget_name", "gadget_id", "product_name"],
|
|
6524
6526
|
type: "object"
|
|
6525
6527
|
},
|
|
6526
6528
|
assa_abloy_vostio_metadata: {
|
|
@@ -9472,18 +9474,9 @@ var openapi_default = {
|
|
|
9472
9474
|
"application/json": {
|
|
9473
9475
|
schema: {
|
|
9474
9476
|
properties: {
|
|
9475
|
-
allow_external_modification: { type: "boolean" },
|
|
9476
|
-
code: {
|
|
9477
|
-
maxLength: 9,
|
|
9478
|
-
minLength: 4,
|
|
9479
|
-
pattern: "^\\d+$",
|
|
9480
|
-
type: "string"
|
|
9481
|
-
},
|
|
9482
9477
|
common_code_key: { type: "string" },
|
|
9483
9478
|
ends_at: { type: "string" },
|
|
9484
|
-
is_external_modification_allowed: { type: "boolean" },
|
|
9485
9479
|
name: { type: "string" },
|
|
9486
|
-
prefer_native_scheduling: { type: "boolean" },
|
|
9487
9480
|
starts_at: { type: "string" }
|
|
9488
9481
|
},
|
|
9489
9482
|
required: ["common_code_key"],
|
|
@@ -9525,18 +9518,9 @@ var openapi_default = {
|
|
|
9525
9518
|
"application/json": {
|
|
9526
9519
|
schema: {
|
|
9527
9520
|
properties: {
|
|
9528
|
-
allow_external_modification: { type: "boolean" },
|
|
9529
|
-
code: {
|
|
9530
|
-
maxLength: 9,
|
|
9531
|
-
minLength: 4,
|
|
9532
|
-
pattern: "^\\d+$",
|
|
9533
|
-
type: "string"
|
|
9534
|
-
},
|
|
9535
9521
|
common_code_key: { type: "string" },
|
|
9536
9522
|
ends_at: { type: "string" },
|
|
9537
|
-
is_external_modification_allowed: { type: "boolean" },
|
|
9538
9523
|
name: { type: "string" },
|
|
9539
|
-
prefer_native_scheduling: { type: "boolean" },
|
|
9540
9524
|
starts_at: { type: "string" }
|
|
9541
9525
|
},
|
|
9542
9526
|
required: ["common_code_key"],
|