@mmmbuto/nexuscrew 0.9.9 → 0.9.10
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/CHANGELOG.md +43 -0
- package/frontend/dist/assets/{index-CN02GYPg.css → index-CIJoChF1.css} +1 -1
- package/frontend/dist/assets/index-DBGNS4gP.js +93 -0
- package/frontend/dist/index.html +2 -2
- package/frontend/dist/version.json +1 -1
- package/lib/fleet/routes.js +5 -0
- package/package.json +1 -1
- package/frontend/dist/assets/index-DlWa7GOd.js +0 -93
package/frontend/dist/index.html
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
<meta name="apple-mobile-web-app-title" content="NexusCrew" />
|
|
12
12
|
<link rel="manifest" href="/manifest.json" />
|
|
13
13
|
<title>NexusCrew</title>
|
|
14
|
-
<script type="module" crossorigin src="/assets/index-
|
|
15
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
14
|
+
<script type="module" crossorigin src="/assets/index-DBGNS4gP.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CIJoChF1.css">
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
|
18
18
|
<div id="root"></div>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.9.
|
|
1
|
+
{"version":"0.9.10"}
|
package/lib/fleet/routes.js
CHANGED
|
@@ -93,6 +93,11 @@ function fleetRoutes(fleetP, cfg = {}) {
|
|
|
93
93
|
bootOwner: 'none', // §9b: provider non disponibile -> nessun boot owner
|
|
94
94
|
capabilities: capList(fleet),
|
|
95
95
|
...(fleet.reason ? { reason: fleet.reason } : {}),
|
|
96
|
+
// R33: il codice macchina del boot bloccato viaggia fino al client.
|
|
97
|
+
// La policy di lettura decide su QUESTO, non sulla prosa del reason
|
|
98
|
+
// (la prosa resta ripiego per i reason che un codice non ce l'hanno).
|
|
99
|
+
// Senza campo dal provider, la risposta semplicemente non lo ha.
|
|
100
|
+
...(fleet.migrationCode ? { migrationCode: fleet.migrationCode } : {}),
|
|
96
101
|
});
|
|
97
102
|
}
|
|
98
103
|
const st = await fleet.status();
|