@camstack/server 1.1.59 → 1.1.61
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.
|
@@ -4919,6 +4919,15 @@ function createCapRouter_pipelineAnalytics(getProvider, createRemoteProxy) {
|
|
|
4919
4919
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
4920
4920
|
return p.getAudioEvents(methodInput);
|
|
4921
4921
|
}),
|
|
4922
|
+
getKeyEvents: trpc_middleware_js_1.protectedProcedure
|
|
4923
|
+
.input(types_76.pipelineAnalyticsCapability.methods.getKeyEvents.input.loose())
|
|
4924
|
+
.output(types_76.pipelineAnalyticsCapability.methods.getKeyEvents.output)
|
|
4925
|
+
.query(async ({ input, ctx }) => {
|
|
4926
|
+
const { nodeId, ...methodInput } = input;
|
|
4927
|
+
const p = resolveProvider('pipeline-analytics', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
4928
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
4929
|
+
return p.getKeyEvents(methodInput);
|
|
4930
|
+
}),
|
|
4922
4931
|
getEventDensity: trpc_middleware_js_1.protectedProcedure
|
|
4923
4932
|
.input(types_76.pipelineAnalyticsCapability.methods.getEventDensity.input.loose())
|
|
4924
4933
|
.output(types_76.pipelineAnalyticsCapability.methods.getEventDensity.output)
|
|
@@ -5661,6 +5670,24 @@ function createCapRouter_pipelineRunner(getProvider, createRemoteProxy) {
|
|
|
5661
5670
|
const p = resolveProvider('pipeline-runner', input?.nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5662
5671
|
return p.getLocalCameras();
|
|
5663
5672
|
}),
|
|
5673
|
+
getNativeCrop: trpc_middleware_js_1.protectedProcedure
|
|
5674
|
+
.input(types_79.pipelineRunnerCapability.methods.getNativeCrop.input.loose())
|
|
5675
|
+
.output(types_79.pipelineRunnerCapability.methods.getNativeCrop.output)
|
|
5676
|
+
.query(async ({ input, ctx }) => {
|
|
5677
|
+
const { nodeId, ...methodInput } = input;
|
|
5678
|
+
const p = resolveProvider('pipeline-runner', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5679
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5680
|
+
return p.getNativeCrop(methodInput);
|
|
5681
|
+
}),
|
|
5682
|
+
runDetailSubtree: trpc_middleware_js_1.protectedProcedure
|
|
5683
|
+
.input(types_79.pipelineRunnerCapability.methods.runDetailSubtree.input.loose())
|
|
5684
|
+
.output(types_79.pipelineRunnerCapability.methods.runDetailSubtree.output)
|
|
5685
|
+
.mutation(async ({ input, ctx }) => {
|
|
5686
|
+
const { nodeId, ...methodInput } = input;
|
|
5687
|
+
const p = resolveProvider('pipeline-runner', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5688
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5689
|
+
return p.runDetailSubtree(methodInput);
|
|
5690
|
+
}),
|
|
5664
5691
|
});
|
|
5665
5692
|
}
|
|
5666
5693
|
function createCapRouter_plateGallery(getProvider, createRemoteProxy) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.61",
|
|
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.
|
|
27
|
-
"@camstack/addon-advanced-notifier": "1.1.
|
|
28
|
-
"@camstack/addon-auth": "1.1.
|
|
29
|
-
"@camstack/addon-decoder-nodeav": "1.1.
|
|
30
|
-
"@camstack/addon-notifiers": "1.1.
|
|
31
|
-
"@camstack/addon-pipeline": "1.1.
|
|
32
|
-
"@camstack/addon-pipeline-orchestrator": "1.1.
|
|
33
|
-
"@camstack/addon-post-analysis": "1.1.
|
|
34
|
-
"@camstack/sdk": "1.1.
|
|
35
|
-
"@camstack/shm-ring": "1.0.
|
|
36
|
-
"@camstack/system": "1.1.
|
|
37
|
-
"@camstack/types": "1.1.
|
|
38
|
-
"@camstack/ui-library": "1.1.
|
|
26
|
+
"@camstack/addon-admin-ui": "1.1.50",
|
|
27
|
+
"@camstack/addon-advanced-notifier": "1.1.23",
|
|
28
|
+
"@camstack/addon-auth": "1.1.8",
|
|
29
|
+
"@camstack/addon-decoder-nodeav": "1.1.11",
|
|
30
|
+
"@camstack/addon-notifiers": "1.1.23",
|
|
31
|
+
"@camstack/addon-pipeline": "1.1.55",
|
|
32
|
+
"@camstack/addon-pipeline-orchestrator": "1.1.45",
|
|
33
|
+
"@camstack/addon-post-analysis": "1.1.27",
|
|
34
|
+
"@camstack/sdk": "1.1.24",
|
|
35
|
+
"@camstack/shm-ring": "1.0.23",
|
|
36
|
+
"@camstack/system": "1.1.48",
|
|
37
|
+
"@camstack/types": "1.1.43",
|
|
38
|
+
"@camstack/ui-library": "1.1.35",
|
|
39
39
|
"@fastify/compress": "^9.0.0",
|
|
40
40
|
"@fastify/cookie": "^11.0.2",
|
|
41
41
|
"@fastify/multipart": "^10.0.0",
|