@camstack/addon-pipeline-orchestrator 1.2.149 → 1.2.150
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/assets/viewer/.viewer-current-files.json +1 -1
- package/assets/viewer/.viewer-version +1 -1
- package/assets/viewer/_expo/static/js/web/{index-32cfb492bb3b6a69b0207b33ef971360.js → index-22c6dcf9f1eb7365ef8bfcca1002bc3f.js} +13 -13
- package/assets/viewer/index.html +1 -1
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BoromzJ6.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-DowYzilY.mjs} +3 -3
- package/dist/{hostInit-CkH-STHb.mjs → hostInit-54tY3tg4.mjs} +3 -3
- package/dist/index.js +6 -1
- package/dist/index.mjs +6 -1
- package/dist/remoteEntry.js +1 -1
- package/package.json +1 -1
package/assets/viewer/index.html
CHANGED
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
</noscript>
|
|
37
37
|
<!-- The root element for your Expo app. -->
|
|
38
38
|
<div id="root"></div>
|
|
39
|
-
<script src="/viewer/camstack/_expo/static/js/web/index-
|
|
39
|
+
<script src="/viewer/camstack/_expo/static/js/web/index-22c6dcf9f1eb7365ef8bfcca1002bc3f.js" defer></script>
|
|
40
40
|
</body>
|
|
41
41
|
</html>
|
|
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
|
|
|
3
3
|
var e = {
|
|
4
4
|
"@camstack/sdk": {
|
|
5
5
|
name: "@camstack/sdk",
|
|
6
|
-
version: "1.2.
|
|
6
|
+
version: "1.2.68",
|
|
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.2.
|
|
21
|
+
version: "1.2.148",
|
|
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.2.
|
|
36
|
+
version: "1.2.114",
|
|
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.2.
|
|
39
|
+
version: "1.2.148",
|
|
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.2.
|
|
48
|
+
version: "1.2.68",
|
|
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.2.
|
|
102
|
+
version: "1.2.114",
|
|
103
103
|
scope: "default",
|
|
104
104
|
shareConfig: {
|
|
105
105
|
singleton: !0,
|
package/dist/index.js
CHANGED
|
@@ -13708,7 +13708,12 @@ var ConfigEntrySchema = object({
|
|
|
13708
13708
|
value: unknown(),
|
|
13709
13709
|
description: string().optional()
|
|
13710
13710
|
});
|
|
13711
|
-
|
|
13711
|
+
/**
|
|
13712
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
13713
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
13714
|
+
* drop it once no shipped client reads `mode`.
|
|
13715
|
+
*/
|
|
13716
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
13712
13717
|
/** One resolved linked device — the compact projection consumers need. */
|
|
13713
13718
|
var LinkedDeviceSchema = object({
|
|
13714
13719
|
deviceId: number(),
|
package/dist/index.mjs
CHANGED
|
@@ -13680,7 +13680,12 @@ var ConfigEntrySchema = object({
|
|
|
13680
13680
|
value: unknown(),
|
|
13681
13681
|
description: string().optional()
|
|
13682
13682
|
});
|
|
13683
|
-
|
|
13683
|
+
/**
|
|
13684
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
13685
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
13686
|
+
* drop it once no shipped client reads `mode`.
|
|
13687
|
+
*/
|
|
13688
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
13684
13689
|
/** One resolved linked device — the compact projection consumers need. */
|
|
13685
13690
|
var LinkedDeviceSchema = object({
|
|
13686
13691
|
deviceId: number(),
|
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-DowYzilY.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.2.
|
|
3
|
+
"version": "1.2.150",
|
|
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",
|