@camstack/addon-agent-ui 1.2.19 → 1.2.20
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 +9 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19117,7 +19117,14 @@ targets: array(object({
|
|
|
19117
19117
|
"sleeping",
|
|
19118
19118
|
"unreachable",
|
|
19119
19119
|
"waking"
|
|
19120
|
-
]).nullable()
|
|
19120
|
+
]).nullable(),
|
|
19121
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19122
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19123
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19124
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19125
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19126
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19127
|
+
battery: boolean()
|
|
19121
19128
|
})));
|
|
19122
19129
|
/**
|
|
19123
19130
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|
|
@@ -33572,7 +33579,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
33572
33579
|
capability: adminUiCapability,
|
|
33573
33580
|
provider: {
|
|
33574
33581
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
33575
|
-
getVersion: async () => ({ version: "1.2.
|
|
33582
|
+
getVersion: async () => ({ version: "1.2.20" })
|
|
33576
33583
|
}
|
|
33577
33584
|
}];
|
|
33578
33585
|
}
|