@camstack/server 1.1.75 → 1.1.76
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.
|
@@ -5385,13 +5385,6 @@ function createCapRouter_pipelineExecutor(getProvider, createRemoteProxy) {
|
|
|
5385
5385
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5386
5386
|
return p.getDefaultSteps(methodInput);
|
|
5387
5387
|
}),
|
|
5388
|
-
reprobeEngine: trpc_middleware_js_1.adminProcedure
|
|
5389
|
-
.input(zod_1.z.object({ nodeId: zod_1.z.string().optional() }).optional())
|
|
5390
|
-
.output(types_79.pipelineExecutorCapability.methods.reprobeEngine.output)
|
|
5391
|
-
.mutation(async ({ input, ctx }) => {
|
|
5392
|
-
const p = resolveProvider('pipeline-executor', input?.nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5393
|
-
return p.reprobeEngine();
|
|
5394
|
-
}),
|
|
5395
5388
|
getEngineProvisioning: trpc_middleware_js_1.protectedProcedure
|
|
5396
5389
|
.input(types_79.pipelineExecutorCapability.methods.getEngineProvisioning.input.loose())
|
|
5397
5390
|
.output(types_79.pipelineExecutorCapability.methods.getEngineProvisioning.output)
|
|
@@ -5707,6 +5700,22 @@ function createCapRouter_pipelineOrchestrator(getProvider, _createRemoteProxy) {
|
|
|
5707
5700
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5708
5701
|
return p.unassignPipeline(input);
|
|
5709
5702
|
}),
|
|
5703
|
+
setPipelineDevicePin: trpc_middleware_js_1.adminProcedure
|
|
5704
|
+
.input(types_80.pipelineOrchestratorCapability.methods.setPipelineDevicePin.input.loose())
|
|
5705
|
+
.output(types_80.pipelineOrchestratorCapability.methods.setPipelineDevicePin.output)
|
|
5706
|
+
.mutation(async ({ input, ctx }) => {
|
|
5707
|
+
const p = requireCapProvider('pipeline-orchestrator', () => getProvider(ctx));
|
|
5708
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5709
|
+
return p.setPipelineDevicePin(input);
|
|
5710
|
+
}),
|
|
5711
|
+
getPipelineDevicePin: trpc_middleware_js_1.protectedProcedure
|
|
5712
|
+
.input(types_80.pipelineOrchestratorCapability.methods.getPipelineDevicePin.input.loose())
|
|
5713
|
+
.output(types_80.pipelineOrchestratorCapability.methods.getPipelineDevicePin.output)
|
|
5714
|
+
.query(async ({ input, ctx }) => {
|
|
5715
|
+
const p = requireCapProvider('pipeline-orchestrator', () => getProvider(ctx));
|
|
5716
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5717
|
+
return p.getPipelineDevicePin(input);
|
|
5718
|
+
}),
|
|
5710
5719
|
rebalance: trpc_middleware_js_1.adminProcedure
|
|
5711
5720
|
.input(zod_1.z.object({ nodeId: zod_1.z.string().optional() }).optional())
|
|
5712
5721
|
.output(types_80.pipelineOrchestratorCapability.methods.rebalance.output)
|
|
@@ -5835,14 +5844,6 @@ function createCapRouter_pipelineOrchestrator(getProvider, _createRemoteProxy) {
|
|
|
5835
5844
|
const p = requireCapProvider('pipeline-orchestrator', () => getProvider(ctx));
|
|
5836
5845
|
return p.listAgentSettings();
|
|
5837
5846
|
}),
|
|
5838
|
-
setAgentAddonDefaults: trpc_middleware_js_1.adminProcedure
|
|
5839
|
-
.input(types_80.pipelineOrchestratorCapability.methods.setAgentAddonDefaults.input.loose())
|
|
5840
|
-
.output(types_80.pipelineOrchestratorCapability.methods.setAgentAddonDefaults.output)
|
|
5841
|
-
.mutation(async ({ input, ctx }) => {
|
|
5842
|
-
const p = requireCapProvider('pipeline-orchestrator', () => getProvider(ctx));
|
|
5843
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5844
|
-
return p.setAgentAddonDefaults(input);
|
|
5845
|
-
}),
|
|
5846
5847
|
removeAgentSettings: trpc_middleware_js_1.adminProcedure
|
|
5847
5848
|
.input(types_80.pipelineOrchestratorCapability.methods.removeAgentSettings.input.loose())
|
|
5848
5849
|
.output(types_80.pipelineOrchestratorCapability.methods.removeAgentSettings.output)
|
|
@@ -5891,6 +5892,14 @@ function createCapRouter_pipelineOrchestrator(getProvider, _createRemoteProxy) {
|
|
|
5891
5892
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5892
5893
|
return p.setAgentInferenceDevices(input);
|
|
5893
5894
|
}),
|
|
5895
|
+
getNodeInferenceDevices: trpc_middleware_js_1.protectedProcedure
|
|
5896
|
+
.input(types_80.pipelineOrchestratorCapability.methods.getNodeInferenceDevices.input.loose())
|
|
5897
|
+
.output(types_80.pipelineOrchestratorCapability.methods.getNodeInferenceDevices.output)
|
|
5898
|
+
.query(async ({ input, ctx }) => {
|
|
5899
|
+
const p = requireCapProvider('pipeline-orchestrator', () => getProvider(ctx));
|
|
5900
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5901
|
+
return p.getNodeInferenceDevices(input);
|
|
5902
|
+
}),
|
|
5894
5903
|
resetNodePipelineDefaults: trpc_middleware_js_1.adminProcedure
|
|
5895
5904
|
.input(types_80.pipelineOrchestratorCapability.methods.resetNodePipelineDefaults.input.loose())
|
|
5896
5905
|
.output(types_80.pipelineOrchestratorCapability.methods.resetNodePipelineDefaults.output)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.76",
|
|
4
4
|
"private": false,
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"test:watch": "vitest"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@camstack/addon-admin-ui": "1.1.
|
|
26
|
+
"@camstack/addon-admin-ui": "1.1.63",
|
|
27
27
|
"@camstack/addon-advanced-notifier": "1.1.30",
|
|
28
28
|
"@camstack/addon-auth": "1.1.15",
|
|
29
29
|
"@camstack/addon-decoder-nodeav": "1.1.18",
|
|
30
30
|
"@camstack/addon-notifiers": "1.1.30",
|
|
31
|
-
"@camstack/addon-pipeline": "1.1.
|
|
32
|
-
"@camstack/addon-pipeline-orchestrator": "1.1.
|
|
33
|
-
"@camstack/addon-post-analysis": "1.1.
|
|
31
|
+
"@camstack/addon-pipeline": "1.1.71",
|
|
32
|
+
"@camstack/addon-pipeline-orchestrator": "1.1.60",
|
|
33
|
+
"@camstack/addon-post-analysis": "1.1.42",
|
|
34
34
|
"@camstack/sdk": "1.1.30",
|
|
35
35
|
"@camstack/shm-ring": "1.0.29",
|
|
36
|
-
"@camstack/system": "1.1.
|
|
37
|
-
"@camstack/types": "1.1.
|
|
38
|
-
"@camstack/ui-library": "1.1.
|
|
36
|
+
"@camstack/system": "1.1.64",
|
|
37
|
+
"@camstack/types": "1.1.58",
|
|
38
|
+
"@camstack/ui-library": "1.1.46",
|
|
39
39
|
"@fastify/compress": "^9.0.0",
|
|
40
40
|
"@fastify/cookie": "^11.0.2",
|
|
41
41
|
"@fastify/multipart": "^10.0.0",
|