@seamapi/types 1.692.0 → 1.693.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 +7 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -49
- package/dist/index.cjs +7 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -14
- package/lib/seam/connect/models/devices/device.d.ts +16 -16
- package/lib/seam/connect/models/devices/device.js +4 -4
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
- package/lib/seam/connect/openapi.js +3 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -22
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +5 -5
- package/src/lib/seam/connect/openapi.ts +3 -7
- package/src/lib/seam/connect/route-types.ts +22 -22
package/dist/connect.cjs
CHANGED
|
@@ -1435,8 +1435,8 @@ var unknown_issue_with_phone = common_device_warning.extend({
|
|
|
1435
1435
|
---
|
|
1436
1436
|
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.
|
|
1437
1437
|
`);
|
|
1438
|
-
var
|
|
1439
|
-
warning_code: zod.z.literal("
|
|
1438
|
+
var hub_required_for_additional_capabilities = common_device_warning.extend({
|
|
1439
|
+
warning_code: zod.z.literal("hub_required_for_additional_capabilities").describe(warning_code_description2)
|
|
1440
1440
|
}).describe(`
|
|
1441
1441
|
---
|
|
1442
1442
|
variant_group_key: locks
|
|
@@ -1477,7 +1477,7 @@ var device_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
1477
1477
|
unknown_issue_with_phone,
|
|
1478
1478
|
lockly_time_zone_not_configured,
|
|
1479
1479
|
ultraloq_time_zone_unknown,
|
|
1480
|
-
|
|
1480
|
+
hub_required_for_additional_capabilities,
|
|
1481
1481
|
keynest_unsupported_locker,
|
|
1482
1482
|
accessory_keypad_setup_required
|
|
1483
1483
|
]);
|
|
@@ -1502,7 +1502,7 @@ zod.z.object({
|
|
|
1502
1502
|
unknown_issue_with_phone: unknown_issue_with_phone.optional().nullable(),
|
|
1503
1503
|
lockly_time_zone_not_configured: lockly_time_zone_not_configured.optional().nullable(),
|
|
1504
1504
|
ultraloq_time_zone_unknown: ultraloq_time_zone_unknown.optional().nullable(),
|
|
1505
|
-
|
|
1505
|
+
hub_required_for_additional_capabilities: hub_required_for_additional_capabilities.optional().nullable(),
|
|
1506
1506
|
keynest_unsupported_locker: keynest_unsupported_locker.optional().nullable(),
|
|
1507
1507
|
accessory_keypad_setup_required: accessory_keypad_setup_required.optional().nullable()
|
|
1508
1508
|
});
|
|
@@ -17815,7 +17815,7 @@ var openapi_default = {
|
|
|
17815
17815
|
},
|
|
17816
17816
|
warning_code: {
|
|
17817
17817
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
17818
|
-
enum: ["
|
|
17818
|
+
enum: ["hub_required_for_additional_capabilities"],
|
|
17819
17819
|
type: "string"
|
|
17820
17820
|
}
|
|
17821
17821
|
},
|
|
@@ -29267,7 +29267,7 @@ var openapi_default = {
|
|
|
29267
29267
|
},
|
|
29268
29268
|
warning_code: {
|
|
29269
29269
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
29270
|
-
enum: ["
|
|
29270
|
+
enum: ["hub_required_for_additional_capabilities"],
|
|
29271
29271
|
type: "string"
|
|
29272
29272
|
}
|
|
29273
29273
|
},
|
|
@@ -56208,11 +56208,7 @@ var openapi_default = {
|
|
|
56208
56208
|
type: "string"
|
|
56209
56209
|
}
|
|
56210
56210
|
},
|
|
56211
|
-
required: [
|
|
56212
|
-
"connector_id",
|
|
56213
|
-
"connector_customer_id",
|
|
56214
|
-
"unique_provider_resource_key"
|
|
56215
|
-
],
|
|
56211
|
+
required: ["connector_id"],
|
|
56216
56212
|
type: "object"
|
|
56217
56213
|
}
|
|
56218
56214
|
}
|