@camstack/addon-terminal 0.1.91 → 0.1.93

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
@@ -7727,6 +7727,186 @@ var CameraSwitchGroupSchema = object({
7727
7727
  var DETECTION_PIPELINE_CAP_NAME = "detection-pipeline";
7728
7728
  var AUDIO_ANALYSIS_CAP_NAME = "audio-analysis";
7729
7729
  /**
7730
+ * What the gate decided about a birth, from the CALLER's point of view.
7731
+ *
7732
+ * Deliberately not `ConfirmationVerdict`: `undecided` is not a birth decision
7733
+ * at all — it is a deferral, and the row is written when the deferral ENDS.
7734
+ * The third member is the one the gate's own type cannot express, because
7735
+ * exhaustion is a property of how long the caller waited.
7736
+ */
7737
+ var BirthDecisionVerdictSchema = _enum([
7738
+ "confirmed",
7739
+ "suppressed",
7740
+ "exhausted-fallback"
7741
+ ]);
7742
+ /** One birth decision, as it is kept. */
7743
+ var BirthDecisionRecordSchema = object({
7744
+ id: string(),
7745
+ /** Epoch ms the VERDICT was taken (not the birth instant — see `firstSeen`). */
7746
+ at: number().int(),
7747
+ /** The camera. Required: every question here is asked per-camera. */
7748
+ deviceId: number().int(),
7749
+ /**
7750
+ * The track the decision was about. PROVENANCE, not ownership — a suppressed
7751
+ * birth has no track at all, and a confirmed one is expected to age out long
7752
+ * before this row does. Named `sourceTrackId` so the retention model's
7753
+ * ownership derivation (`collection-classification.ts`, which keys on a
7754
+ * column literally called `trackId`) cannot reach it.
7755
+ */
7756
+ sourceTrackId: string(),
7757
+ /** The candidate's claimed class. The miss rate is asked per class too. */
7758
+ className: string(),
7759
+ verdict: BirthDecisionVerdictSchema,
7760
+ /**
7761
+ * The gate's own `ConfirmationReason` (`confirmed`, `suppressed`,
7762
+ * `native-pass`, `no-crop`, `timeout`, `carried-inconclusive`, …), or `null`
7763
+ * when the gate is DISABLED and every birth is waved through. `null` is not
7764
+ * "unknown": it says the gate took no measurement because it was off, which
7765
+ * is a different population and must never be averaged in with the rest.
7766
+ */
7767
+ reason: string().nullable(),
7768
+ /** Deferral attempts this birth used. 0 = decided on its first look. */
7769
+ attempts: number().int(),
7770
+ /** Ms from the FIRST undecided attempt to this verdict. 0 = never deferred. */
7771
+ deferredForMs: number().int(),
7772
+ /**
7773
+ * THE COLUMN THE RE-OFFER DEFECT IS COUNTED IN.
7774
+ *
7775
+ * `true` when the frame the verdict was taken on carried no matched
7776
+ * detection for this track — the tracker was coasting a frozen box and the
7777
+ * subject was not observed. The deferred-birth re-offer pulls the candidate
7778
+ * straight out of `result.tracked` without checking, so this is reachable
7779
+ * today; the question is the RATE, per camera, and whether refusing those
7780
+ * frames would have cost real tracks (cross-read against `verdict` and
7781
+ * `decidedByBirthEvidence`).
7782
+ */
7783
+ decidedOnCoastedFrame: boolean(),
7784
+ /** Were D379 birth-instant pixels in hand when this candidate was submitted? */
7785
+ birthEvidenceAvailable: boolean(),
7786
+ /**
7787
+ * Did those pixels DECIDE it (`cropSource === 'carried'`)? Available and
7788
+ * deciding are different: the carried crop is confirm-only, so a candidate
7789
+ * can hold evidence, be found inconclusive on it, and be decided by a native
7790
+ * crop of a later instant. A coasted decision backed by carried evidence is
7791
+ * a real observation of the birth instant; one without it is not.
7792
+ */
7793
+ decidedByBirthEvidence: boolean(),
7794
+ /** Best class-compatible crop score, or `null` when nothing compatible was
7795
+ * found — deliberately not 0, which would be a measurement that never was. */
7796
+ bestScore: number().nullable(),
7797
+ /** The bar this candidate actually faced (the phantom-cell hook may raise it). */
7798
+ appliedMinConfidence: number().nullable(),
7799
+ /**
7800
+ * The track's own `firstSeen` — the candidate's first frame, which is where
7801
+ * the timeline starts. `null` for a suppressed birth, which has no track.
7802
+ */
7803
+ firstSeen: number().int().nullable(),
7804
+ /**
7805
+ * The device's most recent motion RISING EDGE at the moment of the decision,
7806
+ * or `null` when there is none, it is older than
7807
+ * {@link MAX_BIRTH_LATENCY_PROXY_MS}, or this runner never saw one.
7808
+ */
7809
+ motionOnsetAt: number().int().nullable(),
7810
+ /**
7811
+ * `firstSeen − motionOnsetAt` — THE OPERATOR'S COMPLAINT, IN MILLISECONDS,
7812
+ * AND THE WEAKEST NUMBER IN THIS ROW. Read the error bars before quoting it.
7813
+ *
7814
+ * **Why motion onset and not something else.** Two other proxies were
7815
+ * considered and rejected:
7816
+ * - *the recording/pipeline session start*: for a camera on
7817
+ * `detectionMode: 'always'` the session opens at process start, hours
7818
+ * before any subject. It measures nothing.
7819
+ * - *the first detection on the device in this burst*: CIRCULAR. A track's
7820
+ * `firstSeen` IS the first detection of that object, so for the track that
7821
+ * OPENS a burst — the only one the operator is complaining about — the two
7822
+ * are the same instant and the latency is 0 by construction.
7823
+ * Motion onset is the only in-process signal produced by a DIFFERENT
7824
+ * mechanism from the object detector, so it is the only one that can precede
7825
+ * it. It is also already maintained per-device at frame rate on this very
7826
+ * node (`handleMotionAnalysis` / `handleOnboardMotion`), which is what makes
7827
+ * it free — and, decisively, the frame path and the motion path are gated to
7828
+ * the SAME designated post-processing node, so the mirror is never empty for
7829
+ * a camera whose births land here.
7830
+ *
7831
+ * **Error bars, all of them.**
7832
+ * 1. *Motion has no class.* A burst opened by rain, a headlight sweeping a
7833
+ * wall or a branch, and only later joined by the person, OVERSTATES the
7834
+ * latency without bound. Mitigated, never removed, by
7835
+ * {@link BirthDecisionRecord.birthIndexInBurst}: only index 0 is a
7836
+ * candidate for "this burst is this subject", and even then it is a
7837
+ * candidate, not a fact.
7838
+ * 2. *The sign is not guaranteed.* The analyzer needs a pixel-count and
7839
+ * intensity threshold. A subject entering slowly at the far edge of the
7840
+ * frame can clear the detector's confidence floor BEFORE it clears the
7841
+ * motion floor, making this negative. Negatives are stored as-is and
7842
+ * never clamped — clamping would fabricate the distribution's left tail,
7843
+ * which is the half that says the proxy is unreliable.
7844
+ * 3. *Onboard motion carries firmware latency of unknown, per-model offset*
7845
+ * (hundreds of ms), plus camera-vs-hub clock skew on top. Numbers are
7846
+ * therefore comparable WITHIN a camera and not across cameras of
7847
+ * different motion sources. The motion source is deliberately not copied
7848
+ * here — it belongs to the addon that owns the device (D224) and this is
7849
+ * a write on the frame path — so group by `deviceId`, which is how the
7850
+ * question is always asked anyway.
7851
+ * 4. *Continuous motion.* On a busy scene the burst never closes and the
7852
+ * onset is minutes old. Bounded by {@link MAX_BIRTH_LATENCY_PROXY_MS};
7853
+ * past it this is `null`.
7854
+ * 5. *No motion signal at all* — analyzer off, onboard-only camera not
7855
+ * reporting, or nothing since boot: `null`. Which is the truth about a
7856
+ * camera nobody has a reference instant for.
7857
+ *
7858
+ * So this is a per-camera DISTRIBUTION over index-0 births, and it is honest
7859
+ * as such. It is not a per-track fact and must never be shown as one.
7860
+ */
7861
+ birthLatencyMs: number().int().nullable(),
7862
+ /**
7863
+ * How many births this device has already decided since that motion onset.
7864
+ * 0 = the first, i.e. the only index at which the burst plausibly belongs to
7865
+ * this subject. `null` when there is no usable onset.
7866
+ */
7867
+ birthIndexInBurst: number().int().nullable()
7868
+ });
7869
+ /** Query input for `listBirthDecisions` — newest first, one camera or all. */
7870
+ var BirthDecisionQueryInputSchema = object({
7871
+ /** Restrict to a single camera; omit for every row. */
7872
+ deviceId: number().int().optional(),
7873
+ /** Only decisions at or after this epoch ms. */
7874
+ since: number().int().optional(),
7875
+ /** Restrict to one verdict — the miss rate is read one population at a time. */
7876
+ verdict: BirthDecisionVerdictSchema.optional(),
7877
+ /** Max rows returned, newest-first. */
7878
+ limit: number().int().min(1).max(5e3).optional()
7879
+ });
7880
+ /** One archived note — the operator's words plus enough context to find what
7881
+ * they were looking at, after the track itself is gone. */
7882
+ var ArchivedDebugNoteSchema = object({
7883
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7884
+ * same sentence about the same track lands on the row already there. */
7885
+ id: string(),
7886
+ /** The operator's own words, verbatim. */
7887
+ note: string(),
7888
+ /** The camera. Required — every question here is asked per-camera. */
7889
+ deviceId: number().int(),
7890
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7891
+ * is expected to be gone, and this row is not a reference to it. */
7892
+ sourceTrackId: string(),
7893
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7894
+ archivedAt: number().int(),
7895
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7896
+ trackStartedAt: number().int().nullable(),
7897
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7898
+ trackClass: string().nullable(),
7899
+ /** The track's display label at review time; `null` when it had none. */
7900
+ trackLabel: string().nullable()
7901
+ });
7902
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7903
+ var ArchivedDebugNoteQueryInputSchema = object({
7904
+ /** Restrict to a single camera; omit for every row. */
7905
+ deviceId: number().int().optional(),
7906
+ /** Max rows returned, newest-first. */
7907
+ limit: number().int().min(1).max(1e3).optional()
7908
+ });
7909
+ /**
7730
7910
  * Ops-log — the durable, append-only operations audit shared by the
7731
7911
  * recordings and events management surfaces.
7732
7912
  *
@@ -20108,7 +20288,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20108
20288
  deviceId: number(),
20109
20289
  trackId: string(),
20110
20290
  flags: TrackFlagsPatchSchema
20111
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20291
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(BirthDecisionQueryInputSchema, array(BirthDecisionRecordSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20112
20292
  kind: "query",
20113
20293
  auth: "admin"
20114
20294
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -37232,6 +37412,18 @@ Object.freeze({
37232
37412
  addonId: null,
37233
37413
  access: "view"
37234
37414
  },
37415
+ "pipelineAnalytics.listArchivedDebugNotes": {
37416
+ capName: "pipeline-analytics",
37417
+ capScope: "device",
37418
+ addonId: null,
37419
+ access: "view"
37420
+ },
37421
+ "pipelineAnalytics.listBirthDecisions": {
37422
+ capName: "pipeline-analytics",
37423
+ capScope: "device",
37424
+ addonId: null,
37425
+ access: "view"
37426
+ },
37235
37427
  "pipelineAnalytics.listEventKinds": {
37236
37428
  capName: "pipeline-analytics",
37237
37429
  capScope: "device",
@@ -41019,6 +41211,16 @@ Object.freeze({
41019
41211
  form: "array",
41020
41212
  optional: true
41021
41213
  }],
41214
+ "pipelineAnalytics.listArchivedDebugNotes": [{
41215
+ name: "deviceId",
41216
+ form: "single",
41217
+ optional: true
41218
+ }],
41219
+ "pipelineAnalytics.listBirthDecisions": [{
41220
+ name: "deviceId",
41221
+ form: "single",
41222
+ optional: true
41223
+ }],
41022
41224
  "pipelineAnalytics.listEventKinds": [{
41023
41225
  name: "deviceId",
41024
41226
  form: "single",
package/dist/addon.mjs CHANGED
@@ -7704,6 +7704,186 @@ var CameraSwitchGroupSchema = object({
7704
7704
  var DETECTION_PIPELINE_CAP_NAME = "detection-pipeline";
7705
7705
  var AUDIO_ANALYSIS_CAP_NAME = "audio-analysis";
7706
7706
  /**
7707
+ * What the gate decided about a birth, from the CALLER's point of view.
7708
+ *
7709
+ * Deliberately not `ConfirmationVerdict`: `undecided` is not a birth decision
7710
+ * at all — it is a deferral, and the row is written when the deferral ENDS.
7711
+ * The third member is the one the gate's own type cannot express, because
7712
+ * exhaustion is a property of how long the caller waited.
7713
+ */
7714
+ var BirthDecisionVerdictSchema = _enum([
7715
+ "confirmed",
7716
+ "suppressed",
7717
+ "exhausted-fallback"
7718
+ ]);
7719
+ /** One birth decision, as it is kept. */
7720
+ var BirthDecisionRecordSchema = object({
7721
+ id: string(),
7722
+ /** Epoch ms the VERDICT was taken (not the birth instant — see `firstSeen`). */
7723
+ at: number().int(),
7724
+ /** The camera. Required: every question here is asked per-camera. */
7725
+ deviceId: number().int(),
7726
+ /**
7727
+ * The track the decision was about. PROVENANCE, not ownership — a suppressed
7728
+ * birth has no track at all, and a confirmed one is expected to age out long
7729
+ * before this row does. Named `sourceTrackId` so the retention model's
7730
+ * ownership derivation (`collection-classification.ts`, which keys on a
7731
+ * column literally called `trackId`) cannot reach it.
7732
+ */
7733
+ sourceTrackId: string(),
7734
+ /** The candidate's claimed class. The miss rate is asked per class too. */
7735
+ className: string(),
7736
+ verdict: BirthDecisionVerdictSchema,
7737
+ /**
7738
+ * The gate's own `ConfirmationReason` (`confirmed`, `suppressed`,
7739
+ * `native-pass`, `no-crop`, `timeout`, `carried-inconclusive`, …), or `null`
7740
+ * when the gate is DISABLED and every birth is waved through. `null` is not
7741
+ * "unknown": it says the gate took no measurement because it was off, which
7742
+ * is a different population and must never be averaged in with the rest.
7743
+ */
7744
+ reason: string().nullable(),
7745
+ /** Deferral attempts this birth used. 0 = decided on its first look. */
7746
+ attempts: number().int(),
7747
+ /** Ms from the FIRST undecided attempt to this verdict. 0 = never deferred. */
7748
+ deferredForMs: number().int(),
7749
+ /**
7750
+ * THE COLUMN THE RE-OFFER DEFECT IS COUNTED IN.
7751
+ *
7752
+ * `true` when the frame the verdict was taken on carried no matched
7753
+ * detection for this track — the tracker was coasting a frozen box and the
7754
+ * subject was not observed. The deferred-birth re-offer pulls the candidate
7755
+ * straight out of `result.tracked` without checking, so this is reachable
7756
+ * today; the question is the RATE, per camera, and whether refusing those
7757
+ * frames would have cost real tracks (cross-read against `verdict` and
7758
+ * `decidedByBirthEvidence`).
7759
+ */
7760
+ decidedOnCoastedFrame: boolean(),
7761
+ /** Were D379 birth-instant pixels in hand when this candidate was submitted? */
7762
+ birthEvidenceAvailable: boolean(),
7763
+ /**
7764
+ * Did those pixels DECIDE it (`cropSource === 'carried'`)? Available and
7765
+ * deciding are different: the carried crop is confirm-only, so a candidate
7766
+ * can hold evidence, be found inconclusive on it, and be decided by a native
7767
+ * crop of a later instant. A coasted decision backed by carried evidence is
7768
+ * a real observation of the birth instant; one without it is not.
7769
+ */
7770
+ decidedByBirthEvidence: boolean(),
7771
+ /** Best class-compatible crop score, or `null` when nothing compatible was
7772
+ * found — deliberately not 0, which would be a measurement that never was. */
7773
+ bestScore: number().nullable(),
7774
+ /** The bar this candidate actually faced (the phantom-cell hook may raise it). */
7775
+ appliedMinConfidence: number().nullable(),
7776
+ /**
7777
+ * The track's own `firstSeen` — the candidate's first frame, which is where
7778
+ * the timeline starts. `null` for a suppressed birth, which has no track.
7779
+ */
7780
+ firstSeen: number().int().nullable(),
7781
+ /**
7782
+ * The device's most recent motion RISING EDGE at the moment of the decision,
7783
+ * or `null` when there is none, it is older than
7784
+ * {@link MAX_BIRTH_LATENCY_PROXY_MS}, or this runner never saw one.
7785
+ */
7786
+ motionOnsetAt: number().int().nullable(),
7787
+ /**
7788
+ * `firstSeen − motionOnsetAt` — THE OPERATOR'S COMPLAINT, IN MILLISECONDS,
7789
+ * AND THE WEAKEST NUMBER IN THIS ROW. Read the error bars before quoting it.
7790
+ *
7791
+ * **Why motion onset and not something else.** Two other proxies were
7792
+ * considered and rejected:
7793
+ * - *the recording/pipeline session start*: for a camera on
7794
+ * `detectionMode: 'always'` the session opens at process start, hours
7795
+ * before any subject. It measures nothing.
7796
+ * - *the first detection on the device in this burst*: CIRCULAR. A track's
7797
+ * `firstSeen` IS the first detection of that object, so for the track that
7798
+ * OPENS a burst — the only one the operator is complaining about — the two
7799
+ * are the same instant and the latency is 0 by construction.
7800
+ * Motion onset is the only in-process signal produced by a DIFFERENT
7801
+ * mechanism from the object detector, so it is the only one that can precede
7802
+ * it. It is also already maintained per-device at frame rate on this very
7803
+ * node (`handleMotionAnalysis` / `handleOnboardMotion`), which is what makes
7804
+ * it free — and, decisively, the frame path and the motion path are gated to
7805
+ * the SAME designated post-processing node, so the mirror is never empty for
7806
+ * a camera whose births land here.
7807
+ *
7808
+ * **Error bars, all of them.**
7809
+ * 1. *Motion has no class.* A burst opened by rain, a headlight sweeping a
7810
+ * wall or a branch, and only later joined by the person, OVERSTATES the
7811
+ * latency without bound. Mitigated, never removed, by
7812
+ * {@link BirthDecisionRecord.birthIndexInBurst}: only index 0 is a
7813
+ * candidate for "this burst is this subject", and even then it is a
7814
+ * candidate, not a fact.
7815
+ * 2. *The sign is not guaranteed.* The analyzer needs a pixel-count and
7816
+ * intensity threshold. A subject entering slowly at the far edge of the
7817
+ * frame can clear the detector's confidence floor BEFORE it clears the
7818
+ * motion floor, making this negative. Negatives are stored as-is and
7819
+ * never clamped — clamping would fabricate the distribution's left tail,
7820
+ * which is the half that says the proxy is unreliable.
7821
+ * 3. *Onboard motion carries firmware latency of unknown, per-model offset*
7822
+ * (hundreds of ms), plus camera-vs-hub clock skew on top. Numbers are
7823
+ * therefore comparable WITHIN a camera and not across cameras of
7824
+ * different motion sources. The motion source is deliberately not copied
7825
+ * here — it belongs to the addon that owns the device (D224) and this is
7826
+ * a write on the frame path — so group by `deviceId`, which is how the
7827
+ * question is always asked anyway.
7828
+ * 4. *Continuous motion.* On a busy scene the burst never closes and the
7829
+ * onset is minutes old. Bounded by {@link MAX_BIRTH_LATENCY_PROXY_MS};
7830
+ * past it this is `null`.
7831
+ * 5. *No motion signal at all* — analyzer off, onboard-only camera not
7832
+ * reporting, or nothing since boot: `null`. Which is the truth about a
7833
+ * camera nobody has a reference instant for.
7834
+ *
7835
+ * So this is a per-camera DISTRIBUTION over index-0 births, and it is honest
7836
+ * as such. It is not a per-track fact and must never be shown as one.
7837
+ */
7838
+ birthLatencyMs: number().int().nullable(),
7839
+ /**
7840
+ * How many births this device has already decided since that motion onset.
7841
+ * 0 = the first, i.e. the only index at which the burst plausibly belongs to
7842
+ * this subject. `null` when there is no usable onset.
7843
+ */
7844
+ birthIndexInBurst: number().int().nullable()
7845
+ });
7846
+ /** Query input for `listBirthDecisions` — newest first, one camera or all. */
7847
+ var BirthDecisionQueryInputSchema = object({
7848
+ /** Restrict to a single camera; omit for every row. */
7849
+ deviceId: number().int().optional(),
7850
+ /** Only decisions at or after this epoch ms. */
7851
+ since: number().int().optional(),
7852
+ /** Restrict to one verdict — the miss rate is read one population at a time. */
7853
+ verdict: BirthDecisionVerdictSchema.optional(),
7854
+ /** Max rows returned, newest-first. */
7855
+ limit: number().int().min(1).max(5e3).optional()
7856
+ });
7857
+ /** One archived note — the operator's words plus enough context to find what
7858
+ * they were looking at, after the track itself is gone. */
7859
+ var ArchivedDebugNoteSchema = object({
7860
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7861
+ * same sentence about the same track lands on the row already there. */
7862
+ id: string(),
7863
+ /** The operator's own words, verbatim. */
7864
+ note: string(),
7865
+ /** The camera. Required — every question here is asked per-camera. */
7866
+ deviceId: number().int(),
7867
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7868
+ * is expected to be gone, and this row is not a reference to it. */
7869
+ sourceTrackId: string(),
7870
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7871
+ archivedAt: number().int(),
7872
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7873
+ trackStartedAt: number().int().nullable(),
7874
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7875
+ trackClass: string().nullable(),
7876
+ /** The track's display label at review time; `null` when it had none. */
7877
+ trackLabel: string().nullable()
7878
+ });
7879
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7880
+ var ArchivedDebugNoteQueryInputSchema = object({
7881
+ /** Restrict to a single camera; omit for every row. */
7882
+ deviceId: number().int().optional(),
7883
+ /** Max rows returned, newest-first. */
7884
+ limit: number().int().min(1).max(1e3).optional()
7885
+ });
7886
+ /**
7707
7887
  * Ops-log — the durable, append-only operations audit shared by the
7708
7888
  * recordings and events management surfaces.
7709
7889
  *
@@ -20085,7 +20265,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20085
20265
  deviceId: number(),
20086
20266
  trackId: string(),
20087
20267
  flags: TrackFlagsPatchSchema
20088
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20268
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(BirthDecisionQueryInputSchema, array(BirthDecisionRecordSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20089
20269
  kind: "query",
20090
20270
  auth: "admin"
20091
20271
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -37209,6 +37389,18 @@ Object.freeze({
37209
37389
  addonId: null,
37210
37390
  access: "view"
37211
37391
  },
37392
+ "pipelineAnalytics.listArchivedDebugNotes": {
37393
+ capName: "pipeline-analytics",
37394
+ capScope: "device",
37395
+ addonId: null,
37396
+ access: "view"
37397
+ },
37398
+ "pipelineAnalytics.listBirthDecisions": {
37399
+ capName: "pipeline-analytics",
37400
+ capScope: "device",
37401
+ addonId: null,
37402
+ access: "view"
37403
+ },
37212
37404
  "pipelineAnalytics.listEventKinds": {
37213
37405
  capName: "pipeline-analytics",
37214
37406
  capScope: "device",
@@ -40996,6 +41188,16 @@ Object.freeze({
40996
41188
  form: "array",
40997
41189
  optional: true
40998
41190
  }],
41191
+ "pipelineAnalytics.listArchivedDebugNotes": [{
41192
+ name: "deviceId",
41193
+ form: "single",
41194
+ optional: true
41195
+ }],
41196
+ "pipelineAnalytics.listBirthDecisions": [{
41197
+ name: "deviceId",
41198
+ form: "single",
41199
+ optional: true
41200
+ }],
40999
41201
  "pipelineAnalytics.listEventKinds": [{
41000
41202
  name: "deviceId",
41001
41203
  form: "single",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-terminal",
3
- "version": "0.1.91",
3
+ "version": "0.1.93",
4
4
  "description": "Interactive terminal sessions (pty + xterm) as a CamStack addon",
5
5
  "keywords": [
6
6
  "camstack",