@camstack/addon-pipeline-orchestrator 1.1.60 → 1.2.0
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/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-DsSVSlS9.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-CD0yiDQw.mjs} +3 -3
- package/dist/{hostInit-rSldAOO1.mjs → hostInit-mgMWN0Cz.mjs} +3 -3
- package/dist/index.js +10 -11
- package/dist/index.mjs +10 -11
- package/dist/remoteEntry.js +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
|
|
|
3
3
|
var e = {
|
|
4
4
|
"@camstack/sdk": {
|
|
5
5
|
name: "@camstack/sdk",
|
|
6
|
-
version: "1.
|
|
6
|
+
version: "1.2.0",
|
|
7
7
|
scope: ["default"],
|
|
8
8
|
loaded: !1,
|
|
9
9
|
from: "addon_pipeline_orchestrator_widgets",
|
|
@@ -18,7 +18,7 @@ var e = {
|
|
|
18
18
|
},
|
|
19
19
|
"@camstack/types": {
|
|
20
20
|
name: "@camstack/types",
|
|
21
|
-
version: "1.
|
|
21
|
+
version: "1.2.0",
|
|
22
22
|
scope: ["default"],
|
|
23
23
|
loaded: !1,
|
|
24
24
|
from: "addon_pipeline_orchestrator_widgets",
|
|
@@ -33,7 +33,7 @@ var e = {
|
|
|
33
33
|
},
|
|
34
34
|
"@camstack/ui-library": {
|
|
35
35
|
name: "@camstack/ui-library",
|
|
36
|
-
version: "1.
|
|
36
|
+
version: "1.2.0",
|
|
37
37
|
scope: ["default"],
|
|
38
38
|
loaded: !1,
|
|
39
39
|
from: "addon_pipeline_orchestrator_widgets",
|
|
@@ -36,7 +36,7 @@ async function r() {
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"@camstack/types": {
|
|
39
|
-
version: "1.
|
|
39
|
+
version: "1.2.0",
|
|
40
40
|
scope: "default",
|
|
41
41
|
shareConfig: {
|
|
42
42
|
singleton: !0,
|
|
@@ -45,7 +45,7 @@ async function r() {
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"@camstack/sdk": {
|
|
48
|
-
version: "1.
|
|
48
|
+
version: "1.2.0",
|
|
49
49
|
scope: "default",
|
|
50
50
|
shareConfig: {
|
|
51
51
|
singleton: !0,
|
|
@@ -99,7 +99,7 @@ async function r() {
|
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
101
|
"@camstack/ui-library": {
|
|
102
|
-
version: "1.
|
|
102
|
+
version: "1.2.0",
|
|
103
103
|
scope: "default",
|
|
104
104
|
shareConfig: {
|
|
105
105
|
singleton: !0,
|
package/dist/index.js
CHANGED
|
@@ -18489,14 +18489,13 @@ var pipelineOrchestratorCapability = {
|
|
|
18489
18489
|
};
|
|
18490
18490
|
/**
|
|
18491
18491
|
* server-management — per-NODE singleton capability for a node's ROOT
|
|
18492
|
-
* package lifecycle (runtime-updatable node packages
|
|
18493
|
-
* agents).
|
|
18492
|
+
* package lifecycle (runtime-updatable node packages).
|
|
18494
18493
|
*
|
|
18495
|
-
*
|
|
18496
|
-
*
|
|
18497
|
-
*
|
|
18498
|
-
*
|
|
18499
|
-
*
|
|
18494
|
+
* Every node role runs the SAME root package (`@camstack/server`), which
|
|
18495
|
+
* carries the whole software stack in its npm dep tree, so ONE version
|
|
18496
|
+
* describes the node. Updates stage into `<dataDir>/server-root/` and apply
|
|
18497
|
+
* on restart via the baked starter (single-copy in-place swap — no probation,
|
|
18498
|
+
* no auto-rollback).
|
|
18500
18499
|
*
|
|
18501
18500
|
* Providers:
|
|
18502
18501
|
* - HUB: `ServerUpdateService` behind the `server-provided` mount
|
|
@@ -20641,10 +20640,10 @@ var TopologyCategorySchema = object({
|
|
|
20641
20640
|
addons: array(TopologyCategoryAddonSchema).readonly()
|
|
20642
20641
|
});
|
|
20643
20642
|
/**
|
|
20644
|
-
* The node's runtime-updatable ROOT package (`@camstack/server`
|
|
20645
|
-
*
|
|
20646
|
-
* version visibility for the Server management surface. Nullable:
|
|
20647
|
-
* rows and
|
|
20643
|
+
* The node's runtime-updatable ROOT package (`@camstack/server` — the single
|
|
20644
|
+
* root package for every node role) as reported by its `registerNode`
|
|
20645
|
+
* manifest — version visibility for the Server management surface. Nullable:
|
|
20646
|
+
* offline rows and nodes that never reported one.
|
|
20648
20647
|
*/
|
|
20649
20648
|
var TopologyRootPackageSchema = object({
|
|
20650
20649
|
name: string(),
|
package/dist/index.mjs
CHANGED
|
@@ -18461,14 +18461,13 @@ var pipelineOrchestratorCapability = {
|
|
|
18461
18461
|
};
|
|
18462
18462
|
/**
|
|
18463
18463
|
* server-management — per-NODE singleton capability for a node's ROOT
|
|
18464
|
-
* package lifecycle (runtime-updatable node packages
|
|
18465
|
-
* agents).
|
|
18464
|
+
* package lifecycle (runtime-updatable node packages).
|
|
18466
18465
|
*
|
|
18467
|
-
*
|
|
18468
|
-
*
|
|
18469
|
-
*
|
|
18470
|
-
*
|
|
18471
|
-
*
|
|
18466
|
+
* Every node role runs the SAME root package (`@camstack/server`), which
|
|
18467
|
+
* carries the whole software stack in its npm dep tree, so ONE version
|
|
18468
|
+
* describes the node. Updates stage into `<dataDir>/server-root/` and apply
|
|
18469
|
+
* on restart via the baked starter (single-copy in-place swap — no probation,
|
|
18470
|
+
* no auto-rollback).
|
|
18472
18471
|
*
|
|
18473
18472
|
* Providers:
|
|
18474
18473
|
* - HUB: `ServerUpdateService` behind the `server-provided` mount
|
|
@@ -20613,10 +20612,10 @@ var TopologyCategorySchema = object({
|
|
|
20613
20612
|
addons: array(TopologyCategoryAddonSchema).readonly()
|
|
20614
20613
|
});
|
|
20615
20614
|
/**
|
|
20616
|
-
* The node's runtime-updatable ROOT package (`@camstack/server`
|
|
20617
|
-
*
|
|
20618
|
-
* version visibility for the Server management surface. Nullable:
|
|
20619
|
-
* rows and
|
|
20615
|
+
* The node's runtime-updatable ROOT package (`@camstack/server` — the single
|
|
20616
|
+
* root package for every node role) as reported by its `registerNode`
|
|
20617
|
+
* manifest — version visibility for the Server management surface. Nullable:
|
|
20618
|
+
* offline rows and nodes that never reported one.
|
|
20620
20619
|
*/
|
|
20621
20620
|
var TopologyRootPackageSchema = object({
|
|
20622
20621
|
name: string(),
|
package/dist/remoteEntry.js
CHANGED
|
@@ -30,7 +30,7 @@ async function d(e) {
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
async function f() {
|
|
33
|
-
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-
|
|
33
|
+
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-CD0yiDQw.mjs")).catch((e) => {
|
|
34
34
|
throw l = void 0, e;
|
|
35
35
|
}), l;
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-pipeline-orchestrator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Hub-side camera-to-agent load balancer — tracks runner capacity and dispatches attachCamera calls to the optimal pipeline-runner instance",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|