@camstack/server 1.2.49 → 1.2.51

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.49",
3
+ "version": "1.2.51",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -38,14 +38,14 @@
38
38
  "@camstack/addon-auth": "1.2.11",
39
39
  "@camstack/addon-decoder-nodeav": "1.2.9",
40
40
  "@camstack/addon-notifiers": "1.2.12",
41
- "@camstack/addon-pipeline": "1.2.40",
42
- "@camstack/addon-pipeline-orchestrator": "1.2.22",
43
- "@camstack/addon-post-analysis": "1.2.31",
44
- "@camstack/sdk": "1.2.9",
41
+ "@camstack/addon-pipeline": "1.2.41",
42
+ "@camstack/addon-pipeline-orchestrator": "1.2.23",
43
+ "@camstack/addon-post-analysis": "1.2.33",
44
+ "@camstack/sdk": "1.2.10",
45
45
  "@camstack/shm-ring": "1.1.9",
46
- "@camstack/system": "1.2.40",
47
- "@camstack/types": "1.2.29",
48
- "@camstack/ui-library": "1.2.23",
46
+ "@camstack/system": "1.2.42",
47
+ "@camstack/types": "1.2.31",
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",