@camstack/server 1.2.50 → 1.2.52
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.
|
@@ -5548,6 +5548,15 @@ function createCapRouter_pipelineAnalytics(getProvider, createRemoteProxy) {
|
|
|
5548
5548
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5549
5549
|
return p.listEventKinds(methodInput);
|
|
5550
5550
|
}),
|
|
5551
|
+
listEventKindsBatch: trpc_middleware_js_1.protectedProcedure
|
|
5552
|
+
.input(types_80.pipelineAnalyticsCapability.methods.listEventKindsBatch.input.loose())
|
|
5553
|
+
.output(types_80.pipelineAnalyticsCapability.methods.listEventKindsBatch.output)
|
|
5554
|
+
.query(async ({ input, ctx }) => {
|
|
5555
|
+
const { nodeId, ...methodInput } = input;
|
|
5556
|
+
const p = resolveProvider('pipeline-analytics', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5557
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5558
|
+
return p.listEventKindsBatch(methodInput);
|
|
5559
|
+
}),
|
|
5551
5560
|
getSensorEvents: trpc_middleware_js_1.protectedProcedure
|
|
5552
5561
|
.input(types_80.pipelineAnalyticsCapability.methods.getSensorEvents.input.loose())
|
|
5553
5562
|
.output(types_80.pipelineAnalyticsCapability.methods.getSensorEvents.output)
|
|
@@ -5692,6 +5701,15 @@ function createCapRouter_pipelineAnalytics(getProvider, createRemoteProxy) {
|
|
|
5692
5701
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5693
5702
|
return p.getTrackMedia(methodInput);
|
|
5694
5703
|
}),
|
|
5704
|
+
listTrackMedia: trpc_middleware_js_1.protectedProcedure
|
|
5705
|
+
.input(types_80.pipelineAnalyticsCapability.methods.listTrackMedia.input.loose())
|
|
5706
|
+
.output(types_80.pipelineAnalyticsCapability.methods.listTrackMedia.output)
|
|
5707
|
+
.query(async ({ input, ctx }) => {
|
|
5708
|
+
const { nodeId, ...methodInput } = input;
|
|
5709
|
+
const p = resolveProvider('pipeline-analytics', nodeId, () => getProvider(ctx), createRemoteProxy);
|
|
5710
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
|
|
5711
|
+
return p.listTrackMedia(methodInput);
|
|
5712
|
+
}),
|
|
5695
5713
|
searchObjectEvents: trpc_middleware_js_1.protectedProcedure
|
|
5696
5714
|
.input(types_80.pipelineAnalyticsCapability.methods.searchObjectEvents.input.loose())
|
|
5697
5715
|
.output(types_80.pipelineAnalyticsCapability.methods.searchObjectEvents.output)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.52",
|
|
4
4
|
"private": false,
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@camstack/addon-admin-ui": "1.2.
|
|
36
|
+
"@camstack/addon-admin-ui": "1.2.28",
|
|
37
37
|
"@camstack/addon-agent-ui": "1.2.10",
|
|
38
38
|
"@camstack/addon-auth": "1.2.11",
|
|
39
39
|
"@camstack/addon-decoder-nodeav": "1.2.9",
|
|
40
|
-
"@camstack/addon-notifiers": "1.2.
|
|
41
|
-
"@camstack/addon-pipeline": "1.2.
|
|
42
|
-
"@camstack/addon-pipeline-orchestrator": "1.2.
|
|
43
|
-
"@camstack/addon-post-analysis": "1.2.
|
|
40
|
+
"@camstack/addon-notifiers": "1.2.13",
|
|
41
|
+
"@camstack/addon-pipeline": "1.2.41",
|
|
42
|
+
"@camstack/addon-pipeline-orchestrator": "1.2.24",
|
|
43
|
+
"@camstack/addon-post-analysis": "1.2.34",
|
|
44
44
|
"@camstack/sdk": "1.2.10",
|
|
45
45
|
"@camstack/shm-ring": "1.1.9",
|
|
46
|
-
"@camstack/system": "1.2.
|
|
47
|
-
"@camstack/types": "1.2.
|
|
48
|
-
"@camstack/ui-library": "1.2.
|
|
46
|
+
"@camstack/system": "1.2.43",
|
|
47
|
+
"@camstack/types": "1.2.32",
|
|
48
|
+
"@camstack/ui-library": "1.2.25",
|
|
49
49
|
"@fastify/compress": "^9.0.0",
|
|
50
50
|
"@fastify/cookie": "^11.0.2",
|
|
51
51
|
"@fastify/cors": "^11.2.0",
|