@camstack/addon-agent-ui 1.2.26 → 1.2.27
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 +11 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
2
|
import { fileURLToPath } from "node:url";
|
|
3
|
-
//#region ../types/dist/event-category-
|
|
3
|
+
//#region ../types/dist/event-category-CIa_iT6b.mjs
|
|
4
4
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
5
5
|
EventCategory["SystemBoot"] = "system.boot";
|
|
6
6
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -16,6 +16,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
16
16
|
*/
|
|
17
17
|
EventCategory["SystemRestartCompleted"] = "system.restart-completed";
|
|
18
18
|
/**
|
|
19
|
+
* The hub reissued its own TLS certificate at boot (`ensureTlsCert`).
|
|
20
|
+
* Emitted only when the material on disk actually changed, so an
|
|
21
|
+
* operator who trusted the old certificate by hand is told rather than
|
|
22
|
+
* discovering it as a browser error. Payload `TlsCertChangedPayload`.
|
|
23
|
+
*
|
|
24
|
+
* Rule: docs/decisions/adr-0227-*.md
|
|
25
|
+
*/
|
|
26
|
+
EventCategory["SystemTlsCertChanged"] = "system.tls-cert-changed";
|
|
27
|
+
/**
|
|
19
28
|
* A newer addon or server-root package version was found by the
|
|
20
29
|
* authoritative registry check. Emitted once when any observed
|
|
21
30
|
* `latestVersion` changes (or a package/node first appears behind);
|
|
@@ -33907,7 +33916,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
33907
33916
|
capability: adminUiCapability,
|
|
33908
33917
|
provider: {
|
|
33909
33918
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
33910
|
-
getVersion: async () => ({ version: "1.2.
|
|
33919
|
+
getVersion: async () => ({ version: "1.2.27" })
|
|
33911
33920
|
}
|
|
33912
33921
|
}];
|
|
33913
33922
|
}
|