@seamapi/types 1.817.0 → 1.818.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 +54 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +253 -0
- package/dist/index.cjs +54 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +12 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/openapi.js +44 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +140 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +14 -0
- package/src/lib/seam/connect/openapi.ts +52 -0
- package/src/lib/seam/connect/route-types.ts +160 -0
package/dist/connect.cjs
CHANGED
|
@@ -1429,6 +1429,14 @@ var salto_ks_subscription_limit_almost_reached2 = common_device_warning.extend({
|
|
|
1429
1429
|
}).describe(
|
|
1430
1430
|
"Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Increase your subscription limit or delete some users from your site."
|
|
1431
1431
|
);
|
|
1432
|
+
var salto_ks_lock_access_code_support_removed = common_device_warning.extend({
|
|
1433
|
+
warning_code: zod.z.literal("salto_ks_lock_access_code_support_removed").describe(warning_code_description2)
|
|
1434
|
+
}).describe(`
|
|
1435
|
+
---
|
|
1436
|
+
variant_group_key: access_codes
|
|
1437
|
+
---
|
|
1438
|
+
Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.
|
|
1439
|
+
`);
|
|
1432
1440
|
var wyze_device_missing_gateway = common_device_warning.extend({
|
|
1433
1441
|
warning_code: zod.z.literal("wyze_device_missing_gateway").describe(warning_code_description2)
|
|
1434
1442
|
}).describe(`
|
|
@@ -1557,6 +1565,7 @@ var device_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
1557
1565
|
salto_ks_office_mode,
|
|
1558
1566
|
salto_ks_privacy_mode,
|
|
1559
1567
|
salto_ks_subscription_limit_almost_reached2,
|
|
1568
|
+
salto_ks_lock_access_code_support_removed,
|
|
1560
1569
|
unknown_issue_with_phone,
|
|
1561
1570
|
lockly_time_zone_not_configured,
|
|
1562
1571
|
ultraloq_time_zone_unknown,
|
|
@@ -1585,6 +1594,7 @@ zod.z.object({
|
|
|
1585
1594
|
salto_ks_office_mode: salto_ks_office_mode.optional().nullable(),
|
|
1586
1595
|
salto_ks_privacy_mode: salto_ks_privacy_mode.optional().nullable(),
|
|
1587
1596
|
salto_ks_subscription_limit_almost_reached: salto_ks_subscription_limit_almost_reached2.optional().nullable(),
|
|
1597
|
+
salto_ks_lock_access_code_support_removed: salto_ks_lock_access_code_support_removed.optional().nullable(),
|
|
1588
1598
|
unknown_issue_with_phone: unknown_issue_with_phone.optional().nullable(),
|
|
1589
1599
|
lockly_time_zone_not_configured: lockly_time_zone_not_configured.optional().nullable(),
|
|
1590
1600
|
ultraloq_time_zone_unknown: ultraloq_time_zone_unknown.optional().nullable(),
|
|
@@ -20408,6 +20418,28 @@ var openapi_default = {
|
|
|
20408
20418
|
required: ["message", "created_at", "warning_code"],
|
|
20409
20419
|
type: "object"
|
|
20410
20420
|
},
|
|
20421
|
+
{
|
|
20422
|
+
description: "Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.",
|
|
20423
|
+
properties: {
|
|
20424
|
+
created_at: {
|
|
20425
|
+
description: "Date and time at which Seam created the warning.",
|
|
20426
|
+
format: "date-time",
|
|
20427
|
+
type: "string"
|
|
20428
|
+
},
|
|
20429
|
+
message: {
|
|
20430
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
20431
|
+
type: "string"
|
|
20432
|
+
},
|
|
20433
|
+
warning_code: {
|
|
20434
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
20435
|
+
enum: ["salto_ks_lock_access_code_support_removed"],
|
|
20436
|
+
type: "string"
|
|
20437
|
+
}
|
|
20438
|
+
},
|
|
20439
|
+
required: ["message", "created_at", "warning_code"],
|
|
20440
|
+
type: "object",
|
|
20441
|
+
"x-variant-group-key": "access_codes"
|
|
20442
|
+
},
|
|
20411
20443
|
{
|
|
20412
20444
|
description: "Indicates that an unknown issue occurred while syncing the state of the phone with the provider. This issue may affect the proper functioning of the phone.",
|
|
20413
20445
|
properties: {
|
|
@@ -34631,6 +34663,28 @@ var openapi_default = {
|
|
|
34631
34663
|
required: ["message", "created_at", "warning_code"],
|
|
34632
34664
|
type: "object"
|
|
34633
34665
|
},
|
|
34666
|
+
{
|
|
34667
|
+
description: "Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.",
|
|
34668
|
+
properties: {
|
|
34669
|
+
created_at: {
|
|
34670
|
+
description: "Date and time at which Seam created the warning.",
|
|
34671
|
+
format: "date-time",
|
|
34672
|
+
type: "string"
|
|
34673
|
+
},
|
|
34674
|
+
message: {
|
|
34675
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34676
|
+
type: "string"
|
|
34677
|
+
},
|
|
34678
|
+
warning_code: {
|
|
34679
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34680
|
+
enum: ["salto_ks_lock_access_code_support_removed"],
|
|
34681
|
+
type: "string"
|
|
34682
|
+
}
|
|
34683
|
+
},
|
|
34684
|
+
required: ["message", "created_at", "warning_code"],
|
|
34685
|
+
type: "object",
|
|
34686
|
+
"x-variant-group-key": "access_codes"
|
|
34687
|
+
},
|
|
34634
34688
|
{
|
|
34635
34689
|
description: "Indicates that an unknown issue occurred while syncing the state of the phone with the provider. This issue may affect the proper functioning of the phone.",
|
|
34636
34690
|
properties: {
|