@seamapi/types 1.690.0 → 1.691.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 +49 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +253 -0
- package/dist/index.cjs +49 -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 +9 -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 +42 -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 +12 -0
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +160 -0
package/dist/connect.cjs
CHANGED
|
@@ -1422,6 +1422,11 @@ var lockly_time_zone_not_configured = common_device_warning.extend({
|
|
|
1422
1422
|
}).describe(
|
|
1423
1423
|
"Indicates that Seam detected that the Lockly device does not have a time zone configured. Time-bound codes may not work as expected."
|
|
1424
1424
|
);
|
|
1425
|
+
var ultraloq_time_zone_unknown = common_device_warning.extend({
|
|
1426
|
+
warning_code: zod.z.literal("ultraloq_time_zone_unknown").describe(warning_code_description2)
|
|
1427
|
+
}).describe(
|
|
1428
|
+
"Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes."
|
|
1429
|
+
);
|
|
1425
1430
|
var unknown_issue_with_phone = common_device_warning.extend({
|
|
1426
1431
|
warning_code: zod.z.literal("unknown_issue_with_phone").describe(warning_code_description2)
|
|
1427
1432
|
}).describe(`
|
|
@@ -1471,6 +1476,7 @@ var device_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
1471
1476
|
salto_ks_subscription_limit_almost_reached2,
|
|
1472
1477
|
unknown_issue_with_phone,
|
|
1473
1478
|
lockly_time_zone_not_configured,
|
|
1479
|
+
ultraloq_time_zone_unknown,
|
|
1474
1480
|
hub_required_for_addtional_capabilities,
|
|
1475
1481
|
keynest_unsupported_locker,
|
|
1476
1482
|
accessory_keypad_setup_required
|
|
@@ -1495,6 +1501,7 @@ zod.z.object({
|
|
|
1495
1501
|
salto_ks_subscription_limit_almost_reached: salto_ks_subscription_limit_almost_reached2.optional().nullable(),
|
|
1496
1502
|
unknown_issue_with_phone: unknown_issue_with_phone.optional().nullable(),
|
|
1497
1503
|
lockly_time_zone_not_configured: lockly_time_zone_not_configured.optional().nullable(),
|
|
1504
|
+
ultraloq_time_zone_unknown: ultraloq_time_zone_unknown.optional().nullable(),
|
|
1498
1505
|
hub_required_for_addtional_capabilities: hub_required_for_addtional_capabilities.optional().nullable(),
|
|
1499
1506
|
keynest_unsupported_locker: keynest_unsupported_locker.optional().nullable(),
|
|
1500
1507
|
accessory_keypad_setup_required: accessory_keypad_setup_required.optional().nullable()
|
|
@@ -17773,6 +17780,27 @@ var openapi_default = {
|
|
|
17773
17780
|
required: ["message", "created_at", "warning_code"],
|
|
17774
17781
|
type: "object"
|
|
17775
17782
|
},
|
|
17783
|
+
{
|
|
17784
|
+
description: "Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.",
|
|
17785
|
+
properties: {
|
|
17786
|
+
created_at: {
|
|
17787
|
+
description: "Date and time at which Seam created the warning.",
|
|
17788
|
+
format: "date-time",
|
|
17789
|
+
type: "string"
|
|
17790
|
+
},
|
|
17791
|
+
message: {
|
|
17792
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
17793
|
+
type: "string"
|
|
17794
|
+
},
|
|
17795
|
+
warning_code: {
|
|
17796
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
17797
|
+
enum: ["ultraloq_time_zone_unknown"],
|
|
17798
|
+
type: "string"
|
|
17799
|
+
}
|
|
17800
|
+
},
|
|
17801
|
+
required: ["message", "created_at", "warning_code"],
|
|
17802
|
+
type: "object"
|
|
17803
|
+
},
|
|
17776
17804
|
{
|
|
17777
17805
|
description: "Indicates that a hub or relay must be connected to unlock additional capabilities such as remote unlock.",
|
|
17778
17806
|
properties: {
|
|
@@ -29204,6 +29232,27 @@ var openapi_default = {
|
|
|
29204
29232
|
required: ["message", "created_at", "warning_code"],
|
|
29205
29233
|
type: "object"
|
|
29206
29234
|
},
|
|
29235
|
+
{
|
|
29236
|
+
description: "Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.",
|
|
29237
|
+
properties: {
|
|
29238
|
+
created_at: {
|
|
29239
|
+
description: "Date and time at which Seam created the warning.",
|
|
29240
|
+
format: "date-time",
|
|
29241
|
+
type: "string"
|
|
29242
|
+
},
|
|
29243
|
+
message: {
|
|
29244
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
29245
|
+
type: "string"
|
|
29246
|
+
},
|
|
29247
|
+
warning_code: {
|
|
29248
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
29249
|
+
enum: ["ultraloq_time_zone_unknown"],
|
|
29250
|
+
type: "string"
|
|
29251
|
+
}
|
|
29252
|
+
},
|
|
29253
|
+
required: ["message", "created_at", "warning_code"],
|
|
29254
|
+
type: "object"
|
|
29255
|
+
},
|
|
29207
29256
|
{
|
|
29208
29257
|
description: "Indicates that a hub or relay must be connected to unlock additional capabilities such as remote unlock.",
|
|
29209
29258
|
properties: {
|