@camstack/addon-provider-petkit 0.2.64 → 0.2.65
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/addon.js +6 -1
- package/dist/addon.mjs +6 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -14162,7 +14162,12 @@ var ConfigEntrySchema = object({
|
|
|
14162
14162
|
value: unknown(),
|
|
14163
14163
|
description: string().optional()
|
|
14164
14164
|
});
|
|
14165
|
-
|
|
14165
|
+
/**
|
|
14166
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
14167
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
14168
|
+
* drop it once no shipped client reads `mode`.
|
|
14169
|
+
*/
|
|
14170
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
14166
14171
|
/** One resolved linked device — the compact projection consumers need. */
|
|
14167
14172
|
var LinkedDeviceSchema = object({
|
|
14168
14173
|
deviceId: number(),
|
package/dist/addon.mjs
CHANGED
|
@@ -14161,7 +14161,12 @@ var ConfigEntrySchema = object({
|
|
|
14161
14161
|
value: unknown(),
|
|
14162
14162
|
description: string().optional()
|
|
14163
14163
|
});
|
|
14164
|
-
|
|
14164
|
+
/**
|
|
14165
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
14166
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
14167
|
+
* drop it once no shipped client reads `mode`.
|
|
14168
|
+
*/
|
|
14169
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
14165
14170
|
/** One resolved linked device — the compact projection consumers need. */
|
|
14166
14171
|
var LinkedDeviceSchema = object({
|
|
14167
14172
|
deviceId: number(),
|
package/package.json
CHANGED