@seamapi/types 1.264.1 → 1.264.2
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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +56 -27
- package/lib/seam/connect/models/acs/acs-credential.d.ts +3 -3
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +7 -7
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +7 -7
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -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 +4 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +33 -20
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +33 -20
package/dist/connect.cjs
CHANGED
|
@@ -648,7 +648,11 @@ var device_metadata = zod.z.object({
|
|
|
648
648
|
}),
|
|
649
649
|
akiles_metadata: zod.z.object({
|
|
650
650
|
gadget_name: zod.z.string(),
|
|
651
|
-
gadget_id: zod.z.string()
|
|
651
|
+
gadget_id: zod.z.string(),
|
|
652
|
+
/**
|
|
653
|
+
* Group ID to add users to for this device
|
|
654
|
+
*/
|
|
655
|
+
_member_group_id: zod.z.string().optional()
|
|
652
656
|
})
|
|
653
657
|
}).partial();
|
|
654
658
|
var LOCK_DEVICE_TYPE = {
|
|
@@ -1218,7 +1222,7 @@ var unmanaged_acs_credential = common_acs_credential.merge(
|
|
|
1218
1222
|
})
|
|
1219
1223
|
);
|
|
1220
1224
|
var acs_credential_on_encoder = zod.z.object({
|
|
1221
|
-
created_at: zod.z.string().datetime().describe("Date and time the credential was created."),
|
|
1225
|
+
created_at: zod.z.string().datetime().nullable().describe("Date and time the credential was created."),
|
|
1222
1226
|
is_issued: zod.z.boolean().nullable(),
|
|
1223
1227
|
starts_at: zod.z.string().datetime().nullable().describe("Date and time the credential will become useable."),
|
|
1224
1228
|
ends_at: zod.z.string().datetime().nullable().describe("Date and time the credential will stop being useable."),
|
|
@@ -3709,6 +3713,7 @@ var openapi_default = {
|
|
|
3709
3713
|
created_at: {
|
|
3710
3714
|
description: "Date and time the credential was created.",
|
|
3711
3715
|
format: "date-time",
|
|
3716
|
+
nullable: true,
|
|
3712
3717
|
type: "string"
|
|
3713
3718
|
},
|
|
3714
3719
|
ends_at: {
|
|
@@ -5712,6 +5717,7 @@ var openapi_default = {
|
|
|
5712
5717
|
properties: {
|
|
5713
5718
|
akiles_metadata: {
|
|
5714
5719
|
properties: {
|
|
5720
|
+
_member_group_id: { type: "string" },
|
|
5715
5721
|
gadget_id: { type: "string" },
|
|
5716
5722
|
gadget_name: { type: "string" }
|
|
5717
5723
|
},
|