@camstack/types 1.2.40 → 1.2.42

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.
Files changed (35) hide show
  1. package/dist/addon.js +1 -1
  2. package/dist/addon.mjs +1 -1
  3. package/dist/canonical-hash-7nfBbEqR.mjs +35 -0
  4. package/dist/canonical-hash-BcZHRHIx.js +40 -0
  5. package/dist/capabilities/index.d.ts +2 -2
  6. package/dist/capabilities/notification-rules.cap.d.ts +41 -0
  7. package/dist/capabilities/pipeline-analytics.cap.d.ts +93 -6
  8. package/dist/capabilities/pipeline-orchestrator.cap.d.ts +123 -0
  9. package/dist/capabilities/pipeline-runner.cap.d.ts +143 -7
  10. package/dist/capabilities/platform-probe.cap.d.ts +3 -3
  11. package/dist/capabilities/recording.cap.d.ts +3 -0
  12. package/dist/capabilities/stream-broker.cap.d.ts +300 -0
  13. package/dist/encode-profile.d.ts +2 -0
  14. package/dist/ffmpeg/encode-defaults.d.ts +89 -0
  15. package/dist/ffmpeg/hwaccel.d.ts +98 -0
  16. package/dist/ffmpeg/invocation.d.ts +250 -0
  17. package/dist/ffmpeg/process.d.ts +135 -0
  18. package/dist/ffmpeg/sharing-key.d.ts +39 -0
  19. package/dist/generated/addon-api.d.ts +56 -0
  20. package/dist/generated/device-proxy.d.ts +1 -1
  21. package/dist/generated/method-access-map.d.ts +1 -1
  22. package/dist/generated/system-proxy.d.ts +2 -2
  23. package/dist/index.d.ts +6 -0
  24. package/dist/index.js +1595 -28
  25. package/dist/index.mjs +1548 -29
  26. package/dist/interfaces/camera-switches.d.ts +217 -0
  27. package/dist/interfaces/ops-log.d.ts +4 -0
  28. package/dist/interfaces/pipeline-runner-capability.d.ts +9 -1
  29. package/dist/node.d.ts +2 -0
  30. package/dist/node.js +270 -36
  31. package/dist/node.mjs +269 -36
  32. package/dist/pipeline/detail-crop.d.ts +122 -0
  33. package/dist/{sleep-CXimb854.mjs → sleep-BmNKsY7v.mjs} +5 -0
  34. package/dist/{sleep-DTce7-ch.js → sleep-Cvi1JxZp.js} +5 -0
  35. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8,6 +8,10 @@ export type { IAuthProvider } from './capabilities/auth-provider.cap.js';
8
8
  export type { DisposerChainOptions, DisposerFn } from './disposer-chain.js';
9
9
  export { DisposerChain } from './disposer-chain.js';
10
10
  export * from './encode-profile.js';
11
+ export * from './ffmpeg/invocation.js';
12
+ export * from './ffmpeg/encode-defaults.js';
13
+ export * from './ffmpeg/hwaccel.js';
14
+ export * from './ffmpeg/sharing-key.js';
11
15
  export * from './health/wiring-health.js';
12
16
  export type * from './interfaces/addon.js';
13
17
  export { DEFAULT_ADDON_PLACEMENT, isAgentOnlyPlacement, isDeployableToAgent, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveRunnerId, } from './interfaces/addon.js';
@@ -26,6 +30,7 @@ export type { AudioClassificationResult, IAudioAnalyzer } from './interfaces/aud
26
30
  export type * from './interfaces/audio-inference-engine.js';
27
31
  export type * from './interfaces/auth.js';
28
32
  export type * from './interfaces/camera-pipeline.js';
33
+ export * from './interfaces/camera-switches.js';
29
34
  export type * from './interfaces/capability.js';
30
35
  export type * from './interfaces/config-port.js';
31
36
  export type * from './interfaces/config-ui.js';
@@ -198,6 +203,7 @@ export { BACKEND_TO_FORMAT, DEVICE_BACKEND_TO_FORMAT, deviceBackendToFormat, for
198
203
  export { sleep, sleepCancellable } from './utils/sleep.js';
199
204
  export { decodeVectorBase64, encodeVectorBase64, vectorDimFromBase64, } from './utils/vector-codec.js';
200
205
  export { evaluateZoneRules, type ZoneRuleEvalResult } from './utils/zone-rule-eval.js';
206
+ export { DEFAULT_DETAIL_CROP_CONVENTION, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, type DetailCropConvention, DetailCropConventionSchema, type DetailCropRect, deriveDetailCropRect, type HydratedSettingsSection, type HydratedSettingsView, pickDetailCropConvention, readDetailCropConvention, } from './pipeline/detail-crop.js';
201
207
  export { bindAddonActions } from './helpers/bind-addon-actions.js';
202
208
  export type { DeviceOption, InferenceDeviceDescriptor, RuntimeId, } from './inference/runtime-capabilities.js';
203
209
  export { defaultDeviceFor, enumerateInferenceDevices, modelFormatForRuntime, runtimeDevices, scoreRuntimes, supportedRuntimes, } from './inference/runtime-capabilities.js';