@camstack/types 1.2.37 → 1.2.39

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/dist/addon.js CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
2
  const require_event_category = require("./event-category-BE4PDZ_3.js");
3
- const require_sleep = require("./sleep-CknKIHHE.js");
3
+ const require_sleep = require("./sleep-DTce7-ch.js");
4
4
  const require_err_msg = require("./err-msg-COpsHMw2.js");
5
5
  //#region src/generated/collection-array-methods.ts
6
6
  /**
package/dist/addon.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { t as EventCategory } from "./event-category-41fKf-q9.mjs";
2
- import { B as scopeKey, C as DeviceType, F as readNodePin, I as ReadinessRegistry, L as ReadinessTimeoutError, O as expandCapMethods, P as nodePin, a as asJsonObject, d as DEVICE_SCOPED_CAPS, f as isDeviceScopedCap, ft as DATAPLANE_SECRET_HEADER, ht as normalizeAddonInitResult, mt as BaseAddon, p as createDeviceProxy, pt as DisposerChain, s as asString, t as sleep, u as parseJsonUnknown, v as deviceOpsCapability, vt as emitReadiness, w as adminUiCapability, y as viewerUiCapability } from "./sleep-CSXrF9oC.mjs";
2
+ import { B as scopeKey, C as DeviceType, F as readNodePin, I as ReadinessRegistry, L as ReadinessTimeoutError, O as expandCapMethods, P as nodePin, a as asJsonObject, d as DEVICE_SCOPED_CAPS, f as isDeviceScopedCap, ft as DATAPLANE_SECRET_HEADER, ht as normalizeAddonInitResult, mt as BaseAddon, p as createDeviceProxy, pt as DisposerChain, s as asString, t as sleep, u as parseJsonUnknown, v as deviceOpsCapability, vt as emitReadiness, w as adminUiCapability, y as viewerUiCapability } from "./sleep-CXimb854.mjs";
3
3
  import { t as errMsg } from "./err-msg-IQTHeDzc.mjs";
4
4
  //#region src/generated/collection-array-methods.ts
5
5
  /**
@@ -1657,6 +1657,9 @@ export declare const pipelineAnalyticsCapability: {
1657
1657
  timestamp: z.ZodNumber;
1658
1658
  score: z.ZodNumber;
1659
1659
  }, z.core.$strip>>>, import("./capability-definition.js").CapabilityMethodKind>;
1660
+ readonly wipeObjectEmbeddings: import("./capability-definition.js").CapabilityMethodSchema<z.ZodVoid, z.ZodObject<{
1661
+ deleted: z.ZodNumber;
1662
+ }, z.core.$strip>, "mutation">;
1660
1663
  readonly rebuildObjectEmbeddings: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
1661
1664
  deviceId: z.ZodOptional<z.ZodNumber>;
1662
1665
  since: z.ZodOptional<z.ZodNumber>;
@@ -1665,13 +1668,21 @@ export declare const pipelineAnalyticsCapability: {
1665
1668
  square: z.ZodOptional<z.ZodBoolean>;
1666
1669
  maxTracks: z.ZodOptional<z.ZodNumber>;
1667
1670
  }, z.core.$strip>, z.ZodObject<{
1671
+ started: z.ZodBoolean;
1672
+ alreadyRunning: z.ZodBoolean;
1673
+ }, z.core.$strip>, "mutation">;
1674
+ readonly getObjectEmbeddingRebuildStatus: import("./capability-definition.js").CapabilityMethodSchema<z.ZodVoid, z.ZodObject<{
1675
+ running: z.ZodBoolean;
1668
1676
  scanned: z.ZodNumber;
1669
1677
  rebuilt: z.ZodNumber;
1670
1678
  missingKeyFrame: z.ZodNumber;
1671
1679
  missingBbox: z.ZodNumber;
1672
1680
  failed: z.ZodNumber;
1673
- complete: z.ZodBoolean;
1674
- }, z.core.$strip>, "mutation">;
1681
+ complete: z.ZodNullable<z.ZodBoolean>;
1682
+ startedAtMs: z.ZodNullable<z.ZodNumber>;
1683
+ finishedAtMs: z.ZodNullable<z.ZodNumber>;
1684
+ error: z.ZodNullable<z.ZodString>;
1685
+ }, z.core.$strip>, import("./capability-definition.js").CapabilityMethodKind>;
1675
1686
  };
1676
1687
  readonly events: {
1677
1688
  /**
@@ -4812,6 +4812,13 @@ export type AppRouter = TrpcCoreRouter<{
4812
4812
  output: z.infer<typeof pipelineAnalyticsCapability.methods.searchObjectEvents.output>;
4813
4813
  meta: object;
4814
4814
  }>;
4815
+ wipeObjectEmbeddings: TRPCMutationProcedure<{
4816
+ input: {
4817
+ nodeId?: string | undefined;
4818
+ } | undefined;
4819
+ output: z.infer<typeof pipelineAnalyticsCapability.methods.wipeObjectEmbeddings.output>;
4820
+ meta: object;
4821
+ }>;
4815
4822
  rebuildObjectEmbeddings: TRPCMutationProcedure<{
4816
4823
  input: {
4817
4824
  [x: string]: unknown;
@@ -4819,6 +4826,13 @@ export type AppRouter = TrpcCoreRouter<{
4819
4826
  output: z.infer<typeof pipelineAnalyticsCapability.methods.rebuildObjectEmbeddings.output>;
4820
4827
  meta: object;
4821
4828
  }>;
4829
+ getObjectEmbeddingRebuildStatus: TRPCQueryProcedure<{
4830
+ input: {
4831
+ nodeId?: string | undefined;
4832
+ } | undefined;
4833
+ output: z.infer<typeof pipelineAnalyticsCapability.methods.getObjectEmbeddingRebuildStatus.output>;
4834
+ meta: object;
4835
+ }>;
4822
4836
  }>>;
4823
4837
  pipelineExecutor: TRPCBuiltRouter<{
4824
4838
  ctx: TrpcContext;
@@ -6,7 +6,7 @@
6
6
  * scope+access check inside `protectedProcedure` (see
7
7
  * `server/backend/src/api/trpc/trpc.middleware.ts`).
8
8
  *
9
- * Coverage: 864 method paths across 120 capabilities.
9
+ * Coverage: 866 method paths across 120 capabilities.
10
10
  */
11
11
  import type { CapabilityMethodAccess } from '../capabilities/capability-definition.js';
12
12
  export interface MethodAccessRecord {
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
2
  const require_event_category = require("./event-category-BE4PDZ_3.js");
3
- const require_sleep = require("./sleep-CknKIHHE.js");
3
+ const require_sleep = require("./sleep-DTce7-ch.js");
4
4
  const require_enums = require("./enums.js");
5
5
  const require_err_msg = require("./err-msg-COpsHMw2.js");
6
6
  let zod = require("zod");
@@ -11732,7 +11732,31 @@ var RebuildObjectEmbeddingsInput = zod.z.object({
11732
11732
  /** Stop after this many tracks; the result reports whether more remain. */
11733
11733
  maxTracks: zod.z.number().int().positive().optional()
11734
11734
  });
11735
+ /**
11736
+ * Result of emptying the CLIP index.
11737
+ *
11738
+ * The clean slate before a policy change: a new crop margin or encoder model
11739
+ * leaves two feature spaces in one index whose cosine scores are not
11740
+ * comparable, so wiping and rebuilding is the only way to be sure every vector
11741
+ * means the same thing.
11742
+ */
11743
+ var WipeObjectEmbeddingsResultSchema = zod.z.object({ deleted: zod.z.number() });
11744
+ /**
11745
+ * Acknowledgement that a rebuild STARTED.
11746
+ *
11747
+ * The pass costs ~1s per track — 45 minutes for a 2,600-track fleet — so it
11748
+ * runs detached and this returns immediately. Waiting for it made the client
11749
+ * time out while the work carried on server-side, which is the worst of both:
11750
+ * no result and no way to know it was still going. Poll
11751
+ * `getObjectEmbeddingRebuildStatus` for progress.
11752
+ */
11735
11753
  var RebuildObjectEmbeddingsResultSchema = zod.z.object({
11754
+ started: zod.z.boolean(),
11755
+ /** True when a pass was already running; the new request is ignored. */
11756
+ alreadyRunning: zod.z.boolean()
11757
+ });
11758
+ var RebuildStatusSchema = zod.z.object({
11759
+ running: zod.z.boolean(),
11736
11760
  scanned: zod.z.number(),
11737
11761
  rebuilt: zod.z.number(),
11738
11762
  /** Tracks whose key frame is gone — nothing to re-embed from. */
@@ -11740,8 +11764,12 @@ var RebuildObjectEmbeddingsResultSchema = zod.z.object({
11740
11764
  /** Tracks with no usable detection box. */
11741
11765
  missingBbox: zod.z.number(),
11742
11766
  failed: zod.z.number(),
11743
- /** False when the pass stopped at `maxTracks` with tracks left. */
11744
- complete: zod.z.boolean()
11767
+ /** Set once a pass ends: true only when EVERYTHING was covered. */
11768
+ complete: zod.z.boolean().nullable(),
11769
+ startedAtMs: zod.z.number().nullable(),
11770
+ finishedAtMs: zod.z.number().nullable(),
11771
+ /** Present when the pass ended by throwing. */
11772
+ error: zod.z.string().nullable()
11745
11773
  });
11746
11774
  var pipelineAnalyticsCapability = {
11747
11775
  name: "pipeline-analytics",
@@ -12016,11 +12044,15 @@ var pipelineAnalyticsCapability = {
12016
12044
  * `minScore`, sorted descending by score.
12017
12045
  */
12018
12046
  searchObjectEvents: require_sleep.method(SearchObjectEventsInput, zod.z.array(ScoredObjectEventSchema).readonly()),
12047
+ wipeObjectEmbeddings: require_sleep.method(zod.z.void(), WipeObjectEmbeddingsResultSchema, {
12048
+ kind: "mutation",
12049
+ auth: "admin"
12050
+ }),
12019
12051
  rebuildObjectEmbeddings: require_sleep.method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
12020
12052
  kind: "mutation",
12021
- auth: "admin",
12022
- timeoutMs: 30 * 6e4
12023
- })
12053
+ auth: "admin"
12054
+ }),
12055
+ getObjectEmbeddingRebuildStatus: require_sleep.method(zod.z.void(), RebuildStatusSchema)
12024
12056
  },
12025
12057
  events: {
12026
12058
  /**
@@ -30284,6 +30316,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
30284
30316
  addonId: null,
30285
30317
  access: "view"
30286
30318
  },
30319
+ "pipelineAnalytics.getObjectEmbeddingRebuildStatus": {
30320
+ capName: "pipeline-analytics",
30321
+ capScope: "device",
30322
+ addonId: null,
30323
+ access: "view"
30324
+ },
30287
30325
  "pipelineAnalytics.getObjectEvents": {
30288
30326
  capName: "pipeline-analytics",
30289
30327
  capScope: "device",
@@ -30386,6 +30424,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
30386
30424
  addonId: null,
30387
30425
  access: "delete"
30388
30426
  },
30427
+ "pipelineAnalytics.wipeObjectEmbeddings": {
30428
+ capName: "pipeline-analytics",
30429
+ capScope: "device",
30430
+ addonId: null,
30431
+ access: "delete"
30432
+ },
30389
30433
  "pipelineExecutor.cacheFrameInPool": {
30390
30434
  capName: "pipeline-executor",
30391
30435
  capScope: "system",
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { t as EventCategory } from "./event-category-41fKf-q9.mjs";
2
- import { $ as ProfileRtspEntrySchema, A as method, B as scopeKey, C as DeviceType, Ct as collectHydratedFieldValues, D as event, E as DEVICE_STATUS_METHOD, F as readNodePin, G as CamStreamKindSchema, H as BrokerStatusSchema, I as ReadinessRegistry, J as DecodedAudioChunkSchema, K as CamStreamResolutionSchema, L as ReadinessTimeoutError, M as systemMethod, N as CAP_NODE_PIN_CONTEXT_KEY, O as expandCapMethods, P as nodePin, Q as FrameHandleSchema, R as emitDownForOwnedCaps, S as DeviceRole, St as collectHydratedFieldEntries, T as DEVICE_SETTINGS_CONTRIBUTION_METHODS, Tt as resolveHydratedFieldValue, U as CAM_PROFILE_ORDER, V as BrokerStatsSchema, W as CamProfileSchema, X as EncodedPacketSchema, Y as DecodedFrameSchema, Z as FrameHandleFormatSchema, _ as RawStateResultSchema, _t as createEvent, a as asJsonObject, at as SubscribeAudioChunksResultSchema, b as ChargingStatus, bt as WELL_KNOWN_TABS, c as parseJsonArray, ct as makeProfileBrokerId, d as DEVICE_SCOPED_CAPS, dt as selectAssignedProfileSlots, et as ProfileSlotSchema, f as isDeviceScopedCap, ft as DATAPLANE_SECRET_HEADER, g as createSliceHandle, gt as createDurableState, h as createMirrorSource, ht as normalizeAddonInitResult, i as asJsonArray, it as SubscribeAudioChunksInputSchema, j as resolveCapMount, k as isDeviceConfigCap, l as parseJsonObject, lt as makeSourceBrokerId, m as createLazyTrpcSource, mt as BaseAddon, n as sleepCancellable, nt as StreamSourceEntrySchema, o as asNumber, ot as SubscribeFramesInputSchema, p as createDeviceProxy, pt as DisposerChain, q as CameraStreamSchema, r as asBoolean, rt as StreamSourceSchema, s as asString, st as SubscribeFramesResultSchema, t as sleep, tt as ProfileSlotStatusSchema, u as parseJsonUnknown, ut as parseProfileBrokerId, v as deviceOpsCapability, vt as emitReadiness, w as adminUiCapability, wt as hydrateSchema, x as DeviceFeature, xt as WELL_KNOWN_TAB_MAP, y as viewerUiCapability, yt as isEvent, z as readinessKey } from "./sleep-CSXrF9oC.mjs";
2
+ import { $ as ProfileRtspEntrySchema, A as method, B as scopeKey, C as DeviceType, Ct as collectHydratedFieldValues, D as event, E as DEVICE_STATUS_METHOD, F as readNodePin, G as CamStreamKindSchema, H as BrokerStatusSchema, I as ReadinessRegistry, J as DecodedAudioChunkSchema, K as CamStreamResolutionSchema, L as ReadinessTimeoutError, M as systemMethod, N as CAP_NODE_PIN_CONTEXT_KEY, O as expandCapMethods, P as nodePin, Q as FrameHandleSchema, R as emitDownForOwnedCaps, S as DeviceRole, St as collectHydratedFieldEntries, T as DEVICE_SETTINGS_CONTRIBUTION_METHODS, Tt as resolveHydratedFieldValue, U as CAM_PROFILE_ORDER, V as BrokerStatsSchema, W as CamProfileSchema, X as EncodedPacketSchema, Y as DecodedFrameSchema, Z as FrameHandleFormatSchema, _ as RawStateResultSchema, _t as createEvent, a as asJsonObject, at as SubscribeAudioChunksResultSchema, b as ChargingStatus, bt as WELL_KNOWN_TABS, c as parseJsonArray, ct as makeProfileBrokerId, d as DEVICE_SCOPED_CAPS, dt as selectAssignedProfileSlots, et as ProfileSlotSchema, f as isDeviceScopedCap, ft as DATAPLANE_SECRET_HEADER, g as createSliceHandle, gt as createDurableState, h as createMirrorSource, ht as normalizeAddonInitResult, i as asJsonArray, it as SubscribeAudioChunksInputSchema, j as resolveCapMount, k as isDeviceConfigCap, l as parseJsonObject, lt as makeSourceBrokerId, m as createLazyTrpcSource, mt as BaseAddon, n as sleepCancellable, nt as StreamSourceEntrySchema, o as asNumber, ot as SubscribeFramesInputSchema, p as createDeviceProxy, pt as DisposerChain, q as CameraStreamSchema, r as asBoolean, rt as StreamSourceSchema, s as asString, st as SubscribeFramesResultSchema, t as sleep, tt as ProfileSlotStatusSchema, u as parseJsonUnknown, ut as parseProfileBrokerId, v as deviceOpsCapability, vt as emitReadiness, w as adminUiCapability, wt as hydrateSchema, x as DeviceFeature, xt as WELL_KNOWN_TAB_MAP, y as viewerUiCapability, yt as isEvent, z as readinessKey } from "./sleep-CXimb854.mjs";
3
3
  import { EventSourceType } from "./enums.mjs";
4
4
  import { t as errMsg } from "./err-msg-IQTHeDzc.mjs";
5
5
  import { z } from "zod";
@@ -11731,7 +11731,31 @@ var RebuildObjectEmbeddingsInput = z.object({
11731
11731
  /** Stop after this many tracks; the result reports whether more remain. */
11732
11732
  maxTracks: z.number().int().positive().optional()
11733
11733
  });
11734
+ /**
11735
+ * Result of emptying the CLIP index.
11736
+ *
11737
+ * The clean slate before a policy change: a new crop margin or encoder model
11738
+ * leaves two feature spaces in one index whose cosine scores are not
11739
+ * comparable, so wiping and rebuilding is the only way to be sure every vector
11740
+ * means the same thing.
11741
+ */
11742
+ var WipeObjectEmbeddingsResultSchema = z.object({ deleted: z.number() });
11743
+ /**
11744
+ * Acknowledgement that a rebuild STARTED.
11745
+ *
11746
+ * The pass costs ~1s per track — 45 minutes for a 2,600-track fleet — so it
11747
+ * runs detached and this returns immediately. Waiting for it made the client
11748
+ * time out while the work carried on server-side, which is the worst of both:
11749
+ * no result and no way to know it was still going. Poll
11750
+ * `getObjectEmbeddingRebuildStatus` for progress.
11751
+ */
11734
11752
  var RebuildObjectEmbeddingsResultSchema = z.object({
11753
+ started: z.boolean(),
11754
+ /** True when a pass was already running; the new request is ignored. */
11755
+ alreadyRunning: z.boolean()
11756
+ });
11757
+ var RebuildStatusSchema = z.object({
11758
+ running: z.boolean(),
11735
11759
  scanned: z.number(),
11736
11760
  rebuilt: z.number(),
11737
11761
  /** Tracks whose key frame is gone — nothing to re-embed from. */
@@ -11739,8 +11763,12 @@ var RebuildObjectEmbeddingsResultSchema = z.object({
11739
11763
  /** Tracks with no usable detection box. */
11740
11764
  missingBbox: z.number(),
11741
11765
  failed: z.number(),
11742
- /** False when the pass stopped at `maxTracks` with tracks left. */
11743
- complete: z.boolean()
11766
+ /** Set once a pass ends: true only when EVERYTHING was covered. */
11767
+ complete: z.boolean().nullable(),
11768
+ startedAtMs: z.number().nullable(),
11769
+ finishedAtMs: z.number().nullable(),
11770
+ /** Present when the pass ended by throwing. */
11771
+ error: z.string().nullable()
11744
11772
  });
11745
11773
  var pipelineAnalyticsCapability = {
11746
11774
  name: "pipeline-analytics",
@@ -12015,11 +12043,15 @@ var pipelineAnalyticsCapability = {
12015
12043
  * `minScore`, sorted descending by score.
12016
12044
  */
12017
12045
  searchObjectEvents: method(SearchObjectEventsInput, z.array(ScoredObjectEventSchema).readonly()),
12046
+ wipeObjectEmbeddings: method(z.void(), WipeObjectEmbeddingsResultSchema, {
12047
+ kind: "mutation",
12048
+ auth: "admin"
12049
+ }),
12018
12050
  rebuildObjectEmbeddings: method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
12019
12051
  kind: "mutation",
12020
- auth: "admin",
12021
- timeoutMs: 30 * 6e4
12022
- })
12052
+ auth: "admin"
12053
+ }),
12054
+ getObjectEmbeddingRebuildStatus: method(z.void(), RebuildStatusSchema)
12023
12055
  },
12024
12056
  events: {
12025
12057
  /**
@@ -30283,6 +30315,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
30283
30315
  addonId: null,
30284
30316
  access: "view"
30285
30317
  },
30318
+ "pipelineAnalytics.getObjectEmbeddingRebuildStatus": {
30319
+ capName: "pipeline-analytics",
30320
+ capScope: "device",
30321
+ addonId: null,
30322
+ access: "view"
30323
+ },
30286
30324
  "pipelineAnalytics.getObjectEvents": {
30287
30325
  capName: "pipeline-analytics",
30288
30326
  capScope: "device",
@@ -30385,6 +30423,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
30385
30423
  addonId: null,
30386
30424
  access: "delete"
30387
30425
  },
30426
+ "pipelineAnalytics.wipeObjectEmbeddings": {
30427
+ capName: "pipeline-analytics",
30428
+ capScope: "device",
30429
+ addonId: null,
30430
+ access: "delete"
30431
+ },
30388
30432
  "pipelineExecutor.cacheFrameInPool": {
30389
30433
  capName: "pipeline-executor",
30390
30434
  capScope: "system",
@@ -3164,7 +3164,9 @@ function createDeviceProxy(api, binding, opts) {
3164
3164
  getTrackMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrackMedia", "query", input),
3165
3165
  listTrackMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listTrackMedia", "query", input),
3166
3166
  searchObjectEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "searchObjectEvents", "query", input),
3167
+ wipeObjectEmbeddings: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "wipeObjectEmbeddings", "mutation", input),
3167
3168
  rebuildObjectEmbeddings: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "rebuildObjectEmbeddings", "mutation", input),
3169
+ getObjectEmbeddingRebuildStatus: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getObjectEmbeddingRebuildStatus", "query", input),
3168
3170
  getDeviceSettingsContribution: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getDeviceSettingsContribution", "query", input),
3169
3171
  getDeviceLiveContribution: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getDeviceLiveContribution", "query", input),
3170
3172
  applyDeviceSettingsPatch: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "applyDeviceSettingsPatch", "mutation", input)
@@ -3164,7 +3164,9 @@ function createDeviceProxy(api, binding, opts) {
3164
3164
  getTrackMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getTrackMedia", "query", input),
3165
3165
  listTrackMedia: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "listTrackMedia", "query", input),
3166
3166
  searchObjectEvents: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "searchObjectEvents", "query", input),
3167
+ wipeObjectEmbeddings: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "wipeObjectEmbeddings", "mutation", input),
3167
3168
  rebuildObjectEmbeddings: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "rebuildObjectEmbeddings", "mutation", input),
3169
+ getObjectEmbeddingRebuildStatus: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getObjectEmbeddingRebuildStatus", "query", input),
3168
3170
  getDeviceSettingsContribution: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getDeviceSettingsContribution", "query", input),
3169
3171
  getDeviceLiveContribution: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "getDeviceLiveContribution", "query", input),
3170
3172
  applyDeviceSettingsPatch: (input) => dispatch("pipeline-analytics", "pipelineAnalytics", "applyDeviceSettingsPatch", "mutation", input)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/types",
3
- "version": "1.2.37",
3
+ "version": "1.2.39",
4
4
  "description": "Shared types, interfaces, and model catalogs for the CamStack detection ecosystem",
5
5
  "keywords": [
6
6
  "camstack",