@camstack/addon-terminal 0.1.28 → 0.1.29
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 +10 -1
- package/dist/addon.mjs +10 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -31,7 +31,7 @@ let node_module = require("node:module");
|
|
|
31
31
|
let sharp = require("sharp");
|
|
32
32
|
sharp = __toESM(sharp);
|
|
33
33
|
let node_http = require("node:http");
|
|
34
|
-
//#region ../types/dist/event-category-
|
|
34
|
+
//#region ../types/dist/event-category-CIa_iT6b.mjs
|
|
35
35
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
36
36
|
EventCategory["SystemBoot"] = "system.boot";
|
|
37
37
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -47,6 +47,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
47
47
|
*/
|
|
48
48
|
EventCategory["SystemRestartCompleted"] = "system.restart-completed";
|
|
49
49
|
/**
|
|
50
|
+
* The hub reissued its own TLS certificate at boot (`ensureTlsCert`).
|
|
51
|
+
* Emitted only when the material on disk actually changed, so an
|
|
52
|
+
* operator who trusted the old certificate by hand is told rather than
|
|
53
|
+
* discovering it as a browser error. Payload `TlsCertChangedPayload`.
|
|
54
|
+
*
|
|
55
|
+
* Rule: docs/decisions/adr-0227-*.md
|
|
56
|
+
*/
|
|
57
|
+
EventCategory["SystemTlsCertChanged"] = "system.tls-cert-changed";
|
|
58
|
+
/**
|
|
50
59
|
* A newer addon or server-root package version was found by the
|
|
51
60
|
* authoritative registry check. Emitted once when any observed
|
|
52
61
|
* `latestVersion` changes (or a package/node first appears behind);
|
package/dist/addon.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { createServer } from "node:http";
|
|
|
8
8
|
//#region \0rolldown/runtime.js
|
|
9
9
|
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
10
10
|
//#endregion
|
|
11
|
-
//#region ../types/dist/event-category-
|
|
11
|
+
//#region ../types/dist/event-category-CIa_iT6b.mjs
|
|
12
12
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
13
13
|
EventCategory["SystemBoot"] = "system.boot";
|
|
14
14
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -24,6 +24,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
24
24
|
*/
|
|
25
25
|
EventCategory["SystemRestartCompleted"] = "system.restart-completed";
|
|
26
26
|
/**
|
|
27
|
+
* The hub reissued its own TLS certificate at boot (`ensureTlsCert`).
|
|
28
|
+
* Emitted only when the material on disk actually changed, so an
|
|
29
|
+
* operator who trusted the old certificate by hand is told rather than
|
|
30
|
+
* discovering it as a browser error. Payload `TlsCertChangedPayload`.
|
|
31
|
+
*
|
|
32
|
+
* Rule: docs/decisions/adr-0227-*.md
|
|
33
|
+
*/
|
|
34
|
+
EventCategory["SystemTlsCertChanged"] = "system.tls-cert-changed";
|
|
35
|
+
/**
|
|
27
36
|
* A newer addon or server-root package version was found by the
|
|
28
37
|
* authoritative registry check. Emitted once when any observed
|
|
29
38
|
* `latestVersion` changes (or a package/node first appears behind);
|