@seamapi/types 1.997.0 → 1.999.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.997.0",
3
+ "version": "1.999.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1101,6 +1101,28 @@ export const device_metadata = z
1101
1101
  .partial()
1102
1102
  .describe(`Metadata for an Ultraloq device.`),
1103
1103
 
1104
+ yacan_metadata: z
1105
+ .object({
1106
+ device_id: z
1107
+ .string()
1108
+ .optional()
1109
+ .describe(`Device ID for a Yacan device.`),
1110
+ device_name: z
1111
+ .string()
1112
+ .optional()
1113
+ .describe(`Device name for a Yacan device.`),
1114
+ device_type: z
1115
+ .string()
1116
+ .optional()
1117
+ .describe(`Device type for a Yacan device.`),
1118
+ serial_number: z
1119
+ .string()
1120
+ .optional()
1121
+ .describe(`Serial number for a Yacan device.`),
1122
+ })
1123
+ .partial()
1124
+ .describe(`Metadata for a Yacan device.`),
1125
+
1104
1126
  ring_metadata: z
1105
1127
  .object({
1106
1128
  device_id: z
@@ -55,6 +55,7 @@ export const DEVICE_PROVIDERS = {
55
55
  KEYINCODE: 'keyincode',
56
56
  DORMAKABA_AMBIANCE: 'dormakaba_ambiance',
57
57
  ULTRALOQ: 'ultraloq',
58
+ YACAN: 'yacan',
58
59
  DUSAW: 'dusaw',
59
60
  SIFELY: 'sifely',
60
61
  THIRTY_THREE_LOCK: 'thirty_three_lock',
@@ -146,7 +147,7 @@ export const PROVIDER_CATEGORY_MAP = {
146
147
  'thirty_three_lock',
147
148
  ],
148
149
 
149
- beta: ['salto_ks_accept', 'aqara'],
150
+ beta: ['salto_ks_accept', 'aqara', 'yacan'],
150
151
 
151
152
  thermostats: ['ecobee', 'nest', 'sensi', 'honeywell_resideo', 'first_alert'],
152
153
  noise_sensors: ['minut', 'noiseaware'],
@@ -28,6 +28,7 @@ export const LOCK_DEVICE_TYPE = {
28
28
  TEDEE_LOCK: 'tedee_lock',
29
29
  AKILES_LOCK: 'akiles_lock',
30
30
  ULTRALOQ_LOCK: 'ultraloq_lock',
31
+ YACAN_LOCK: 'yacan_lock',
31
32
  KEYINCODE_LOCK: 'keyincode_lock',
32
33
  OMNITEC_LOCK: 'omnitec_lock',
33
34
  KISI_LOCK: 'kisi_lock',