@camstack/addon-provider-petkit 0.2.25 → 0.2.26
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
|
@@ -1101,7 +1101,7 @@ var Nodepetkit = class {
|
|
|
1101
1101
|
}
|
|
1102
1102
|
};
|
|
1103
1103
|
//#endregion
|
|
1104
|
-
//#region ../types/dist/event-category-
|
|
1104
|
+
//#region ../types/dist/event-category-CIa_iT6b.mjs
|
|
1105
1105
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
1106
1106
|
EventCategory["SystemBoot"] = "system.boot";
|
|
1107
1107
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -1117,6 +1117,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
1117
1117
|
*/
|
|
1118
1118
|
EventCategory["SystemRestartCompleted"] = "system.restart-completed";
|
|
1119
1119
|
/**
|
|
1120
|
+
* The hub reissued its own TLS certificate at boot (`ensureTlsCert`).
|
|
1121
|
+
* Emitted only when the material on disk actually changed, so an
|
|
1122
|
+
* operator who trusted the old certificate by hand is told rather than
|
|
1123
|
+
* discovering it as a browser error. Payload `TlsCertChangedPayload`.
|
|
1124
|
+
*
|
|
1125
|
+
* Rule: docs/decisions/adr-0227-*.md
|
|
1126
|
+
*/
|
|
1127
|
+
EventCategory["SystemTlsCertChanged"] = "system.tls-cert-changed";
|
|
1128
|
+
/**
|
|
1120
1129
|
* A newer addon or server-root package version was found by the
|
|
1121
1130
|
* authoritative registry check. Emitted once when any observed
|
|
1122
1131
|
* `latestVersion` changes (or a package/node first appears behind);
|
package/dist/addon.mjs
CHANGED
|
@@ -1100,7 +1100,7 @@ var Nodepetkit = class {
|
|
|
1100
1100
|
}
|
|
1101
1101
|
};
|
|
1102
1102
|
//#endregion
|
|
1103
|
-
//#region ../types/dist/event-category-
|
|
1103
|
+
//#region ../types/dist/event-category-CIa_iT6b.mjs
|
|
1104
1104
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
1105
1105
|
EventCategory["SystemBoot"] = "system.boot";
|
|
1106
1106
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -1116,6 +1116,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
1116
1116
|
*/
|
|
1117
1117
|
EventCategory["SystemRestartCompleted"] = "system.restart-completed";
|
|
1118
1118
|
/**
|
|
1119
|
+
* The hub reissued its own TLS certificate at boot (`ensureTlsCert`).
|
|
1120
|
+
* Emitted only when the material on disk actually changed, so an
|
|
1121
|
+
* operator who trusted the old certificate by hand is told rather than
|
|
1122
|
+
* discovering it as a browser error. Payload `TlsCertChangedPayload`.
|
|
1123
|
+
*
|
|
1124
|
+
* Rule: docs/decisions/adr-0227-*.md
|
|
1125
|
+
*/
|
|
1126
|
+
EventCategory["SystemTlsCertChanged"] = "system.tls-cert-changed";
|
|
1127
|
+
/**
|
|
1119
1128
|
* A newer addon or server-root package version was found by the
|
|
1120
1129
|
* authoritative registry check. Emitted once when any observed
|
|
1121
1130
|
* `latestVersion` changes (or a package/node first appears behind);
|
package/package.json
CHANGED